This file contains 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
courtesy: cmpxchg aka tim murray | |
suspend is the big hammer. in suspend, you turn off all peripherals, turn off the CPUs entirely, | |
put the DRAM into self-refresh. power consumption is very low. if you've ever put a tablet on | |
a table and come back a month later to find that it's still on, that's because it's been suspend | |
99.9% of the time, and it's drawing a tiny amount the whole time. | |
problem with suspend is that it takes a nontrivial amount of time to enter/exit, so you can't | |
do it when somebody has to interact with the phone soon. on Android, suspend never happens while | |
the screen is on. if you ever wondered what a wakelock actually does, it prevents suspend. that's it. |
This file contains 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
def getVersionName = { -> | |
try { | |
def stdout = new ByteArrayOutputStream() | |
exec { | |
commandLine 'git', 'describe', '--dirty' | |
standardOutput = stdout | |
} | |
return stdout.toString().trim() | |
} | |
catch (ignored) { |
This file contains 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
def getVersionCode = { -> | |
try { | |
def stdout = new ByteArrayOutputStream() | |
exec { | |
commandLine 'git', 'rev-list', '--first-parent', '--count', 'origin/master' | |
standardOutput = stdout | |
} | |
return Integer.parseInt(stdout.toString().trim()) * 100 | |
} | |
catch (ignored) { |
This file contains 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
public class SortedListAdapter extends IntegerListAdapter { | |
private SortedList<Integer> sortedList; | |
public SortedListAdapter() { | |
this.sortedList = new SortedList<>(Integer.class, new SortedListAdapterCallback<Integer>(this) { | |
@Override public int compare(Integer item1, Integer item2) { | |
return item1.compareTo(item2); | |
} | |
@Override public boolean areContentsTheSame(Integer oldItem, Integer newItem) { |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<code_scheme name="GoogleAndroid"> | |
<option name="OTHER_INDENT_OPTIONS"> | |
<value> | |
<option name="INDENT_SIZE" value="4" /> | |
<option name="CONTINUATION_INDENT_SIZE" value="4" /> | |
<option name="TAB_SIZE" value="4" /> | |
<option name="USE_TAB_CHARACTER" value="false" /> | |
<option name="SMART_TABS" value="false" /> | |
<option name="LABEL_INDENT_SIZE" value="0" /> |
This file contains 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
[user] | |
name = Pratul Kalia | |
email = [email protected] | |
[alias] | |
br = branch | |
cm = commit -am | |
cma = commit -a | |
co = checkout | |
di = diff | |
dil = diff HEAD^..HEAD |
This file contains 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
There’s a lot of problems with simple motivation: | |
Motivation is fleeting. Motivation comes and goes however it wants. It might not last to the end of the week, end of the day, | |
or even the end of blog post you just read. It’s fleeting. | |
Motivation is situational. Motivation is based on your current situation. How do you feel? If you don’t feel like doing it, | |
then you’re off the hook. You don’t have to do it – because you don’t feel like it! But then you don’t do it and you just feel | |
worse and more stuck than ever. | |
Motivation is everywhere. Everywhere you go, you see people trying to get motivated to do something, to make a change. They’ll |
This file contains 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
gradle | |
gradlew* | |
.gradle | |
local.properties | |
.DS_Store | |
build/ | |
# Legacy | |
.classpath | |
.project |
This file contains 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
## 4 8 15 16 23 42 | |
export PS1="\n\[$(tput setaf 7)\]\w\n\`git branch 2> /dev/null | grep -e ^* | sed -E s/^\\\\\\\\\*\ \(.+\)$/\(\\\\\\\\\1\)\/\`>: \[$(tput sgr0)\]" | |
This file contains 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
#### | |
# lut4rp's zshrc | |
# "You could've been anywhere in the world, but you're here with us... And we appreciate that." | |
#### | |
# Aliases | |
alias ls='ls -hG' | |
alias ll='ls -lh' | |
alias la='ls -ah' | |
alias sl=ls |
NewerOlder