Attention: if you attempt to fork this gist, github will think that you are a spammer and you will have to confirm that you are human with them. Apparantly there are too many links in this list. Also I update it rather frequently (see revisions on the left), so it's probably wise to not fork it anyway.
- node.js
- Installation paths: use one of these techniques to install node and npm without having to sudo.
 - Node.js HOWTO: Install Node+NPM as user (not root) under Unix OSes
 - Felix's Node.js Guide
 - Creating a REST API using Node.js, Express, and MongoDB
 - Node Cellar Sample Application with Backbone.js, Twitter Bootstrap, Node.js, Express, and MongoDB
 - JavaScript Event Loop
 
 - Node.js for PHP programmers
 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | (function(angular){ | |
| 'use strict'; | |
| function directiveFactory(){ | |
| function linkFunction(){ | |
| } | |
| return { | |
| restrict: 'EA', | |
| replace:true, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | (function(angular, _) { | |
| 'use strict'; | |
| function factory() { | |
| return { | |
| mapRequest: function(request) { | |
| var serverModel = {}; | |
| serverModel.SearchString = request.searchString; | |
| serverModel.Offset = request.offset; | |
| serverModel.RowsCount = request.count; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | module.exports = { | |
| /** | |
| * | |
| * Using raw socket.io functionality from a Sails.js controller | |
| * | |
| */ | |
| index: function (req,res) { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function rightHandler() { | |
| cy.get('.navigate-right') | |
| .then(rightBtn => { | |
| if (rightBtn.attr('disabled')) { | |
| downHandler(true); | |
| } else { | |
| cy.screenshot() | |
| .then(() => { | |
| cy.wrap(rightBtn).click(); | |
| downHandler(); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height: 100%; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/sh | |
| PATH=/usr/local/bin:/usr/local/sbin:~/bin:/usr/bin:/bin:/usr/sbin:/sbin | |
| policies_store="/Library/Managed Preferences" | |
| users_dir="/Users" | |
| policies="com.google.Chrome.plist com.google.Keystone.Agent.plist com.apple.icloud.managed.plist com.apple.preferences.users.plist" | |
| ##################################################### | |
| script_name=`basename $0` | |
| current_date=`date` | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| * Water Canvas by Almer Thie (http://code.almeros.com). | |
| * Description: A realtime water ripple effect on an HTML5 canvas. | |
| * Copyright 2010 Almer Thie. All rights reserved. | |
| * | |
| * Example: http://code.almeros.com/code-examples/water-effect-canvas/ | |
| * Tutorial: http://code.almeros.com/water-ripple-canvas-and-javascript | |
| */ | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import {Inject, Injectable} from '@angular/core'; | |
| import {HttpClient, HttpHeaders, HttpParams} from '@angular/common/http'; | |
| import {from as fromPromise, Observable, Subject, throwError} from 'rxjs'; | |
| import {catchError, map, switchMap, tap} from 'rxjs/operators'; | |
| import {ToasterService} from '../../../shared/toaster/toaster.service'; | |
| import {ToasterTypes} from '../../../shared/toaster/toaster-types.enum'; | |
| import {XsrfHolderService} from '../../xsrf-holder/xsrf-holder.service'; | |
| import {readFileAsText} from '../../../shared/utils/read-file'; | |
| import {CustomEncoder} from '../../custom-encoder/custom-encoder'; | 
OlderNewer