Skip to content

Instantly share code, notes, and snippets.

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
@hollerith
hollerith / bash-template
Created March 18, 2016 09:39 — forked from renzok/bash-template
A template bash script based on google style guide with little improvements
#!/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

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:

@hollerith
hollerith / annotations.xml
Created June 10, 2017 23:54 — forked from Neo23x0/annotations.xml
Sources for APT Groups and Operations Search Engine
<?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>
@hollerith
hollerith / admin.py
Created July 19, 2017 09:58 — forked from mattlong/admin.py
Add a custom admin page for a model and link to it from the detail page
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
@hollerith
hollerith / transformFile.py
Created May 29, 2019 11:43 — forked from Arno0x/transformFile.py
Performs multiple useful transformation on files
#!/usr/bin/python
# -*- coding: utf8 -*-
#
# Author: Arno0x0x, Twitter: @Arno0x0x
#
import argparse
from Crypto.Cipher import AES
import pyscrypt
from base64 import b64encode
@hollerith
hollerith / cell_redux.html
Created October 28, 2020 00:59 — forked from davidbonnet/cell_redux.html
Using Cell with Redux
<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':