Models | Examples |
---|---|
Display ads | Yahoo! |
Search ads |
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
cache: | |
key: "$CI_BUILD_REF" | |
paths: | |
- app/bootstrap.php.cache | |
- bin/ | |
- vendor/ | |
- var/cache/ | |
- var/logs/ | |
- web/bundles/ |
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
var elsalvador = { | |
"ahuachapan": { | |
label: "Ahuachapán", | |
municipios: { | |
"ahuachapan":"Ahuachapán", | |
"jujutla": "Jujutla", | |
"atiquizaya": "Atiquizaya", | |
"concepciondeataco":"Concepción de Ataco", | |
"elrefugio": "El Refugio", | |
"guaymango": "Guaymango", |
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
/* | |
Primera version 0.1 28/Feb/2014 | |
Segunda version 0.2 28/Feb/2014 | |
@author ramayac | |
*/ | |
import sojamo.drop.*; | |
SDrop drop; | |
String[] palabras = null; | |
String palabraActual = ""; |
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
import java.io.BufferedReader; | |
import java.io.BufferedWriter; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.FileWriter; | |
import java.io.FilenameFilter; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.io.RandomAccessFile; |
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> | |
<title>Llenar persona</title> | |
<!--meta name="og:url" content="http://stackoverflow.com/questions/15474306/nesting-an-svg-inside-a-div"/--> | |
<script type="text/javascript"> | |
</script> | |
<style type="text/css"> | |
#container { |
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
import urllib2 | |
import re | |
import sys | |
from collections import defaultdict | |
from random import random | |
""" | |
PLEASE DO NOT RUN THIS QUOTED CODE FOR THE SAKE OF daemonology's SERVER, IT IS | |
NOT MY SERVER AND I FEEL BAD FOR ABUSING IT. JUST GET THE RESULTS OF THE | |
CRAWL HERE: http://pastebin.com/raw.php?i=nqpsnTtW AND SAVE THEM TO "archive.txt" |
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
/* | |
Algoritmo de implementación de dither de Floyd-Steinberg | |
http://en.wikipedia.org/wiki/Dither | |
http://en.wikipedia.org/wiki/Floyd%E2%80%93Steinberg_dithering | |
http://www.efg2.com/Lab/Library/ImageProcessing/DHALF.TXT | |
http://processing.org/discourse/beta/num_1264007943.html | |
*/ | |
PImage b, source; | |
int levels = 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
//Image Dithering | |
//http://www.processing.org/discourse/beta/num_1203512880.html | |
PImage ditherImage(PImage img) { | |
PImage ditheredImg = img.get(0, 0, img.width, img.height); | |
// tile = 2*2 pixels | |
int[] tilePixelColors = new int[4]; | |
float[] bias = new float[] { | |
0.25, .75, 0.5, 0.0 |
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
PHP 5.4.0 built-in web server: | |
cd ~/public_html | |
php -S localhost:8000 | |
Done! |
NewerOlder