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
| -- Arguements and Arg Checking | |
| local tArgs = { ... } | |
| if #tArgs ~= 1 then | |
| print( "Usage: tunnel <length>" ) | |
| return | |
| end |
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
| Mouse Wheel: | |
| Step Size: 86 | |
| Smoothness-Forepart: 18.00 | |
| Smoothness: 55.17 | |
| Acceleration: 20 | |
| Keyboard: | |
| Step Size: 112 | |
| Smoothness-Forepart: 25.51 | |
| Smoothness: 55.17 |
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
| ### Running in a docker container to make sure of a clean environment ### | |
| rx14@RX14-XUB:~$ docker run -it rx14/baubles /bin/bash | |
| root@b31549a8d6d5:/# git clone https://github.com/Azanor/Baubles.git /baubles | |
| Cloning into '/baubles'... | |
| remote: Counting objects: 865, done. | |
| remote: Compressing objects: 100% (24/24), done. | |
| remote: Total 865 (delta 6), reused 0 (delta 0) | |
| Receiving objects: 100% (865/865), 3.55 MiB | 46.00 KiB/s, done. | |
| Resolving deltas: 100% (359/359), done. |
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
| rx14@RX14-XUB:/data/programming/mcp909$ ./decompile.sh | |
| == MCP 9.04 (data: 9.09, client: 1.8, server: 1.8) == | |
| "scalac" is not found on the PATH. Scala files will not be recompiled | |
| # found wine, ff, ff patches, srgs, name csvs, doc csvs, param csvs, astyle config, rg, ss | |
| Looking in /home/rx14/.minecraft/versions for mc installs... OK | |
| Copying assets... OK | |
| Parsing JSON file... OK | |
| Looking for minecraft main jar... Not found | |
| Copying minecraft main jar... OK | |
| > Checking libraries... |
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
| <rx14> | i | |
| <rx14> | am | |
| <rx14> | pissed | |
| <VicNightfall> | rx14: The Microsoft deal eh? | |
| <rx14> | yup | |
| <rx14> | i'm probably more pissed with CPW | |
| <VicNightfall> | I'm okay with it as long as they don't interfere and others that decided to quit just for their morals. As far as i can see MS haven't done anything worse than any other company. Hell VS2013 and C# are awesome. | |
| <Ecu> | Well. | |
| <Ecu> | Now.. we get to see what MS will do with MC. | |
| <rx14> | reading twitter while walking home from school |
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 type = 0; | |
| if (prefix.contains("!")) { | |
| type = 1; | |
| if (prefix.contains("@")) { | |
| type = 2; | |
| } | |
| } | |
| switch (type) { | |
| case 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
| 192.168.0.210 RX-SRV0-Soaryn | |
| 192.168.0.211 RX-SRV1-RPi |
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
| Feature: Quiz | |
| In order to test my maths skills | |
| As a student | |
| I want to be able to take an arithmetic quiz | |
| Scenario: Collect user info | |
| Given I visit the url "/quiz" | |
| And I fill in "Test" for "firstname" | |
| And I fill in "User" for "lastname" | |
| When I press "Start Test" |
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
| allprojects { | |
| afterEvaluate { project -> | |
| println "Transforming version specifier $project.version into ${project.version}.$System.env.BUILD_NUMBER" | |
| project.version = "${project.version}.$System.env.BUILD_NUMBER" | |
| } | |
| } |
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
| public void poll() | |
| { | |
| List<ChatEvent> events = new ArrayList<>(); | |
| for (ISteph steph : stephs) | |
| while (steph.moveNextEvent()) | |
| events.add(steph.getCurrentEvent()); | |
| for (ChatEvent event : events) | |
| for (IMessageHandler handler : handlers) |
OlderNewer