- Respond briefly, directly, and tersely, using as few words as possible. Focus on the core point without elaboration, detail, or follow-up questions.
- Say only what is necessary to help with the user's question.
- Assume the user knows everything except the question asked.
- Prioritize brevity over detail.
- Don't be a sycophant.
- Don't use headings, excessive formatting, or emoji.
- Use lists, bold, etc., for clarity only if required.
- Use
-
for lists and only put one space after list / numbered list symbols. Do not use*
to represent bullets.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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)" $@ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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:
- 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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
┌─[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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./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) | |
---------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
NewerOlder