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
| /github subscribe owner/repo issues pulls commits commits:* releases comments branches reviews | |
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
| class Node: | |
| def __init__(self, val=None, p=None, l=None, r=None): | |
| self.key = val | |
| self.parent = p | |
| self.left_child = l | |
| self.right_child = r | |
| self.balance_factor = 0 | |
| def __repr__(self): | |
| s = str(self.key) |
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
| package main | |
| import ( | |
| "flag" | |
| "fmt" | |
| "io" | |
| "log" | |
| "net" | |
| "os" | |
| "os/signal" |
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
| "{ | |
| "proxyDomain": "loopback.modlishka.io", | |
| "listeningAddress": "0.0.0.0", | |
| "proxyAddress": "", | |
| "target": "paypal.com", | |
| "targetResources": "c.paypal.com,www.paypal.com,www.paypalobjects.com,t.paypal.com,ad.doubleclick.net", | |
| "targetRules": "", | |
| "terminateTriggers": "", | |
| "terminateRedirectUrl": "", | |
| "trackingCookie": "ident", |
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
| sudo snap install code --classic |
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
| type Queue []*Node | |
| func (q *Queue) Push(n *Node) { | |
| *q = append(*q, n) | |
| } | |
| func (q *Queue) Pop() (n *Node) { | |
| n = (*q)[0] | |
| *q = (*q)[1:] | |
| return |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Timer</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> |
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
| {"lastUpload":"2020-12-25T07:19:08.091Z","extensionVersion":"v3.4.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
| void delay() | |
| { | |
| info now; | |
| thislist = List(); | |
| thislist={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16}; | |
| for each l in thislist | |
| { | |
| response = getUrl( "https://wait.glitch.me/5"); | |
| } | |
| info now; |
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
| namespace Demo_mousehook | |
| { | |
| public partial class Form1 : Form | |
| { | |
| public Form1() | |
| { | |
| InitializeComponent(); | |
| } | |
| MouseHook mh; |
NewerOlder