I hereby claim:
- I am sidpagariya on github.
- I am sidpagariya (https://keybase.io/sidpagariya) on keybase.
- I have a public key ASA8wfDWM4dvEJZv-62oD87uTyioVhDIpNWUkPam6QEvtgo
To claim this, I am signing this object:
body { background: #222; color: #e6e6e6; } | |
a { color: #949494; } | |
a:link, a:visited { color: #949494; } | |
a:hover, a:active, a:focus { color: #c7c7c7; } | |
hr { border-bottom: 1px solid #424242; border-top: 1px solid #222; } |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
brew_command=/usr/local/bin/brew | |
brew_cask_command="$brew_command cask" | |
echo '#!/bin/bash' | |
echo '' | |
echo 'trap ctrl_c INT' | |
echo 'function ctrl_c() {' | |
echo 'echo "** Trapped CTRL-C"' |
package com.packageName.snapchatuiautomat; | |
import org.junit.Before; | |
import org.junit.Test; | |
import org.junit.runner.RunWith; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.os.RemoteException; | |
import android.support.test.InstrumentationRegistry; |
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
"activate-power-mode": | |
prettyName: "Activate Power Mode" | |
homepage: "https:/atom.io/packages/activate-power-mode" | |
"advanced-open-file": | |
prettyName: "Advanced Open File" | |
homepage: "https:/atom.io/packages/advanced-open-file" | |
"apex-syntax": | |
prettyName: "Apex Syntax" | |
homepage: "https:/atom.io/packages/apex-syntax" | |
"apex-ui": |
extension NSUserDefaults { | |
func colorForKey(key: String) -> UIColor? { | |
var color: UIColor? | |
if let colorData = dataForKey(key) { | |
color = NSKeyedUnarchiver.unarchiveObjectWithData(colorData) as? UIColor | |
} | |
return color | |
} |