Skip to main content

Home/ Coders/ Group items tagged Using

Rss Feed Group items tagged

Pinhopes Job Site

Climb up the career ladder faster | Few useful tips for Interview | Pinhopes - 0 views

  •  
    Reaching your work goals may look like a daunting task at first. With careful planning and implementation of right strategies, you can step up the career ladder quicker than you thought of. Here are few tips on how to get promoted at work quickly:



    Continue learning

    Learning is a lifelong process. To grow in your career, it is imperative that you keep accumulating knowledge across industries' trends, challenges and insights. Staying updated about your domain knowledge enables you to tackle challenges at work more efficiently and higher your chances of getting noticed by employers.

    Lead when required

    To take charge in a work environment doesn't always require you to be in a top position. You can assume a leadership role when circumstances demands at workplace. Exhibit your leadership skills while solving a critical problem at work by effectively communicating, motivating and working in coordination with other team members. Also start taking responsibilities a level in advance to show that you are ready for the next role.

    Give your best

    When you give your best in your work, you stay visible for your passion and performance. If you want to add more value to your work, then go t
netgains

Best Yii Development Company India - 0 views

  •  
    Looking for company that provides you services like website development in Magento, Wordpress, Yii, iPhone/iPad applications, content management system, internet marketing, cad, graphic design and many more? Yes, get connected with us to grab superior offer.
  •  
    Looking for company that provides you services like website development in Magento, Wordpress, Yii, iPhone/iPad applications, content management system, internet marketing, cad, graphic design and many more? Yes, get connected with us to grab superior offer.
trimantra

Asp.net Application Development Company - 0 views

  •  
    Trimantra have an expert team of Dedicated Dotnet developer who Provides the best Dotnet solutions like Dot net Application Development,Custom Software Development,Social Media Application,Inventory Management System etc.Please feel free to contact us if you are looking to hire Dotnet expert developer or seeking any kind of Dotnet development.
  •  
    Trimantra have an expert team of Dedicated Dotnet developer who Provides the best Dotnet solutions like Dot net Application Development,Custom Software Development,Social Media Application,Inventory Management System etc.Please feel free to contact us if you are looking to hire Dotnet expert developer or seeking any kind of Dotnet development.
objectivist ursilly

Kodu - Microsoft Research - 6 views

  •  
    Kodu is a new visual programming language made specifically for creating games. It is designed to be accessible for children and enjoyable for anyone. The programming environment runs on the Xbox, allowing rapid design iteration using only a game controller for input.
vikramsjn

Programming Proverbs - Computer Science Teacher - Thoughts and Information from Alfred ... - 0 views

  • Interesting comment about IntelliSense encouraging a bottom-up approach. I think that is true if you start with programming and not with design. What I mean by that is that some people create their design in code rather than working out the full design before starting to code. I think that if you create a design using a top down approach it takes longer to get to the building blocks. that is frustrating to many, especially students, but in the long run results in a much better design. With a complete design in place one does know what the little blocks of code will be at least from the standpoint of names and interfaces. Creating those little blocks early on in the programming is fine as long as the design is complete
  •  
    very good and useful list of properly arranged proverbs
Joel Bennett

Using RabbitMQ with C# and .NET - 3 views

  • I'm currently working on a project where I need to be able to transfer a large number of requests via JSON over web services. I need to take some of that data, do some aggregation with it, and store it in a persistent store. In order to allow the data to be reliably processed in a number of different ways, I wanted to place the incoming data into multiple queues and have it processed and then stored.
  • RabbitMQ fits the bill on all of these fronts, is crazy easy to setup and use, and is very fast.
  • RabbitMQ is written in Erlang
  •  
    RabbitMQ is a cross-platform implementation of an Advanced Message Qeuing Protocol (AMQP) broker (similar to MSMQ). There's a .Net client, and it allows you to decouple your routing and an message storage, and do so in a cross-platform way.
Joel Bennett

Sandcastle : Creating a Chm build using Sandcastle - 0 views

  • Creating a Chm build using Sandcastle
  •  
    Create .chm help files using SandCastle
Joel Bennett

Making Strings More Secure - 0 views

  • Whidbey will be introducing a new class, SecureString, that helps to make this all easier for you. SecureStrings are held in encrypted memory by the CLR (using DPAPI), and are only unencrypted when they are accessed.  This limits the amount of time that your string is in plaintext for an attacker to see.  Since SecureString uses DPAPI to help secure your data, it's not available on Windows 98, ME, or Windows 2000 with anything less than service pack 3.
  •  
    The SecureString class provides a string type that is stored encrypted in memory when not in use and will not be copied around by the Garbage Collector, plus they can be zeroed out on destruction, and locked to read-only mode... Which makes this perfect for storing things like passwords in memory.
  •  
    Geniuzz.com es una pequeña sitios de trabajo. Este sitio está dedicado a todos los españoles están buscando trabajadores con un precio muy bajo. Si usted contrata a un trabajador de aquí. Te garantizo que es muy satisfactorio. Si eres un webmaster o BPA jugadores que necesitan ayuda. Acaba de llegar al mercado muy amable. Y yo también le ayudará. Por favor visite mi puesto aquí https://www.facebook.com/pages/Geniuzzcom/525081180900419
Rick Fan

What Changed in Internet Explorer 8? - 0 views

Joel Bennett

Policy Injection App Block - Behind the Scenes - 0 views

  • We use an interception mechanism to get in the way of calls going to that member, collect a list of policies that apply using a matching rules mechanism, run the chain of handlers specified by those policies in a chain of responsibility and at the other end dispatch the call to the target. Once the target is done - successfully or with exceptions - the stack unwinds, returning through each handler and finally back to the caller.
    • Joel Bennett
       
      So we can only advise "before"
  •  
    Very good read (particularly their evaluation of weaving methods).

    Although as a result their "Policy Injection" application block isn't as powerful as most of the straight-up AOP toolkits out there, it does have a *huge* upside: not only is the code produced by this supportable by Microsoft Product Support, it's now officially part of the Patterns and Practices recommendations!

    The down side is that the only injectable objects are ones created through a "Factory" method (you can't just use the *new* constructor) this brings some performance hits ... but then, you get the ability to separate concerns and apply policies and even business rules after the fact!
Denis Gobo

Ordering directories by creation date using LINQ - 0 views

  •  
    Ordering directories by creation date using LINQ
Joel Bennett

Using System.AddIn - Ask Kathleen - Visual Studio Magazine Online - 0 views

  •  
    A good overview and guide to using System.Addin to create robust extensible applications.
Joel Bennett

M - The modelling language - 0 views

  •  
    M seems to be like LINQ for data structure generation: a simple template language with assemblers for different back-end technologies.
  •  
    The Microsoft code name "M" language is a declarative language for working with data and building domain models. "M" lets users write down how they want to structure and query their data using a textual syntax that is convenient to both author and reader.
Joel Bennett

Test Run: The Microsoft UI Automation Library -- MSDN Magazine - 0 views

  •  
    get started with UI test automation using the new Microsoft UI Automation library, which is included in the .NET Framework 3.0 ... specifically designed for both accessibility and UI test automation tasks... test Win32 applications, .NET Windows Forms applications, and WPF applications.
Matteo Spreafico

Classical Inheritance in JavaScript - 0 views

  • function ZParenizor2(value) { var that = new Parenizor(value); that.toString = function () { if (this.getValue()) { return this.uber('toString'); } return "-0-" }; return that; }
    • Matteo Spreafico
       
      This constructors lies, wondeful!
  • Again, we augment Function. We make an instance of the parent class and use it as the new prototype. We also correct the constructor field, and we add the uber method to the prototype as well.
  • This adds a public method to the Function.prototype, so all functions get it by Class Augmentation. It takes a name and a function, and adds them to a function's prototype object.
  • ...3 more annotations...
  • To make the examples above work, I wrote four sugar methods. First, the method method, which adds an instance method to a class. Function.prototype.method = function (name, func) { this.prototype[name] = func; return this; };
  • JavaScript can be used like a classical language, but it also has a level of expressiveness which is quite unique. We have looked at Classical Inheritance, Swiss Inheritance, Parasitic Inheritance, Class Augmentation, and Object Augmentation. This large set of code reuse patterns comes from a language which is considered smaller and simpler than Java.
  • I have been writing JavaScript for 8 years now, and I have never once found need to use an uber function. The super idea is fairly important in the classical pattern, but it appears to be unnecessary in the prototypal and functional patterns. I now see my early attempts to support the classical model in JavaScript as a mistake.
Haley Drummond

HTML to PDF | HTML to Excel | DocRaptor - 0 views

shared by Haley Drummond on 23 Feb 11 - Cached
  •  
    Web-based app that converts html to pdf or html to excel. Uses Prince XML as the engine behind pdf generation.
  •  
    really useful tool for programming in any language
Joel Bennett

Understanding WS-Federation - 2 views

  •  
    WS-Security, WS-Trust, and WS-SecurityPolicy provide a basic model for federation between Identity Providers and Relying Parties. These specifications define mechanisms for codifying claims (assertions) about a requestor as security tokens which can be used to protect and authorize web services requests in accordance with policy.
seth kutcher

The Resident Computer Repair Tech Expert - 1 views

The museum I run has been a family heritage for years. The computer system we have here has been running perfectly for our staff and visitor use. Our resident computer repair tech expert has left u...

computer repair tech

started by seth kutcher on 17 Aug 11 no follow-up yet
« First ‹ Previous 201 - 220 of 1408 Next › Last »
Showing 20 items per page