View aussie_draw_2011.csv
Nadal | 1 | 12390 | |
---|---|---|---|
Daniel | 564 | ||
Sweeting | Q | 486 | |
Gimeno-Traver | 844 | ||
Tomic | W | 239 | |
Chardy | 960 | ||
Falla | 540 | ||
Lopez F | 31 | 1310 | |
Isner | 20 | 1850 | |
Serra | 711 |
View bash-template
#!/bin/bash | |
# Here short description of this script | |
# This is just a template to be used for writing new bash scripts | |
### | |
# Based on Google Style Guide: https://google-styleguide.googlecode.com/svn/trunk/shell.xml | |
# General remarks | |
# * Executables should have no extension (strongly preferred) or a .sh extension. | |
# * Libraries must have a .sh extension and should not be executable |
View keybase.md
Keybase proof
I hereby claim:
- I am hollerith on github.
- I am hollerith (https://keybase.io/hollerith) on keybase.
- I have a public key whose fingerprint is 183E 9DCE A605 697F DF44 B88A DD07 E13D D030 0250
To claim this, I am signing this object:
View annotations.xml
<?xml version="1.0" encoding="UTF-8" ?> | |
<Annotations start="0" num="126" total="126"> | |
<Annotation about="blog.malwaremustdie.org/*" timestamp="0x0005408aeb576862" href="ChlibG9nLm1hbHdhcmVtdXN0ZGllLm9yZy8qEOLQ3dqukdAC"> | |
<Label name="_cse_turlh5vi4xc" /> | |
<AdditionalData attribute="original_url" value="http://blog.malwaremustdie.org/" /> | |
</Annotation> | |
<Annotation about="blog.airbuscybersecurity.com/*" timestamp="0x0005408aea73fd53" href="Ch5ibG9nLmFpcmJ1c2N5YmVyc2VjdXJpdHkuY29tLyoQ0_rP066R0AI"> | |
<Label name="_cse_turlh5vi4xc" /> | |
<AdditionalData attribute="original_url" value="http://blog.airbuscybersecurity.com/" /> | |
</Annotation> |
View admin.py
from functools import update_wrapper | |
from django.contrib import admin | |
from django.contrib.admin import ModelAdmin | |
from django.contrib.admin.templatetags.admin_urls import add_preserved_filters | |
from django.core.exceptions import PermissionDenied | |
from django.shortcuts import render | |
from myapp.models import Widget | |
from myapp.forms import ManageWidgetForm |
View chromium-os-docker.md
Chromium OS ft. Docker
Chromium OS is cool. Chromium OS with crouton is cooler. Chromium OS with Docker is even cooler. This is specifically a guide for the Chromebook Pixel 2 (2015), but I can't think of any reason it wouldn't work with other devices.
View transformFile.py
#!/usr/bin/python | |
# -*- coding: utf8 -*- | |
# | |
# Author: Arno0x0x, Twitter: @Arno0x0x | |
# | |
import argparse | |
from Crypto.Cipher import AES | |
import pyscrypt | |
from base64 import b64encode |
View cell_redux.html
<html> | |
<script src="https://www.celljs.org/cell.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/redux/3.7.0/redux.min.js"></script> | |
<script> | |
function items(state = [], action) { | |
switch (action.type) { | |
case 'ADD': | |
return state.concat(action.value) | |
case 'CLEAR': |