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, as part of your job, you're obligated to do this training, you don't | |
actually have to wait for the button to ungrey as you sit through the dialog. | |
You can simply open up the JavaScript console of your browser and execute | |
DS.pubSub.trigger(DS.events.presentation.ON_OBJECT_EVENT, "next_pressed"); | |
and this will automatically take you to the next slide. Just keep spamming this | |
until you're through the training. If you're forced to answer a question, | |
remember that the answer is probably true! |
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
#!/bin/sh | |
git ls-remote --heads "$1" | | |
cut -f2 | | |
sed -e 's|refs/heads/||' | | |
while read b | |
do | |
if [ `git rev-list --count "$2".."$1/$b"` -eq -0 -a "$b" != "$2" ] | |
then | |
echo $b |
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
#!/bin/sh | |
IP_HEAD=`ip route | perl -ne '/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.)\d{1,3}\/\d{1,2} dev/ && print $1'` | |
for i in `seq 0 255` | |
do | |
curl -X POST $IP_HEAD$i:1337/lock --connect-timeout 1 > /dev/null 2>&1 & | |
done |
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
function main() { | |
var threads = GmailApp.search('label:unread -label:inbox'); | |
for (var i = 0; i < threads.length; i++) { | |
threads[i].markRead(); | |
} | |
Logger.log("%s threads were marked read.", threads.length.toString()); | |
} |
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 python3 | |
import http.server | |
import socketserver | |
import subprocess | |
GIT_DIRECTORY='<directory>' | |
ENDPOINT='/<endpoint>' | |
PORT=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
a cappella,abbandono,accrescendo,affettuoso,agilmente,agitato,amabile,amoroso,appassionatamente,appassionato,brillante,capriccioso,con affetto,con agilita,con agitazione,con amore,crescendo,decrescendo,diminuendo,dolce,forte,fortissimo,lamentabile,leggiero,morendo,parlando,pianissimo,piano,pizzicato,scherzando,scherzoso,sordo,sotto voce,spiccato,staccato,stretto,tremolando,tremoloso,trillando | |
a la mode,advanced,avant-garde,chic,contemporary,dashing,exclusive,far out,fashionable,fashionably,forward-looking,in,in the mode,mod,modern,modernistic,modernized,modish,modishly,newfashioned,now,present-day,present-time,progressive,soigne,soignee,streamlined,stylish,stylishly,tony,trendy,twentieth-century,ultra-ultra,ultramodern,up-to-date,up-to-datish,up-to-the-minute,vogue,voguish,way out | |
a priori,a fortiori,a posteriori,analytic,back,backward,categorical,conditional,deducible,deductive,derivable,dialectic,discursive,dogmatic,early,enthymematic,epagogic,ex post facto,hypothetical,inductive,inferential,into the past,m |
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
#define PADDLEHEIGHT 5 | |
#define BALLSIZE 3 | |
short *PA = 0x8000; | |
short *PB = 0x8001; | |
short *DDRA = 0x8002; | |
short *DDRB = 0x8003; | |
short pbbuff; | |
short paddle; |
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 <stdlib.h> | |
/* | |
* returns an int[] where int[0] is the length of the array | |
* and subsequent elements are the primes themselves. | |
*/ | |
int* findprimes(int range) { | |
int prime = 2; | |
int i; | |
int *notprime = calloc(sizeof(notprime), range); |
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
public class EulersMethod { | |
private double x1; | |
private double y1; | |
private double dx; | |
private double x2; | |
private Differential dydx; | |
public interface Differential { | |
double equation(double x, double y); |
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> | |
int main(int argc, char *argv[]) { | |
FILE *input, *key, *output; | |
int inchar, keychar; | |
if (argc != 4) { | |
printf("Usage: \"%s [input] [key] [output]\"", argv[0]); | |
return -1; | |
} |