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
| --- a | |
| +++ b | |
| @@ -543,7 +543,6 @@ | |
| memdisk | |
| modules | |
| nbd | |
| - nfsroot | |
| overlaytmpfs | |
| overlaytmpfsflags | |
| panic |
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
| # Run steamlink without flatpack | |
| # Fix error : package/bin/steamlink: symbol lookup error: package/bin/steamlink: undefined symbol: _ZN7QWidget15controllerEventEP16QControllerEvent, version Qt_5 | |
| PATCH_BASE_URL := https://raw.githubusercontent.com/flathub/com.valvesoftware.SteamLink/beta | |
| all: package | |
| cp --preserve=links qt-everywhere-src-5.14.1/qtbase/lib/*.so* package/lib | |
| cp --preserve=links qtsvg-everywhere-src-5.14.1/lib/*.so* package/lib | |
| cp -r qt-everywhere-src-5.14.1/qtbase/plugins/platforms package/bin |
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
| #include <windows.h> | |
| #include <stdio.h> | |
| SERVICE_STATUS ServiceStatus; | |
| SERVICE_STATUS_HANDLE hStatus; | |
| STARTUPINFO sInfo; | |
| PROCESS_INFORMATION pInfo; | |
| char* applicationPath = NULL; |
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 | |
| IP_address=`curl -s -X POST "http://livebox/sysbus/NMC:getWANStatus" | jq -r ".data.IPAddress"` | |
| echo "Public IP address : ${IP_address}" |
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
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileNotFoundException; | |
| import java.io.FileReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| public class 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
| <?php | |
| function gmp_shiftr($x,$n) | |
| { | |
| return gmp_div($x ,gmp_pow(gmp_init("2"), $n)); | |
| } | |
| function SteamIDToGUID($steamid) | |
| { | |
| $_steamid = gmp_init($steamid); | |
| $_build = ""; |
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
| /* | |
| Build : | |
| gcc $(pkg-config --cflags --libs gtk+-3.0 webkit2gtk-4.0) webkit.c -o webkit | |
| By StidOfficial | |
| */ | |
| #include <string.h> | |
| #include <gtk/gtk.h> |