I hereby claim:
- I am nonrational on github.
- I am nonrational (https://keybase.io/nonrational) on keybase.
- I have a public key whose fingerprint is 9692 428B 7CC7 C05A F5CE 7F1B 4237 23D3 600E 9871
To claim this, I am signing this object:
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
I hereby claim:
To claim this, I am signing this object:
| for u in $(aws iam list-users | jq ".Users[].UserName" --raw-output); do | |
| aws iam list-access-keys --user $u | jq '.AccessKeyMetadata[] | .UserName + ":" + .AccessKeyId' ; | |
| done |
| foreach day in all_days_this_summer do | |
| if day.is_raining? then | |
| me.equip(umbrella) | |
| me.visit(movie_theater) | |
| else | |
| me.equip(shovel_and_pail) | |
| me.visit(beach) | |
| end |
| Determining system architecture... (Darwin:13.0.1:x86_64) | |
| 'macosx' is supported | |
| System architecture: 'macosx' | |
| Precompiled-headers support enabled. | |
| Xarch support detected | |
| clang: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated | |
| Symbol visibility control enabled. | |
| This is the Qt for Mac OS X Open Source Edition. |
| diff --git a/src/qt/config.tests/qpa/wayland/wayland.cpp b/src/qt/config.tests/qpa/wayland/wayland.cpp | |
| index 029e54e..1d38b9e 100644 | |
| --- a/src/qt/config.tests/qpa/wayland/wayland.cpp | |
| +++ b/src/qt/config.tests/qpa/wayland/wayland.cpp | |
| @@ -38,7 +38,7 @@ | |
| ** $QT_END_LICENSE$ | |
| ** | |
| ****************************************************************************/ | |
| -#include <wayland-client.h> | |
| +// #include <wayland-client.h> |
| // 0 <----- root_node | |
| // / \ | |
| // 1 2 | |
| // / \ \ | |
| // 3 4 5 | |
| // / / \ \ | |
| // 6 7 8 9 | |
| function print_node(n){ | |
| console.log(n); |
| function timeRemaining(yr, m, d) { | |
| function pad(i) { | |
| return (i < 10) ? "0" + i : "" + i; | |
| } | |
| var montharray = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"); | |
| var theyear = yr, themonth = m, theday = d, today = new Date(); | |
| var todayy = today.getYear(); | |
| if (todayy < 1000){ | |
| todayy += 1900 |
| // Last work of "before the date is reached" message. Change the rest of it below... | |
| var before = "Christmas!" | |
| // text you want to show when the date is reached. | |
| var current = "Today is Christmas. Merry Christmas!" | |
| // Display Months | |
| var montharray = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec") | |
| function countdown(yr, m, d) { |