This file contains 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
#rem https://skanthak.homepage.t-online.de/curl.html (built with SChannel/WinSSL and zlib) | |
curl --ntlm -u : -H "Content-Length:0" -H "Content-Type:application/json; charset=utf-8" -X POST https://somedomain/some.asmx/somemethod |
This file contains 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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Classes\Applications\node.exe] | |
[HKEY_CURRENT_USER\Software\Classes\Applications\node.exe\shell] | |
[HKEY_CURRENT_USER\Software\Classes\Applications\node.exe\shell\open] | |
[HKEY_CURRENT_USER\Software\Classes\Applications\node.exe\shell\open\command] | |
@="\"C:\\Program Files\\nodejs\\node.exe\" \"%1\" \"%*\"" |
This file contains 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
//gulpfile template: | |
'use strict'; | |
const gulp = require('gulp'), | |
babelify = require('babelify'), | |
browserify = require('browserify'), | |
buffer = require('vinyl-buffer'), | |
connect = require('gulp-connect'), | |
del = require('del'), | |
gulpif = require('gulp-if'), |
This file contains 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
package main | |
import ( | |
"bufio" | |
"database/sql" | |
"fmt" | |
_ "github.com/mattn/go-sqlite3" | |
"log" | |
"os" | |
"path/filepath" |
This file contains 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
package main | |
import ( | |
"bufio" | |
"fmt" | |
"log" | |
"os" | |
"path/filepath" | |
"sort" | |
"time" |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style> | |
body{ | |
font-family: sans; | |
padding: 10px; | |
} | |
svg path{ |
This file contains 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
package main | |
import ( | |
"database/sql" | |
"fmt" | |
_ "gopkg.in/goracle.v1" | |
"log" | |
"time" | |
) |
This file contains 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
// | |
// Ext.JsonAjax.js: Proxy to make Ext.js 4 AjaxProxy ASP.Net Webservices compatible | |
// | |
// Example: var myStore = Ext.create('Ext.data.Store', { | |
// model: 'someModel', | |
// id: 'someId', | |
// proxy: { | |
// type: 'jsonajax', | |
// url: someUrl, | |
// extraParams: {"param1":"someParam"}, |
This file contains 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
data:text/html, <html contenteditable> |
This file contains 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
data:text/html, <style type="text/css">.e{position:absolute;top:0;right:0;bottom:0;left:0;}</style><div class="e" id="editor"></div><script src="http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script><script>var e=ace.edit("editor");e.setTheme("ace/theme/eclipse");e.getSession().setMode("ace/mode/javascript");</script> | |
<!-- | |
For other language: Instead of `ace/mode/ruby`, Use | |
Python -> `ace/mode/python` | |
C/C++ -> `ace/mode/c_cpp` | |
Javscript -> `ace/mode/javascript` | |
Java -> `ace/mode/java` |
NewerOlder