Simple cookie dough recipe that goes well in Chocolate chip cookies
- 1/2 cup butter
- 1/2 cup (100 g) granulated sugar
- 1/2 cup (104 g) brown sugar (packed)
- 1 eggs
| #!/usr/bin/env bash | |
| # Evan Wilde <[email protected]> | |
| # July 20, 2017 | |
| # defaults | |
| user="postgres" | |
| passwd="" | |
| host="localhost" | |
| db="ghtorrent" | |
| tmpdir='/tmp' |
| #!/bin/sh | |
| # Who is trying to access your server without permission? | |
| sudo journalctl -u sshd \ | |
| | awk '/Failed password for/ {print $11}' \ | |
| | while read address; do whois "$address" \ | |
| | grep -m 1 -i "Country: " \ | |
| | sed "s/[Cc]ountry:/$address/"; done \ | |
| | awk '{print $2 " --> " $1}' \ | |
| | uniq -c \ |
| #!/bin/env python | |
| # Just playing with theano. This doesn't do anything particularly useful | |
| # other than showing how things work | |
| import numpy | |
| import theano | |
| import theano.tensor as T | |
| from theano import function |
| # Evan Wilde <[email protected]> | |
| # May 19 2016 | |
| # /usr/lib/systemd/system/brightness.service | |
| # Grants non-root permissions to the backlight file so that it can be set by a user process | |
| # | |
| [Unit] | |
| Description=Grants non-root write access to the brightness file | |
| [Service] |
| #!/bin/bash | |
| for sysdevpath in $(find /sys/bus/usb/devices/usb*/ -name dev); do | |
| ( | |
| syspath="${sysdevpath%/dev}" | |
| devname="$(udevadm info -q name -p $syspath)" | |
| [[ "$devname" == "bus/"* ]] && continue | |
| eval "$(udevadm info -q property --export -p $syspath)" | |
| [[ -z "$ID_SERIAL" ]] && continue | |
| echo "/dev/$devname - $ID_SERIAL" |
| extern crate rand; | |
| extern crate time; | |
| use std::thread; | |
| use std::sync::mpsc; | |
| use rand::distributions::{IndependentSample, Range}; | |
| use time::PreciseTime; | |
| /// Conncurent Monte-carlo PI calculator | |
| fn main() | |
| { |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <sys/io.h> | |
| #include <stdio.h> | |
| // Send data to keyboard | |
| // This is for my IBM rapid access 1 keyboard media key support | |
| // To activate all keys: | |
| // | |
| // sudo ./keyboard_send ea 71 |
| #!/bin/sh | |
| # Rescan Hard disks | |
| if [ "$(id -u)" != "0" ]; then | |
| echo "Run as root" 1>&2 | |
| exit 1 | |
| fi | |
| for i in $(ls /sys/class/scsi_host/); do | |
| echo "- - -" > /sys/class/scsi_host/$i/scan; |
| # Evan Wide | |
| # Generic Makefile | |
| # LIBS | |
| # pthread Threading | |
| # Defines | |
| # DEBUG on debug build | |
| # TEST on test build | |
| EXEC = project_name |