| Platform | URL | Catalog |
|---|---|---|
| Bitnami | https://bitnami.com | https://bitnami.com/stacks |
| Cloudron | https://www.cloudron.io | https://www.cloudron.io/store |
| Sandstorm | https://sandstorm.io | https://apps.sandstorm.io |
| YunoHost | https://yunohost.org | https://yunohost.org/#/apps |
| Univention App Center | https://www.univention.com | https://www.univention.com/products/univention-app-center/app-catalog |
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
| # Loads a scene in the background using a seperate thread and a queue. | |
| # Foreach new scene there will be an instance of ResourceInteractiveLoader | |
| # that will raise an on_scene_loaded event once the scene has been loaded. | |
| # Hooking the on_progress event will give you the current progress of any | |
| # scene that is being processed in realtime. The loader also uses caching | |
| # to avoid duplicate loading of scenes and it will prevent loading the | |
| # same scene multiple times concurrently. | |
| # | |
| # Sample usage: | |
| # |
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 | |
| # | |
| # adapted from https://gist.github.com/mitsuji/8397836 | |
| # | |
| # For usage, run without arguments | |
| # | |
| VM_NAME=$1 | |
| DVD_PATH=${2:---} | |
| OS_TYPE="${3:-${OS_TYPE:-RedHat_64}}" |
This guide explains how to connect to freenode channels via matrix, using riot.im.
-
matrix.org runs a public freenode bridge.
-
channels follow the pattern #freenode_#channel:matrix.org, so if you wanted to join #python on freenode, you'd type '#freenode_#python:matrix.org' into the join channel box in riot.im.
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
| # Simple Utility Script | |
| # Traps Mouse Cursor and hides it. | |
| # ESCAPE to quit game | |
| # F5 to reload current scene | |
| # F9 to toggle collision shape dispay. Scene MUST be reloaded | |
| # F10 to toggle fps Display | |
| # F11 to switch from windowed to fullscreen | |
| # F12 to take screenshot | |
| # | |
| # Works great for fps games |
** Step 1 **
Install ffmpeg with the vidstab plugin.
- OSX: Install via Homebrew -
brew install ffmpeg --with-libvidstab - Linux: download binaries here (vidstab included)
- Windows: download binaries here (vidstab included)
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 Saliens Hack | |
| // @description Saliens Hack for Steam Summer Sale 2018 Game - AutoSelect Planet, Invincibility, InstaKill | |
| // | |
| // @author Cory "mbsurfer" Shaw | |
| // @namespace http://github.com/coryshaw1 | |
| // @downloadURL https://gist.github.com/coryshaw1/ed51d13baa8191f53f489b9de25cc868/raw/b4807713964a9b67e1b8d7837256845b078a51c6/saliensHack.user.js | |
| // | |
| // @license GPLv3 - http://www.gnu.org/licenses/gpl-3.0.txt | |
| // @copyright Copyright (C) 2018, by Cory Shaw |
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
| setInterval(function(){ | |
| if (!gGame || !gGame.m_State || !gGame.m_State.m_EnemyManager) return; | |
| if (!gGame.m_State.m_EnemyManager.m_EnemyData) return; | |
| gGame.m_State.m_EnemyManager.m_EnemyData.slime.base_health = gGame.m_State.m_EnemyManager.m_EnemyData.volvoian.base_health = gGame.m_State.m_EnemyManager.m_EnemyData.neomorph.base_health = 1; | |
| gGame.m_State.m_EnemyManager.m_EnemyData.slime.base_damage = gGame.m_State.m_EnemyManager.m_EnemyData.volvoian.base_damage = gGame.m_State.m_EnemyManager.m_EnemyData.neomorph.base_damage = 0 | |
| if (!gGame.m_State.m_EnemyManager.m_rgEnemies) return; |
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
| // Unlock all cooldowns | |
| CCooldownHandler.prototype.BAttack = function() { | |
| return true; | |
| } |