Keybase proof
I hereby claim:
- I am christianwilkie on github.
- I am cwilkie (https://keybase.io/cwilkie) on keybase.
- I have a public key ASAP7GsF0K3UNtpr632OZnZkgDDkxvGHbTIJwX9XOgfYnwo
To claim this, I am signing this object:
package com.christianwilkie.rdailyprogrammer.c187p1.easy; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.Scanner; | |
/** | |
* Created by chris on 11/8/2014. | |
*/ | |
public class ChallengeRunner { |
package com.christianwilkie; | |
import java.time.LocalDateTime; | |
import java.time.format.DateTimeFormatter; | |
/** | |
* Created by chris on 11/9/2014. | |
*/ | |
public class PostItNote implements Comparable<PostItNote>{ | |
private static final DateTimeFormatter printedDateFormatter = DateTimeFormatter.ofPattern("MM-dd-yyyy"); |
source 'https://rubygems.org' | |
gem 'github-pages' |
enum EMiniGameType | |
{ | |
k_EMiniGameType_Invalid = 0; | |
k_EMiniGameType_TowerAttack = 1; | |
} | |
enum EMiniGameStatus | |
{ | |
k_EMiniGameStatus_Invalid = 0; | |
k_EMiniGameStatus_WaitingForPlayers = 1; | |
k_EMiniGameStatus_Running = 2; |
I hereby claim:
To claim this, I am signing this object:
-- vim: ts=4 sw=4 noet ai cindent syntax=lua | |
--[[ | |
Conky, a system monitor, based on torsmo | |
Any original torsmo code is licensed under the BSD license | |
All code written since the fork of torsmo is licensed under the GPL | |
Please see COPYING for details |
#!/bin/bash | |
# Tests Raspberry Pi disk read/write speed | |
if [ "$EUID" -ne 0 ] | |
then echo "Please run as root" | |
exit | |
fi | |
echo "=== Performing Write Speed Test ===" | |
dd if=/dev/zero of=/tmp/test.tmp bs=500K count=1024 oflag=dsync | |
sync; echo 3 | tee /proc/sys/vm/drop_caches |