- Navigate to https://shakedown.social/settings/applications
- Click "New Application", name it something like "Airtable"
- Check off the
write:statusesscope and uncheck all the other ones. - Click "Submit" at the bottom of the page.
- Click into the "Airtable" application you just made.
- Copy the value for "Your access token". Paste it into
ACCESS_TOKEN_HEREin the script. - Populate
STATUS_TEXT_HEREin the script with that status text you want.
This file contains hidden or 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
| div.status.status-public.status-reply span.status__visibility-icon .fa-globe::before { | |
| content: " "; | |
| } | |
| div.status.status-unlisted.status-reply span.status__visibility-icon .fa-unlock::before { | |
| content: " "; | |
| } | |
| div.status.status-direct.status-reply span.status__visibility-icon .fa-at::before { | |
| content: " "; |
This file contains hidden or 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
| DROP TABLE if exists temp; | |
| CREATE TABLE temp ( | |
| `table` varchar(250) DEFAULT NULL, | |
| `colum` varchar(250) DEFAULT NULL, | |
| `type` varchar(250) DEFAULT NULL, | |
| `number_of_PK` tinyint(2) DEFAULT NULL, | |
| `alter` varchar(250) DEFAULT NULL | |
| ) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
This file contains hidden or 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
| wpt_server=YOUR_PUBLIC_DNS wpt_location=EC2-WPT |
This file contains hidden or 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
| 1.9.3p392 :003 > arr = []; arr[10000000000000001] = 1 | |
| irb(16545,0x7fff795b9180) malloc: *** mmap(size=80000000000004096) failed (error code=12) | |
| *** error: can't allocate region | |
| *** set a breakpoint in malloc_error_break to debug | |
| irb(16545,0x7fff795b9180) malloc: *** mmap(size=80000000000004096) failed (error code=12) | |
| *** error: can't allocate region | |
| *** set a breakpoint in malloc_error_break to debug | |
| NoMemoryError: failed to allocate memory | |
| from (irb):3:in `[]=' | |
| from (irb):3 |
This file contains hidden or 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
| 10001 | |
| 1002001 1004006004002 | |
| 14541 102030301 | |
| 44944 1022325232202 | |
| 1000001999901 1211124711121 | |
| 2617287827163 4000008000005 | |
| 1 101 | |
| 1022325232201 1213326733121 | |
| 44943 12345654321 | |
| 42874 103045301 |
This file contains hidden or 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
| require 'benchmark' | |
| def int_pal?(num) | |
| n = num | |
| reverse = 0 | |
| while (num > 0) | |
| dig = num % 10 | |
| reverse = reverse * 10 + dig | |
| num = num / 10 | |
| end |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
This file contains hidden or 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
| require 'URI' | |
| require 'benchmark' | |
| include Benchmark | |
| urls = %W{ | |
| http://www.theverge.com/posts/comment | |
| http://www.thefalcoholic.com/posts/ajax_comments_update/3468659?last_version=128 | |
| http://www.polygon.com/game/dead-island-riptide/3635 | |
| http://www.arrowheadpride.com/rss2/index.xml | |
| http://www.broadstreethockey.com/ |
NewerOlder









