flatpak override --filesystem=xdg-run/discord-ipc-\*
flatpak override --filesystem=xdg-run/discord-ipc-0
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 -e | |
| XDG_DATA_HOME="${XDG_DATA_HOME:-"$HOME/.local/share"}" | |
| branch="${1:-stable}" | |
| case "$branch" in | |
| stable) | |
| name=Discord | |
| ;; | |
| ptb) |
Note
If you're a foreign student or faculty member from another college visiting CU. This is probably not for you. Please refer to eduroam for cross-campus networking.
This documentation is intended for various students and faculty members of Chulalongkorn University attempting to access the internal campus network using a standard Freedesktop Linux system, such as a Raspberry Pi or a full PC running a modern Linux distribution.
re3/reVC is a re-implementation of Grand Theft Auto III and Vice City, using the librw RenderWare engine re-implementation.
While the original upstream has been taken down by Take 2 Interactve (smh), you can still download build a working version as long as you have the source code somewhere.
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
| // ==UserScript== | |
| // @name osu! Logo template | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.3 | |
| // @description try to take over the canvas! | |
| // @author oralekin, LittleEndu, ekgame | |
| // @match https://hot-potato.reddit.com/embed* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com | |
| // @grant none | |
| // ==/UserScript== |
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
| Object.defineProperty(exports, "__esModule", { value: true }); | |
| exports.restoreFs = exports.shimFs = void 0; | |
| let originalFsMethods = null; | |
| let lazyRestoreFs = () => { }; | |
| // optional Win32 file namespace prefix followed by drive letter and colon | |
| const windowsFullPathRegex = /^(\\{2}\?\\)?([a-zA-Z]):/; | |
| const upcaseDriveLetter = (s) => s.replace(windowsFullPathRegex, (_match, ns, drive) => `${ns || ''}${drive.toUpperCase()}:`); | |
| function shimFs(binary, fs = require('fs')) { | |
| if (originalFsMethods !== null) { | |
| return; |