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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# don't put duplicate lines or lines starting with space in the history. | |
# See bash(1) for more options | |
HISTCONTROL=ignoreboth |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 clientsocket; | |
import java.io.*; | |
import java.net.Socket; | |
import java.util.Scanner; | |
/** | |
* | |
* @author manel | |
*/ |
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
def fibonacci(n): | |
"""A Fibonacci generator""" | |
x_1, x = 1, 1 | |
while ( x < n ): | |
yield x | |
x_1, x = x, x + x_1 | |
def erastothenes_sieve(n): | |
"""Get all the prime numbers below 'n'""" | |
sqrtN = math.sqrt(n) |
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
netsh wlan stop hostednetwork | |
pause |
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
A = | |
1.000000000000e-01 1.000000000000e-01 1.000000000000e+00 | |
-3.900000000000e+00 1.100000000000e+00 3.200000000000e+00 | |
1.400000000000e+00 1.500000000000e+00 -1.000000000000e+00 | |
c = ( 1.000000000000e-01 1.100000000000e+00 -1.400000000000e+00 ) | |
k = 0 | |
SWAP F0 <=> F1 | |
A = |
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
// Found at http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454 | |
// | |
// But beware, HTML cannot be regexed... The end is nigh. | |
var re = /<([a-z]+) *[^/]*?>/g; |
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
function makeplain(strAccents) | |
{ | |
if(strAccents==undefined) | |
return ""; | |
strAccents = strAccents.split(''); | |
var strAccentsOut = new Array(); | |
var strAccentsLen = strAccents.length; | |
var accents = 'ÀÁÂÃÄÅàáâãäåÒÓÔÕÕÖØòóôõöøÈÉÊËèéêëðÇçÐÌÍÎÏìíîïÙÚÛÜùúûüÑñŠšŸÿýŽž'; | |
var accentsOut = ['A','A','A','A','A','A','a','a','a','a','a','a','O','O','O','O','O','O','O','o','o','o','o','o','o','E','E','E','E','e','e','e','e','e','C','c','D','I','I','I','I','i','i','i','i','U','U','U','U','u','u','u','u','N','n','S','s','Y','y','y','Z','z']; |
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
/** | |
* @author Brian Nettleton | |
*/ | |
class GenericObjectDeserializer implements JsonDeserializer<Object> | |
{ | |
@Override | |
public Object deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException | |
{ | |
if( json.isJsonNull() ) { |
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
//http://zef.me/3420/async-foreach-in-javascript | |
function asyncParForEach(array, fn, callback) { | |
var completed = 0; | |
if(array.length === 0) { | |
callback(); // done immediately | |
} | |
var len = array.length; | |
for(var i = 0; i < len; i++) { | |
fn(array[i], function() { |