Home:
/
:discord://-/
- friends:
discord://-/channels/@me/
- nitro:
discord://-/store
- shop:
discord://-/shop
- message requests:
discord://-/message-requests
- family centre:
discord://-/family-center
# IPs taken from: | |
# https://openai.com/searchbot.json | |
# https://openai.com/chatgpt-user.json | |
# https://openai.com/gptbot.json | |
# And presumably could change. | |
location / | |
{ | |
#deny OAI-SearchBot | |
deny 20.42.10.176/28; |
#!/bin/bash | |
# Grab Twitter guest account tokens for use with Nitter. | |
guest_token=$(curl -s -XPOST https://api.twitter.com/1.1/guest/activate.json -H 'Authorization: Bearer AAAAAAAAAAAAAAAAAAAAAFXzAwAAAAAAMHCxpeSDG1gLNLghVe8d74hl6k4%3DRUMF4xAQLsbeBhTSRrCiQpJtxoGWeyHrDb5te2jpGskWDFW82F' -H 'Connection: close' | jq -r '.guest_token') | |
flow_token=$(curl -s -XPOST 'https://api.twitter.com/1.1/onboarding/task.json?flow_name=welcome&api_version=1&known_device_token=&sim_country_code=us' \ | |
-H 'Authorization: Bearer AAAAAAAAAAAAAAAAAAAAAFXzAwAAAAAAMHCxpeSDG1gLNLghVe8d74hl6k4%3DRUMF4xAQLsbeBhTSRrCiQpJtxoGWeyHrDb5te2jpGskWDFW82F' \ | |
-H 'Content-Type: application/json' \ | |
-H 'User-Agent: TwitterAndroid/10.21.1' \ | |
-H "X-Guest-Token: ${guest_token}" \ |
$hactool = "$PSScriptRoot\hactool.exe" | |
$prodkeys = "$PSScriptRoot\prod.keys" | |
$firmware = "$PSScriptRoot\Firmware 10.1.0\" | |
$files = Get-ChildItem $firmware -Filter *.nca | |
$numfiles = 0 | |
foreach ($file in $files) { | |
$hacout = & $hactool -k $prodkeys -i $firmware$file | Out-String | |
if($hacout -like '*Content Type: Meta*') { | |
Get-Item $firmware$file | Rename-Item -Path $firmware$file -NewName { $_.Name -replace '.nca','.cnmt.nca' } | |
$numfiles++ |
id | username | |
---|---|---|
997774805511360512 | this_vid | |
1074360508030074880 | thisvid_ | |
1078893871780847618 | this_vid_ | |
708564331332444160 | GetVideoBot | |
1010484773066887168 | DownloaderBot |
We did it! We broke gist.github.com ;) So head over to the new home! Thank you all!
2021.10.20: https://github.com/AveYo/MediaCreationTool.bat now open for interaction
Not just an Universal MediaCreationTool wrapper script with ingenious support for business editions,
A powerful yet simple windows 10 / 11 deployment automation tool as well!
This document will guide you through the process of setting up your online.net network addresses, DNS servers and rDNS records. For IPv4 we will use systemd-networkd (part of systemd) and odhcp6c (OpenWrt embedded DHCPv6-client) together with iproute2 for IPv6. For DNS we'll use systemd-resolved.
systemd is the default init process on Arch Linux, Debian GNU/Linux, Fedora, Ubuntu and more. iproute2 is also preinstalled there. So, if you're using a distribution that uses systemd, this tutorial should work for you. If you're using Gentoo Linux first make sure that you're using systemd.
[ Update 2020-05-31: I won't be maintaining this page or responding to comments anymore (except for perhaps a few exceptional occasions). ]
Most of the terminal emulators auto-detect when a URL appears onscreen and allow to conveniently open them (e.g. via Ctrl+click or Cmd+click, or the right click menu).
It was, however, not possible until now for arbitrary text to point to URLs, just as on webpages.
True fact: Mon server MariaDB s'est fait attaqué comme ça alors que le port dans l'iptable n'était pas ouvert.
def progress_bar(iteration, total, barLength=50): | |
percent = int(round((iteration / total) * 100)) | |
nb_bar_fill = int(round((barLength * percent) / 100)) | |
bar_fill = '#' * nb_bar_fill | |
bar_empty = ' ' * (barLength - nb_bar_fill) | |
sys.stdout.write("\r [{0}] {1}%".format(str(bar_fill + bar_empty), percent)) | |
sys.stdout.flush() | |
def bar_example(): | |
for i in range(20): |