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 operatore@146.148.22.123 | |
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
# 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).
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="utf-8"> | |
<title>Ace custom autocomplete test</title> | |
<script src="https://ajaxorg.github.io/ace-builds/src-min-noconflict/ace.js"></script> | |
<script src="https://ajaxorg.github.io/ace-builds/src-min-noconflict/ext-language_tools.js"></script> | |
<style> | |
body { | |
overflow: hidden; |
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
<html> | |
<!-- Head !--> | |
<head> | |
<meta http-equiv="content-type" content="text/html;charset=UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- Title !--> | |
<title></title> |
OlderNewer