آبانا آباندخت آبگین آبگینه آبنوس آبین آبینه آپام آپاما
This file contains 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
addEventListener( | |
"fetch", event => { | |
let url = new URL(event.request.url); | |
url.hostname = "Your-Replit-Address"; | |
url.protocol = "https"; | |
let request = new Request(url, event.request); | |
event.respondWith( | |
fetch(request) | |
) | |
} |
This file contains 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
echo "attak,ip,city,location" > attak.txt && while read -r line; do myvar=$(echo "$line" | cut -d " " -f2) && echo "$line,$(geoiplookup "$myvar"|cut -d":" -f2)" || break; done<ipblock.txt | sed 's/\s/,/g'| sed 's/,,/,/g' >> attak.txt |
A quick guide on how to setup a GPU-Passthorugh. Below are some of my Resources
- https://wiki.archlinux.org/index.php/PCI_passthrough_via_OVMF
- https://www.evonide.com/non-root-gpu-passthrough-setup/
- https://dominicm.com/gpu-passthrough-qemu-arch-linux/
The Arch Wiki is the goto place for additional information and performance tweaks like CPU-Pinning.
- IGPU or second dedicated GPU for Host system (unless you want to go the hard way and use one GPU for HOST and GUEST)
This file contains 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
func (w *WebRtcServer) CreateNewPeerConnection(offer webrtc.SessionDescription, userID uint32, sessionKey string) ( | |
*ClientConnection, webrtc.SessionDescription, error) { | |
answer := webrtc.SessionDescription{} | |
if len(offer.SDP) == 0 || offer.Type != webrtc.SDPTypeOffer { | |
return nil, answer, errors.New("invalid offer") | |
} | |
if len(sessionKey) == 0 { | |
return nil, answer, errors.New("invalid user token") | |
} |
This file contains 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
#! /usr/bin/env python3 | |
import requests | |
from bs4 import BeautifulSoup | |
from pprint import pprint | |
from furl import furl | |
import sys | |
from prettytable import PrettyTable | |
import getpass | |
def main(): |
This file contains 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
#This file auto-generated by Plank. | |
#2019-09-02T06:32:29+0000 | |
[PlankTheme] | |
#The roundness of the top corners. | |
TopRoundness=10 | |
#The roundness of the bottom corners. | |
BottomRoundness=10 | |
#The thickness (in pixels) of lines drawn. | |
LineWidth=1 |
This file contains 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
window.ssd headerbar.titlebar { | |
min-height: 0; | |
padding-top: 1.4px; | |
padding-bottom: 1.4px; | |
padding-left:10px; | |
padding-right:10px; | |
} | |
window.ssd headerbar.titlebar button.titlebutton { | |
min-height: 0; |
NewerOlder