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
[ | |
{ | |
"date": "Friday, February 25, 2011", | |
"team1": "Columbus", | |
"team2": "Real Salt Lake", | |
"venue": "Columbus" | |
}, | |
{ | |
"date": "Tuesday, March 15, 2011", | |
"goals1": 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
[ [457/4959] | |
{ | |
"attendance": "4,002", | |
"date": "Saturday, April 9, 2011", | |
"goals1": 1, | |
"goals2": 4, | |
"team1": "Atlanta Beat", | |
"team2": "Boston Breakers", | |
"venue": "KSU Soccer Stadium, Kennesaw, GA" | |
}, |
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
[ | |
{ | |
"date": "Nov. 11, 2011", | |
"team1": "U.S. Men", | |
"team2": "France", | |
"time": "3 p.m. ET", | |
"tv0": "ESPN2", | |
"tv1": "ESPN3", | |
"tv2": "Univision", | |
"tv3": "Univision.com", |
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
def overlap(list): | |
"""Multiply each element by the following elements | |
in the list and return a list of each multiple""" | |
multiples = [] | |
count = 0 | |
for integer in list: | |
for index in range((count + 1), (len(list) - 1)) | |
multiple = integer * list[index] |
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
[ | |
{ | |
"goals2": 2, | |
"goals1": 3, | |
"venue": "Central Broward Regional Park", | |
"team1": "Combine AdiPower", | |
"team2": "Combine Prime", | |
"date": "Friday, January 6, 2012" | |
}, | |
{ |
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
Loading ../vmlinux-linux..... | |
Loading ../initramfs-linux.img......ready. | |
Probing EDD (edd=off to disable)... ok | |
Decompressing Linux... Parsing ELF... done. | |
Booting the kernel. | |
:: Starting udevd... done. | |
:: Running Hook [udev] | |
:: Triggering uevents... done. | |
:: Running Hook [lvm2] |
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> | |
#include <stdlib.h> | |
#include <string.h> | |
char *sep[] = {";", "=", ":", ",", NULL}; | |
char string[] = "entertitle=uncollapse,grabkeys;" | |
"enterslave=grabkeys;leaveslave=collapse,ungrabkeys;" | |
"button1=menuexec;button2=togglestick;button3=exit:13;" | |
"button4=scrollup;button5=scrolldown;" | |
"key_Up=scrollup;key_Down=scrolldown;" |
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
Script started on Mon 29 Oct 2012 04:30:00 PM EDT | |
[root@edwin philip]# ip addr | |
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN | |
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 | |
inet 127.0.0.1/8 scope host lo | |
inet6 ::1/128 scope host | |
valid_lft forever preferred_lft forever | |
3: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000 | |
link/ether 00:22:43:87:07:e1 brd ff:ff:ff:ff:ff:ff | |
inet 10.0.0.4/24 brd 10.0.0.255 scope global wlan0 |
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- (ahistorisch) (Affix) | |
a- (Apräsenz) (Affix) | |
-abel (akzeptabel) (Affix) | |
-ade (Marinade) (Affix) | |
-ade (Robinsonade) (Affix) | |
-age (Sabotage) (Affix) | |
-age (Spionage) (Affix) | |
-aille (Diplomaille) (Affix) | |
-al (instrumental) (Affix) | |
-al (optimal) (Affix) |
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
" SHOW INVISIBLES | |
" vimcasts.org/episodes/show-invisibles/ | |
" Disable syntax highlighting for Markdown files | |
autocmd BufRead,BufNewFile *.md syntax off | |
" Shortcut to toggle `set list` with `\l` | |
" Note the "mapleader" variable is set to backslash by default | |
nmap <leader>l :set list!<CR> |
OlderNewer