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
| Add-Type -AssemblyName System.Windows.Forms; | |
| $login_email = "[email protected]"; #Your login e-mail address | |
| $passwd = "example_password"; #Your password | |
| Start-Process chrome.exe -ArgumentList "https://accounts.google.com/signin/chrome/sync/identifier?ssp=1&continue=https%3A%2F%2Fwww.google.com%2F&flowName=GlifDesktopChromeSync" -PassThru; | |
| Start-Sleep -s 3; | |
| [System.Windows.Forms.SendKeys]::SendWait($login_email); | |
| Start-Sleep -m 100; | |
| [System.Windows.Forms.SendKeys]::SendWait("{ENTER}"); |
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/sh | |
| databases=("aaaaaaaaa" "xxxxxxx") | |
| passwords=("qwerty" "asdfgh") | |
| i=0 | |
| for database in ${databases[@]} | |
| do | |
| time=`date +%Y%m%d%H%M%S` |
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> | |
| <head> | |
| <meta charset="utf8"> | |
| <title>PHP $_SERVER dumping</title> | |
| </head> | |
| <body> | |
| <table> | |
| <?php | |
| foreach($_SERVER as $key => $value) { |
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
| net = nn.Sequential( | |
| nn.Conv2d(3, 64, kernel_size = (3,3),stride = (1,1), padding = (1,1)), # (32, 32, 64) | |
| nn.ReLU(), | |
| nn.BatchNorm2d(64), | |
| nn.Conv2d(64, 64, kernel_size = (3,3),stride = (1,1), padding = (1,1)), # (32, 32, 64) | |
| nn.ReLU(), | |
| nn.BatchNorm2d(64), | |
| nn.MaxPool2d(kernel_size = (2,2), stride = (2,2)), # (16, 16, 64) |
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="ja"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>LIFE TIMER</title> | |
| </head> | |
| <body> | |
| <div> | |
| <h1>Life Timer</h1> |
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 PIL import Image | |
| from IPython.display import display | |
| def cv2_imshow(img): | |
| img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) | |
| pil_img = Image.fromarray(img) | |
| display(pil_img) |