I hereby claim:
- I am banasiak on github.
- I am banasiak (https://keybase.io/banasiak) on keybase.
- I have a public key ASAtGYlAVxLbw5TUVjCfsntUqX9FE5y6u0BeQYjWx8Op0wo
To claim this, I am signing this object:
#!/bin/bash | |
export DISPLAY=:0.0 | |
PID_FILE="/opt/boblight-control/blc.pid" | |
kill_pid() { | |
if [ -e "$PID_FILE" ] | |
then | |
PID=$(<"$PID_FILE") |
function FindProxyForURL(url, host) | |
{ | |
url = url.toLowerCase(); | |
host = host.toLowerCase(); | |
// whole site | |
var site_list = [ | |
p.ikenex.com | |
]; | |
package com.banasiak.android.example.api.parser; | |
import com.google.gson.Gson; | |
import com.google.gson.JsonDeserializationContext; | |
import com.google.gson.JsonDeserializer; | |
import com.google.gson.JsonElement; | |
import com.google.gson.JsonParseException; | |
import java.lang.reflect.Type; |
# | |
# TeamSpeak 3 Server settings | |
# /etc/default/teamspeak | |
# | |
# TS3 install path | |
TS3_PATH="/opt/teamspeak" | |
# TS3 binary | |
TS3_BIN="ts3server_linux_amd64" |
I hereby claim:
To claim this, I am signing this object:
Timber.d($content$); | |
content: | |
groovyScript("def params = _2.collect {it + ' = [%s]'}.join(', '); def params2 = _2.collect {it}.join(', '); return '\"' + _1 + '() called' + (params.empty ? '' : ' with: ' + params) + '\"' + (params2.empty ? '' : ', ' + params2)", methodName(), methodParameters()) | |
Applicable in Java: statement |
/** | |
* Create a string representation of an object. This will include all fields that are not | |
* transient or static. The returned string will be in the form of `full_class_name{fieldName='value'}` | |
* This will also include all super types values as well in the string. | |
* | |
* @param object The object to get a string representation from. | |
* @return String representation of the object. | |
*/ | |
public static String toString(Object object) { | |
Class<?> aClass = object.getClass(); |
#!/bin/bash | |
adb shell am start -W \ | |
-a android.intent.action.VIEW \ | |
-d \'$1\' \ | |
com.target.ui.debug \& |
Section "Monitor" | |
Identifier "eDP-1" | |
Modeline "3840x2160_60.00" 712.75 3840 4160 4576 5312 2160 2163 2168 2237 -hsync +vsync | |
Modeline "2560x1440_60.00" 312.25 2560 2752 3024 3488 1440 1443 1448 1493 -hsync +vsync | |
Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync | |
Option "PreferredMode" "2560x1440_60.00" | |
EndSection | |
Section "Screen" | |
Identifier "Screen0" |
#!/bin/sh | |
echo "Formatting code..." | |
./gradlew googleJavaFormat formatKotlin --daemon | |
status=$? | |
if [ "$status" = 0 ]; then | |
echo "Formatting complete - adding files to Git" | |
git add . | |
exit 0 |