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
#!/usr/bin/python | |
from __future__ import print_function | |
import requests | |
import sys | |
import json | |
def get_response(idval, sessid): | |
headers = {'Session': sessid[0]} | |
req = 'http://challenge.shopcurbside.com/' |
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
#Courtesy | |
http://www.labnol.org/internet/direct-links-for-google-drive/28356/ | |
#get-shared-link | |
https://drive.google.com/file/d/FILE_ID/edit?usp=sharing | |
#convert-to-download-link | |
https://drive.google.com/uc?export=download&id=FILE_ID |
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
#tor-browser_en-US/Browser/TorBrowser/Data/Tor/torrc | |
StrictExitNodes 1 | |
ExitNodes {in} |
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
#!/usr/bin/python | |
from pushbullet import Pushbullet | |
import sys | |
if len(sys.argv) != 2: | |
print "Usage %s <message>"%sys.argv[0] | |
sys.exit(1) | |
api_key = '32_char_Key_from_pushbullet' |
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
index d0a5a45..8445ba3 100644 | |
--- a/cmd-break-pane.c | |
+++ b/cmd-break-pane.c | |
@@ -80,9 +80,9 @@ cmd_break_pane_exec(struct cmd *self, struct cmd_q *cmdq) | |
w = wp->window = window_create1(s->sx, s->sy); | |
TAILQ_INSERT_HEAD(&w->panes, wp, entry); | |
w->active = wp; | |
- name = default_window_name(w); | |
+ name = wp->base.title; | |
window_set_name(w, name); |
NewerOlder