I hereby claim:
- I am faried on github.
- I am self (https://keybase.io/self) on keybase.
- I have a public key ASCAda_Tll1oZAJk6_M2x0VzhXSalabSMG4nyeEwZ3VhqQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/* | |
* pubspec.yaml: | |
* | |
* name: dconsole1 | |
* version: 0.0.1 | |
* description: A simple console application. | |
* dependencies: | |
* firebase: '^3.0.0' | |
* http: '^0.11.3' | |
* googleapis_auth: any |
--- wmweather-2.4.5/src/wmweather.c~ 2016-08-04 00:20:09.027746575 +0500 | |
+++ wmweather-2.4.5/src/wmweather.c 2016-08-04 00:16:08.836421544 +0500 | |
@@ -62,7 +62,7 @@ | |
static struct memory | |
header = {NULL, 0}; | |
char | |
- url[] = "http://weather.noaa.gov/pub/data/observations/metar/decoded/\0\0\0\0.TXT", | |
+ url[] = "http://tgftp.nws.noaa.gov/data/observations/metar/decoded/\0\0\0\0.TXT", | |
xtitle[] = "weather report for \0\0\0\0\0", | |
*station = NULL, |
{ | |
"log":[ | |
"REST", | |
"Shadow", | |
"CRUD", | |
"CRUD+", | |
"HTTP", | |
"HTTP+", | |
"Access", | |
"Changes", |
from __future__ import unicode_literals | |
from json import loads | |
from optparse import OptionParser | |
from shlex import split | |
from pyfiglet import Figlet | |
crontable = [] | |
outputs = [] |
02-25 10:54:48.567 15735-15735/com.failapp A/art: art/runtime/thread.cc:1344] Throwing new exception 'length=146; index=1542' with unexpected pending exception: java.lang.ArrayIndexOutOfBoundsException: length=146; index=1542 | |
02-25 10:54:48.567 15735-15735/com.failapp A/art: art/runtime/thread.cc:1344] at void com.failapp.fragments.LoginFragment.onClickedSignIn(android.view.View) (LoginFragment.java:100) | |
02-25 10:54:48.567 15735-15735/com.failapp A/art: art/runtime/thread.cc:1344] at void com.failapp.fragments.LoginFragment$$ViewBinder$1.doClick(android.view.View) (LoginFragment$$ViewBinder.java:24) | |
02-25 10:54:48.567 15735-15735/com.failapp A/art: art/runtime/thread.cc:1344] at void butterknife.internal.DebouncingOnClickListener.onClick(android.view.View) (DebouncingOnClickListener.java:22) | |
02-25 10:54:48.567 15735-15735/com.failapp A/art: art/runtime/thread.cc:1344] at boolean android.view.View.performClick() (View.java:5204) | |
02-25 10:54:48.567 15735-15735/com.failapp A/art: art/runtime/thread.cc:13 |
;; i'm using it in | |
;; "GNU Emacs 25.1.50.1 (x86_64-apple-darwin13.4.0, NS appkit-1265.21 Version 10.9.5 (Build 13F1134)) of 2015-12-09" | |
;; explode.wav is at | |
;; https://web.archive.org/web/20051029193334/http://www.arcanewolf.com/wizard/sounds/explode.wav | |
;; ring-bell-function described at https://www.emacswiki.org/emacs/AlarmBell | |
(setq ring-bell-function | |
(lambda () |
if you want to change your twitter screen_name, use https://twitter.com/settings/account | |
if you want to move to a new account but don't want to give up the old one: | |
old user = @old | |
new user = @new | |
it helps to have two independent browser windows open (two different browsers, | |
or one browser with a normal window and an incognito window). |
Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS, Uri.fromParts("package", getPackageName(), null)); | |
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); | |
startActivity(intent); |
;; save the buffer when we get input | |
(defun zenicb-save-buffer-frequently (&rest foo) | |
(when (buffer-file-name) | |
(save-excursion | |
(save-buffer)))) | |
(zenicb-add-hook 'zenicb-message-hook 'zenicb-save-buffer-frequently) |