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
| @echo off | |
| setlocal enabledelayedexpansion | |
| echo %~dp0 | |
| cd %~dp0 | |
| set collectFolderName=CollectData | |
| set collectPath=%userprofile%\desktop\Ringcentral\%collectFolderName% | |
| echo %collectPath% | |
| if exist %collectPath% ( | |
| rd /s /q %collectPath% |
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
| ==> arch2: Configuring and enabling network interfaces... | |
| DEBUG ssh: Checking whether SSH is ready... | |
| DEBUG ssh: Re-using SSH connection. | |
| INFO ssh: SSH is ready! | |
| DEBUG ssh: Re-using SSH connection. | |
| INFO ssh: Execute: (sudo=false) | |
| DEBUG ssh: Exit status: 0 | |
| DEBUG guest: Searching for cap: configure_networks | |
| DEBUG guest: Checking in: arch | |
| DEBUG guest: Found cap: configure_networks in arch |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| /** | |
| * Definition for singly-linked list. | |
| * struct ListNode { | |
| * int val; | |
| * struct ListNode *next; | |
| * }; | |
| */ | |
| struct ListNode* reverseList(struct ListNode* head) { | |
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
| /** | |
| * Definition for a binary tree node. | |
| * struct TreeNode { | |
| * int val; | |
| * struct TreeNode *left; | |
| * struct TreeNode *right; | |
| * }; | |
| */ | |
| bool isChildSymmetric(struct TreeNode* p, struct TreeNode* q) { |
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
| ../eyyxo.torrent: | |
| Name: Hacked Team | |
| Size: 415768052618 (387G) | |
| Announce: udp://coppersurfer.tk:6969/announce | |
| Files: | |
| Amministrazione/01 - CLIENTI/1 - Commesse/1 - Commesse 2011/Commessa001.2011 Royal.xls 59392 (58K) | |
| Amministrazione/01 - CLIENTI/1 - Commesse/1 - Commesse 2011/Commessa002.2011 Royal.xls 59392 (58K) |
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
| #!/bin/bash | |
| # | |
| # Example of how to parse short/long options with 'getopt' | |
| # | |
| OPTS=`getopt -o vhns: --long verbose,dry-run,help,stack-size: -n 'parse-options' -- "$@"` | |
| if [ $? != 0 ] ; then echo "Failed parsing options." >&2 ; exit 1 ; fi | |
| echo "$OPTS" |
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
| from urllib2 import urlopen | |
| import re | |
| import Queue | |
| import threading | |
| import os | |
| class download(threading.Thread): | |
| def __init__(self,que): | |
| threading.Thread.__init__(self) | |
| self.que=que | |
| def run(self): |