🏳️⚧️
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
getEmoji("fedi.fun"); | |
function loadJSON(url, callback) { | |
var xhr = new XMLHttpRequest(); | |
xhr.overrideMimeType("application/json"); | |
xhr.open("GET", url, true); | |
xhr.onreadystatechange = function () { | |
if (xhr.readyState === 4 && xhr.status === 200) { | |
callback(xhr.responseText); | |
} |
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
FROM ubuntu | |
USER root | |
ENV DISPLAY="192.168.50.1:0.0" | |
ENV PULSE_SERVER="192.168.50.1" | |
ENV TZ=Europe/Warsaw | |
ENV HOME /home/steam | |
RUN dpkg --add-architecture i386 |
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
#!/bin/sh | |
docker run --cap-add=SYS_NICE --network=steam --rm -it -v /home/steam:/home/steam --device /dev/dri --userns=keep-id --ip 192.168.50.10 ubuntu/steam $* |
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
--[[ | |
Developed by @GamePlayer-8 | |
on | |
AERO KIANIT LICENSE 1.0 | |
]]-- | |
--[[ Abanboned - Replaced by C version ]]-- | |
function file_exists(name) | |
local f=io.open(name,"r") |
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
# Comment | |
!catch core | |
VARIABLE = [ test test2 ] | |
RAM_VARIABLE = VARIABLE[0] | |
SWAP_VARIABLE = [] |
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
;Comment | |
;/ | |
Long comment | |
/; | |
catch['assembly'] ;base library load | |
set[x]=calc[1 + 1].set[y]=calc[get[x] - 5] |
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
set $motionweb <MOTION WEBPORT>; | |
set $motionstream <MOTION STREAMPORT>; | |
set $motionip <MOTION IP>; | |
location /motion/ { | |
add_header Access-Control-Allow-Origin *; | |
proxy_pass http://$motionip:$motionweb/; | |
proxy_set_header Host $host; | |
proxy_set_header X-Forwarded-Proto $scheme; | |
proxy_http_version 1.1; |
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
set $piholeip <PIHOLE IP>; | |
set $piholeport <PIHOLE PORT>; | |
location /pihole/ { | |
proxy_redirect /admin/ /pihole/; | |
proxy_pass http://$piholeip:$piholeport/admin/; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_read_timeout 90; |
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
set $cupsip <CUPS IP>; | |
set $cupsport <CUPS PORT>; | |
location /cups/ { | |
add_header Access-Control-Allow-Origin *; | |
proxy_pass http://$cupsip:$cupsport/; | |
proxy_set_header Accept-Encoding ""; | |
proxy_pass_request_headers on; | |
proxy_redirect / /cups/; | |
sub_filter 'http://' 'https://'; |
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
set $gottyip <GoTTY IP>; | |
set $gottyport <GoTTY PORT>; | |
location /tty/ { | |
proxy_pass https://$gottyip:$gottyport/; | |
proxy_set_header Host $host; | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Accept-Encoding ""; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_http_version 1.1; |
OlderNewer