Skip to main content

Home/ Coders/ Group items matching "wiki" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
Joel Bennett

PsTFS - CodePlex - 0 views

  •  
    TFSProvider allows you to navigate a TFS server's: WorkItems, SourceControl, TeamProject ... in PowerShell.
anonymous

Tailor - DarcsWiki - 1 views

  •  
    Tailor is a tool to migrate or replicate changesets between ArX, Bazaar, Bazaar-NG, CVS, Codeville, Darcs, Git, Mercurial, Monotone, Subversion and Tla repositories.
  •  
    Thanks for bookmarking this - if it works well, it is likely to lower the barriers to adoption of advanced source control tools like Darcs.
David Corking

The APIs for the Sun Cloud: Wiki: HelloCloud - Project Kenai - 0 views

  • . Let's assume that this application does storage and retrieval of large media files; the required infrastructure is: A firewall appliance for connecting to the Internet A private network connecting the firewall to other systems A Linux web server running a LAMP stack A Solaris database machine running MySQL for application persistence A WebDAV server for the media files
    • David Corking
       
      Soon you will be able to write scripts to install "Virtual Data Centers" There seems to be a temptation here to make a virtual data center as complex as a real one - perhaps that is necessary, but this technology is in its early stages. Right now, I wonder if a virtual firewall appliance is as secure or fast as a real one.
  •  
    Certain kinds of deployment are much more efficiently achieved with virtual servers. This article is a simple and almost hands-on introduction to the way a Sun Cloud deployment can be scripted or have another automated front end for deployment.
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.
Joel Bennett

Mozilla Labs » Announcing the Jetpack SDK - 4 views

  • The Jetpack SDK includes: An extensible library of capabilities and APIs for writing Firefox add-ons, as well as stand-alone web-based applications A set of command-line tools that package and security-harden your code into distributable packages A modern IDE with built-in reference guide for instant productivity
  • An easy to use, well documented set of APIs that lets you write Firefox add-ons using standard Web technology (Javascript, HTML5, and CSS). An integrated IDE that enables rapid add-on developement and code collaboration.
  • Add-ons developed with the Jetpack SDK will feature: No need to restart Firefox to install add-ons. Add-ons are automatically compatible with all future versions of Firefox updates, so no need to wait for add-on compatability. Stronger and more easily understood security and privacy controls. Automatic add-on updates.
  •  
    An easy to use, well documented set of APIs that lets you write Firefox add-ons using standard Web technology (Javascript, HTML5, and CSS).
ybordiq

Best practices - robotlegs-framework - GitHub - 0 views

  • t is common to add event listeners in the onRegister method of the Mediator. At this phase of the Mediator’s lifecycle, it has been registered and its view component and other dependencies have been injected. The onRegister method must be overridden in concrete Mediator classes. Event listeners may be added in other methods as well, including event handler methods that are responding to both framework and view component events.
    • ybordiq
       
      note: this is only partially true: if any widget of the view is not included in the "normal" state of the view (cf use of states in flex + usage of "includeIn" component property), then it is null when the onRegister() is called => impossible to register an event listener to it via the eventMap (or any other way)=> we can listen to the view currentStateChange events and register event listeners at that moment, but this is somewhat ugly...(might be more a limitation of Flex than Robotleg, though...)
Fabien Cadet

Herbert Simon - Wikipedia (en) - 2 views

  •  
    « Simon was among the founding fathers of several of today's important scientific domains, including artificial intelligence, information processing, decision-making, problem-solving, attention economics, organization theory, complex systems, and computer simulation of scientific discovery. He coined the terms bounded rationality and satisficing, and was the first to analyze the architecture of complexity and to propose a preferential attachment mechanism to explain power law distributions. »
Joel Bennett

HTML5 Cross Browser Polyfills - GitHub - 9 views

  •  
    We're collecting all the shims, fallbacks, and polyfills in order to implant html5 functionality in browsers that don't natively support them.
Fabien Cadet

Duck typing - Wikipedia [en] - 0 views

  • When I see a bird that walks like a duck and swims like a duck and quacks like a duck, I call that bird a duck.
yippeeyahoo

Predict the output challenge (C#) - 1 views

  •  
    Weird C# Quirks that may surprise you.
Fabien Cadet

Social Security Administration @ c2.com - 3 views

shared by Fabien Cadet on 30 Mar 14 - No Cached
cerdigoo

pagina web - 0 views

  •  
    Una página web o página electrónica, es un documento o información electrónica capaz de contener texto, sonido, vídeo, programas, enlaces, imágenes, y muchas otras cosas, adaptada para la llamada World Wide Web, y que puede ser accedida mediante un navegador.
jo_kruger

How To Build a Simple Chatbot Using RL3 and Python - 0 views

  •  
    This article describes how to build a simple chatbot using RL3 and Python.
jo_kruger

Named Entity Recognition Example - 0 views

  •  
    Simple example of named entity recognition with RL3
gpryor3

HTML Attributes - 1 views

  • All HTML elements can have attributes
  • always specified in the start tag
  • provide additional information
  • ...24 more annotations...
  • about an element
  • usually come
  • name/value pairs
  • name="value
  • links are defined
  • with
  • <a> tag
  • link address is specified
  • href attribute:
  • mages are defined with
  • <img> tag.
  • The alt attribute
  • specifies an alternative text to be used
  • when an image cannot be displayed.
  • style attribute
  • specify the styling of an element
  • color, font, size etc
  • tyling later in this tutorial, and in our CSS Tutorial.
  • a title attribute is added to the <p> elemen
  • value of the title attribute
  • isplayed as a tooltip
  • Use Lowercase Attributes
  • Quote Attribute Values
  • HOW TO Tabs Dropdowns Accordions Convert Weights Animated Buttons Side Navigation Top Navigation Modal Boxes Progress Bars Parallax Login Form HTML Includes Google Maps Range Sliders Tooltips Slideshow Filter List Sort List
jo_kruger

An Introduction to Regular Expressions in RL3 - 0 views

  •  
    Regular expressions are extremely handy and powerful tool. In RL3 regex are also human-friendly and easy to write.
prashant35

.NET Core wiki-Prerequisites for .Net core on Windows+MacOs+Linux - 0 views

  •  
    What software you need to work on .Net Core ,prerequisites for Features of .Net Core it is cross platform. Windows NET Core is supported on the following versions of : Windows 7 SP1 Windows 8.1 Windows 10, Windows 10 Anniversary Update (version 1607) or later versions Windows Server 2008 R2 SP1 (Full Server or Server Core) Windows Server 2012 SP1 (Full Server or Server Core) Windows Server 2012 R2 (Full Server or Server Core) Windows Server 2016 (Full Server, Server Core, or Nano Server) Prerequisites with Visual Studio 2017 You can use any editor to develop .NET Core applications using the .NET Core SDK. Visual Studio 2017 provides an integrated development environment for .NET Core apps on Windows.
« First ‹ Previous 61 - 80 of 80
Showing 20 items per page