Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
var page = require('webpage').create(); | |
page.onLoadFinished = function (status) { | |
page.render("cv.pdf"); | |
phantom.exit(); | |
} | |
page.open("http://yrezgui.phpfogapp.com/cv/index.html"); |
var http = require("http"); | |
http.createServer(function(request, response){ | |
response.writeHead(200, { | |
"Content-Type": "text/html" | |
}); | |
response.write("Hello World"); | |
response.end(); |
var bb, reader; | |
var meta = { | |
"title": "mozilla.png", | |
"mimeType": "image/png", | |
"description": "Mozilla Official logo" | |
}; | |
var xhr = new XMLHttpRequest(); | |
xhr.open('GET', 'https://developer.mozilla.org/media/img/mdn-logo-sm.png', true); |
/** | |
* | |
* Secure Hash Algorithm (SHA1) | |
* http://www.webtoolkit.info/ | |
* | |
**/ | |
function SHA1 (msg) { | |
function rotate_left(n,s) { |
var MD5 = function (string) { | |
function RotateLeft(lValue, iShiftBits) { | |
return (lValue<<iShiftBits) | (lValue>>>(32-iShiftBits)); | |
} | |
function AddUnsigned(lX,lY) { | |
var lX4,lY4,lX8,lY8,lResult; | |
lX8 = (lX & 0x80000000); | |
lY8 = (lY & 0x80000000); |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
/* | |
* This is a PHP library that handles calling reCAPTCHA. | |
* - Documentation and latest version | |
* http://recaptcha.net/plugins/php/ | |
* - Get a reCAPTCHA API Key | |
* https://www.google.com/recaptcha/admin/create | |
* - Discussion group | |
* http://groups.google.com/group/recaptcha | |
* |
#include "StdAfx.h" | |
#include "CDirectUSB.h" | |
#include "CTools.h" | |
#ifdef _DEBUG | |
using namespace System::Diagnostics; | |
#endif | |
#define OUTPUT_SIZE 512 // Buffer TX size |
// add the filter to your application module | |
angular.module('myApp', ['filters']); | |
/** | |
* Filesize Filter | |
* @Param length, default is 0 | |
* @return string | |
*/ | |
angular.module('filters', []) | |
.filter('Filesize', function () { |
// MongoDB ORM package | |
var mongoose = require('mongoose'), | |
Schema = mongoose.Schema; | |
var clientSchema = Schema({ | |
firstname: { | |
type: String, | |
required: true | |
}, | |
lastname: { |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.