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
| $ sudo apt-get update | |
| ... # trunicated # ... | |
| Ign https://packagecloud.io jessie/main Translation-en | |
| Ign http://mirrordirector.raspbian.org jessie/contrib Translation-en_US | |
| Ign http://mirrordirector.raspbian.org jessie/contrib Translation-en | |
| Ign http://mirrordirector.raspbian.org jessie/main Translation-en_US | |
| Ign http://mirrordirector.raspbian.org jessie/main Translation-en | |
| Ign http://mirrordirector.raspbian.org jessie/non-free Translation-en_US | |
| Ign http://mirrordirector.raspbian.org jessie/non-free Translation-en | |
| Ign http://mirrordirector.raspbian.org jessie/rpi Translation-en_US |
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
| int main(int i){for(;i-5000;i++,puts("I will not use classes"));} |
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
| 5 FALSE = .:TRUE = NOT FALSE | |
| 10 HI=255: LO=0:DEV=56579:COMM=56577 | |
| 15 DIM D(7) | |
| 20 D(0)=1:D(1)=2:D(2)=4:D(3)=8 | |
| 22 D(4)=16:D(5)=32:D(6)=64:D(7)=128 | |
| 25 POKE DEV,HI:POKE COMM,LO | |
| 100 FOR X=0 TO 7: GOSUB 300:NEXT | |
| 200 FOR X=7 TO 1 STEP -1: GOSUB 300:NEXT | |
| 250 GOTO 100 |
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
| # *********************************************************************** | |
| # * BBS Link Script for Mystic BBS * | |
| # *********************************************************************** | |
| # * This script will allow you to run BBSlink from your system. * | |
| # * Installation: * | |
| # * (1) Go to http://www.bbslink.net and register! * | |
| # * (2) Locate the line below that says "BBS Auth Information". * | |
| # * Change the syscode, authcode, and schemecode to match what you * | |
| # * receive when you signed up. * | |
| # * (3) Install this script into your mystic /themes/default/scripts * |
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
| 100 REM**RANDOM NUMBERS** | |
| 200 REM**CLEAR THE SCREEN** | |
| 210 PRINT CHR$(147) | |
| 220 REM**GET A NUMBER** | |
| 240 PRINT "PRESS RETURN" | |
| 260 INPUT NUM | |
| 300 REM**PRINT RANDOM NUMBERS** | |
| 310 FOR N=1TO5 | |
| 315 V=INT(RND(0)*41)+5 | |
| 320 PRINT INT(V) |
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
| local component = require("component") | |
| local internet = require("internet") | |
| local shell = require("shell") | |
| local term = require("term") | |
| local text = require("text") | |
| local event = require("event") | |
| local gpu = component.gpu | |
| local w, h = gpu.getResolution() |
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
| function Invoke-Editor { | |
| [cmdletbinding()] | |
| [alias("edit")] | |
| param( | |
| [ValidateNotNullOrEmpty()] | |
| [string] $Path = $(throw "-Path is required"), | |
| [string] $Editor = "notepad" | |
| ) | |
| Invoke-Expression "$($Editor) $($Path)" |
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
| --- | |
| version: "3.7" | |
| volumes: | |
| mc-data: | |
| networks: | |
| default: | |
| external: true | |
| name: 'public' |
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
| ---- Minecraft Crash Report ---- | |
| WARNING: coremods are present: | |
| llibrary (llibrary-core-1.0.11-1.12.2.jar) | |
| Inventory Tweaks Coremod (InventoryTweaks-1.63.jar) | |
| BlurPlugin (Blur-1.0.4-14.jar) | |
| Quark Plugin (Quark-r1.5-167.jar) | |
| CTMCorePlugin (CTM-MC1.12.2-1.0.1.30.jar) | |
| ratscore (rats-3.2.6.jar) | |
| SecretRoomsMod-Core (secretroomsmod-1.12.2-5.6.4.jar) |
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
| PACKAGE_NAME := $(shell basename "$(shell pwd)") | |
| APP_PID := $(shell adb shell ps | awk -F q=$(PACKAGE_NAME) '$0 ~ q { print $2 }') | |
| APKFILE := app/build/outputs/apk/apk-debug.apk | |
| .PHONY: all clean build logs install | |
| all: build install logs | |
| build: | |
| @./gradlew assembleDebug |