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
" _ _ " | |
" _ /|| . . ||\ _ " | |
" ( } \||D ' ' ' C||/ { % " | |
" | /\__,=_[_] ' . . ' [_]_=,__/\ |" | |
" |_\_ |----| |----| _/_|" | |
" | |/ | | | | \| |" | |
" | /_ | | | | _\ |" | |
It is all fun and games until someone gets hacked! |
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
/* | |
Go-Language implementation of an SSH Reverse Tunnel, the equivalent of below SSH command: | |
ssh -R 8080:127.0.0.1:8080 [email protected] | |
which opens a tunnel between the two endpoints and permit to exchange information on this direction: | |
server:8080 -----> client:8080 |
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
Paste this in your NodeRed | |
[{"id":"dcaf4c15.db115","type":"tab","label":"Free Steam Games Monitor","disabled":false,"info":""},{"id":"73f6d641.2a8608","type":"http request","z":"dcaf4c15.db115","name":"","method":"GET","ret":"txt","paytoqs":false,"url":"https://steamdb.info/upcoming/free/","tls":"","persist":false,"proxy":"","authType":"","x":330,"y":60,"wires":[["a70f9734.3dd5e8","19c2545e.b0375c"]]},{"id":"1402f311.b188fd","type":"html","z":"dcaf4c15.db115","name":"Bulk parse current","property":"payload","outproperty":"payload","tag":"body > div.footer-wrap > div.body-content > div.container > table:nth-child(3) > tbody > tr","ret":"html","as":"multi","x":870,"y":60,"wires":[["536fa9e7.c8d8c8"]]},{"id":"9cee73d6.d3af4","type":"cronplus","z":"dcaf4c15.db115","name":"Scheduler","outputField":"payload","timeZone":"","options":[{"topic":"refresh","payload":"","type":"date","expression":"0 0 12 * * *"}],"x":120,"y":180,"wires":[["51d68c05.384cd4"]]},{"id":"d2005a2b.673328","type":"inject","z":"dcaf4c15.db115" |
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
Windows 8 Pro Only Offline Activation RETAIL Keys [Retail Edition Only]: | |
slmgr.vbs -ipk 4NX96-C2K6G-XFD2G-9X4P9-4JMQH | |
slmgr.vbs -ipk 4NY9C-Q2VW8-84VH3-YPMDY-FF9T7 | |
slmgr.vbs -ipk 9FN3V-HDGGV-7F8K6-FVT9H-QPBQH | |
slmgr.vbs -ipk BKBGN-M2HWH-3MRQ6-WTJ9X-KP73H | |
slmgr.vbs -ipk BP4FX-DNGD9-P3FMR-PYR6Q-T6JXV | |
slmgr.vbs -ipk C37NF-QYM6Y-BVFCR-WMXGV-QPBQH | |
slmgr.vbs -ipk 3NM39-QTK29-YGY3C-TJ2BJ-K2BQH | |
slmgr.vbs -ipk 8B3N2-GWPXP-3VFP2-VX69Q-QRPKV |
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
http://tinyurl.com/n7mdqte | |
http://tinyurl.com/n7mdqte | |
https://sites.google.com/site/tarzanqblogspotcom/windows-2/Serial-Keys.txt?attredirects=0 | |
https://sites.google.com/site/tarzanqblogspotcom/windows-2/IDM%206.21build%2016%20with%20Activator.rar?attredirects=0 | |
https://sites.google.com/site/tarzanqblogspotcom/windows-2/KMSpico%2010%20beta%202.rar?attredirects=0 |
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
Windows 8.1 Build 9600 RTM Permanent Activation Via Phone | |
Download - http://www.mediafire.com/download/7707c2tmgsdw0sv | |
Continue to install like normal and when asked for a serial enter one of the following (DO NOT ENTER YOUR OWN) | |
For Windows 8.1 Core: 334NH-RXG76-64THK-C7CKG-D3VPT | |
For Windows 8.1 Professional: XHQ8N-C3MCJ-RQXB6-WCHYG-C9WKB | |
Step 6: When you reach the desktop you will notice you are not activated this is fine! Right click the start button and choose "Command Prompt (admin)" | |
Step 7: Enter slmgr.vbs -ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX (Replace the Green X's with your RETAIL Windows 8 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
# CI-CD Quickstart | |
## GitLab | |
* Go: | |
**Default CI:** | |
```yml | |
# This file is a template, and might need editing before it works on your project. |
git checkout master # you can avoid this line if you are in master...
git subtree split --prefix dist -b gh-pages # create a local gh-pages branch containing the splitted output folder
git push -f origin gh-pages:gh-pages # force the push of the gh-pages branch to the remote gh-pages branch at origin
git branch -D gh-pages # delete the local gh-pages because you will need it: ref
Sometimes you want to have a subdirectory on the master
branch be the root directory of a repository’s gh-pages
branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master
branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist
.
Remove the dist
directory from the project’s .gitignore
file (it’s ignored by default by Yeoman).
OlderNewer