A real quick GNU screen crash course with the key features I use.
man screen
- Emulates terminals in a full-screen window manager
- Detachable, so shell sessions aren't attached to a login process
| <?php | |
| // $wordlist, acho que e a lista do challange anterior que retornou uma porrada de conteudo | |
| $cookie_data = 'ClVLIh4ASCsCBE8lAxMacFMZV2hdVVotEhhUJQNVAmhSEV4sFxFeaAw' | |
| function xor_encrypt($in, $key) { | |
| # $key = '<censored>'; | |
| $text = $in; | |
| $outText = ''; |
| #!/bin/bash | |
| set -e | |
| if [ -z "$DIGITALOCEAN_ACCESS_TOKEN" ]; then | |
| echo >&2 "ERROR: You must export DIGITALOCEAN_ACCESS_TOKEN" | |
| exit 1 | |
| fi | |
| docker pull swarm > /dev/null |
| # Add to nginx.conf http section | |
| map $http_upgrade $connection_upgrade { | |
| default upgrade; | |
| '' close; | |
| } |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| body { | |
| font: 13px Helvetica, Arial; | |
| } |
| ffmpeg -v 0 -y -i "http://calertahls-lh.akamaihd.net/i/calertahls_1@167570/master.m3u8" -vframes 1 img/output.jpeg |
| import json | |
| whitelist = [] | |
| def add_user_whitelist(user_id): | |
| whitelist.append(user_id) | |
| add_user_whitelist(12345678000) |
| import requests | |
| def get_url(url, news): | |
| res = requests.get(url) | |
| for new in res.json()['results']: | |
| news.append(new) | |
| if res.json()['next']: | |
| news = get_url(res.json()['next'], news) | |
| return news |