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
| dd | |
| b | |
| :markdown | |
| Yes! Please, please contact Evan Carroll directly at [[email protected]](mailto:ecarroll@kh | |
| | Evan personally pays for all of the group-related expenses and he'd love whatever financial assistanc |
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
| if [ -n $1 ]; then LOT_IDS=$1 | |
| else LOT_IDS=$( | |
| cat <( run-parts --test $INPUT_DIR ) <( run-parts --test $INPUT_DIR/combined) | | |
| perl -pe's/^.*?(?=\d)|_.*//g' | |
| ) | |
| fi |
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
| if [ -n $1 ]; then LOT_IDS=$1 | |
| else LOT_IDS=$( | |
| cat <( run-parts --test $INPUT_DIR ) <( run-parts --test $INPUT_DIR/combined) | | |
| perl -pe's/^.*?(?=\d)|_.*//g' | |
| ) | |
| fi |
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
| There are a few possibilities concerning what Evan might be and what his agenda is: | |
| (i) Evan is perhaps just a guy who likes to argue and doesn't ever care whether the things he says on day is consistent with what he said the day before. Perhaps he's just a control freak who has some severe psychological problems and feels like he needs to dominate other people to compensate for his own distress. In this case, he is no threat to the movement as a whole, but should be dealt with. It is likely that singling him out at the GA wouldn't work in this case as it would only fuel his psychological distress. The best way to respond to this would be to expel him from the web committee. | |
| (ii) Evan is an agent of imperialism. In this case, he is not paid by the State, but by private organizations that want to harm the Occupy Houston movement. He might also not even be a paid agent, but just himself interested in harming the movement. There are plenty of nutcases in the Tea Party that will try to stir up trouble inside |
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
| SELECT DISTINCT ON(random.first, random.last) coalesce(mf.name, ff.name), l.name FROM ( | |
| SELECT | |
| RANDOM() * 90.020 AS first -- dataset is 90% of most popular | |
| , RANDOM() * 90.483 AS last | |
| , CASE WHEN RANDOM() > 0.5 THEN 'male' ELSE 'female' END AS sex | |
| , CASE WHEN RANDOM() > 0.5 THEN 'model' ELSE 'vehicle' END AS detail | |
| FROM generate_series(1,10,1) | |
| ) AS random | |
| LEFT OUTER JOIN census.names AS mf | |
| ON random.sex = 'male' |
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
| CREATE TYPE citext; | |
| -- | |
| -- Name: citextin(cstring); Type: FUNCTION; Schema: public; Owner: ecarroll | |
| -- | |
| CREATE FUNCTION citextin(cstring) RETURNS citext | |
| LANGUAGE internal IMMUTABLE STRICT | |
| AS $$textin$$; |
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
| var thunkify = require('./index.js'); | |
| function wtf ( cb ) { | |
| console.log('start'); | |
| // Function, expecting callback triggers twice | |
| cb( 'HELLO 1' ); | |
| cb( 'HELLO 2' ); | |
| cb( 'HELLO 3' ); | |
| console.log('done'); | |
| return; |
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
| #!/usr/bin/env perl | |
| use Benchmark qw(:all); | |
| use strict; | |
| use warnings; | |
| use constant STUFF => ( qw/ | |
| TRO BAR OLOL JAZ | |
| TRO BAR OLOL JAZ | |
| / ); |
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
| var co = require('co'), | |
| Promise = require('bluebird') | |
| ; | |
| // This just creates 3 identical generator functions. | |
| (function (g) { | |
| ["foo","bar","baz"].forEach( function(x) { | |
| g[x] = function * () { | |
| let c = 0; |
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
| #include <stdio.h> | |
| /* Program to evaluate simple expressions (value operator value)*/ | |
| int main() { | |
| float value1, value2; | |
| char operator; | |
| for (int count = 1; count <= 3; count++) { | |
| printf("What are your value opreator and value (seperate with Enter)?\n"); |