I hereby claim:
- I am crodjer on github.
- I am crodjer (https://keybase.io/crodjer) on keybase.
- I have a public key ASBsTTGmlX4PXWkRYzIBz6ZAIBZCutTAWKnSuI6pusMdEQo
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# A script to test the cooling performance of a RaspberryPi using `sysbench` | |
# Starts a syncbench process in the background and monitors the temperature. | |
# | |
# After the benchmark is complete, keeps the monitoring on to see how much time | |
# does the colling setup take to reach 55°C. | |
log () { | |
echo "$(date -Is)" $@ |
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon | |
adb shell pm uninstall -k --user 0 com.netflix.mediaclient | |
adb shell pm uninstall -k --user 0 com.netflix.partner.activation | |
adb shell pm uninstall -k --user 0 com.facebook.services | |
adb shell pm uninstall -k --user 0 com.facebook.system | |
adb shell pm uninstall -k --user 0 com.facebook.appmanager | |
adb shell pm uninstall -k --user 0 com.android.stk2 | |
adb shell pm uninstall -k --user 0 com.samsung.android.aremoji | |
adb shell pm uninstall -k --user 0 com.samsung.android.ardrawing | |
adb shell pm uninstall -k --user 0 com.sec.android.app.fm |
I hereby claim:
To claim this, I am signing this object:
import Array exposing (Array, get) | |
import Html exposing (Html, div, text) | |
import Html.Attributes exposing (style) | |
import Html.App as Html | |
import Html.Events exposing (onClick) | |
import Maybe exposing (withDefault) | |
import Random | |
import String | |
main : Program Never |
''' | |
Application to demonstrate testing tornado websockets. | |
Try it wiith: python -m tornado.testing discover | |
''' | |
from tornado import testing, httpserver, gen, websocket | |
from ws import APP |
diff --git a/docs/netctl.profile.5.txt b/docs/netctl.profile.5.txt | |
index 6ad93a0..39fa644 100644 | |
--- a/docs/netctl.profile.5.txt | |
+++ b/docs/netctl.profile.5.txt | |
@@ -428,6 +428,16 @@ type: | |
AT commands specific to certain Huawei modems; all other devices | |
should use `None'. | |
+'Init=':: | |
+ An initialization string sent to the modem before dialing. This |
┌─[rohan@crodjer]-[09:02 PM] ± git:(f7f97bf) | |
└─> valgrind src/redis-cli ~/workspace/src/redis | |
==5398== Memcheck, a memory error detector | |
==5398== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al. | |
==5398== Using Valgrind-3.9.0 and LibVEX; rerun with -h for copyright info | |
==5398== Command: src/redis-cli | |
==5398== | |
127.0.0.1:6379> config set slowlog-log-slower-than 1 | |
OK | |
127.0.0.1:6379> slowlog get |
./tornadoredis/connection.py:77: ResourceWarning: unclosed <socket.socket object, fd=7, family=2, type=2049, proto=0> | |
self._stream = None | |
./tornadoredis/connection.py:77: ResourceWarning: unclosed <socket.socket object, fd=8, family=2, type=2049, proto=0> | |
self._stream = None | |
FFF.FFF./tornadoredis/connection.py:77: ResourceWarning: unclosed <socket.socket object, fd=9, family=2, type=2049, proto=0> | |
self._stream = None | |
F | |
====================================================================== | |
FAIL: test_connection_pool (tornadoredis.tests.pool.ConnectionPoolTestCase) | |
---------------------------------------------------------------------- |
#!/usr/bin/env python3 | |
import unittest | |
import random | |
try: | |
# Python3, cool! | |
from itertools import zip_longest | |
except ImportError: | |
# I am on python2 | |
from itertools import izip_longest as zip_longest |
function uuids (count, seed) { | |
var pattern = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'; | |
var _uuids = []; | |
if (count === undefined) { | |
count = 1; | |
} | |
if (seed === undefined) { |