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
| execute %( | |
| CREATE TABLE "users" ( | |
| "id" blob(16) PRIMARY KEY NOT NULL, | |
| "username" varchar(16) UNIQUE | |
| ); | |
| ).squish | |
| execute %( | |
| CREATE TABLE "content" ( | |
| "sha1" blob(20) PRIMARY KEY NOT 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
| { | |
| "id": 1, | |
| "comment": null, | |
| "rating": null, | |
| "created_at": "2015-09-06T23:41:22.974Z", | |
| "edited_at": null, | |
| "user": { | |
| "id": 1 |
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
| [ | |
| { | |
| "id": 1, | |
| "comment": null, | |
| "rating": null, | |
| "created_at": "2015-09-07T15:46:50.904Z", | |
| "edited_at": null, | |
| "user": { |
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
| require "socket" | |
| require "./gamemanj-irctadv/*" | |
| serv = TCPServer.new(6667) | |
| loop do | |
| socket = serv.accept | |
| spawn GameConnection.new(socket).run | |
| 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
| [ | |
| { | |
| "item": "minecraft:stick", | |
| "weight": 10, | |
| "minecraft:set_count": { | |
| "min": 1, | |
| "max": 3 | |
| } | |
| }, | |
| { |
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
| project.publishing { | |
| repositories { | |
| maven { | |
| name "Illyohs" | |
| url "http://mvn.rx14.co.uk/illyohs/" | |
| credentials { | |
| username = "illyohs" | |
| password = "whatever" | |
| } | |
| } |
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 org.apache.tools.ant.filters.ReplaceTokens | |
| if (!hasProperty("gradleDebug")) { | |
| ext.gradleDebug = "false" | |
| } | |
| task replaceTokens(type: Copy) { | |
| from 'src/main/java' | |
| into 'build/replacedSrc' | |
| filter(ReplaceTokens, tokens: [DEBUG: gradleDebug]) |
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 fatal error has been detected by the Java Runtime Environment: | |
| # | |
| # SIGSEGV (0xb) at pc=0x00007f765e847e99, pid=8791, tid=140146380257024 | |
| # | |
| # JRE version: Java(TM) SE Runtime Environment (8.0_66-b17) (build 1.8.0_66-b17) | |
| # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.66-b17 mixed mode linux-amd64 compressed oops) | |
| # Problematic frame: | |
| radeon: mmap failed, errno: 12 | |
| # C [libc.so.6+0x90e99] __memcpy_sse2_unaligned+0x29 |
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
| require "../flag.cr" | |
| class ExecuteFlag < Blerp::CommandFlag | |
| @name = :execute | |
| @key = "-e" | |
| @description = "EXECUTE SOMETHING" | |
| def processor(parser, data) | |
| command = data.has_key?(:opposite) ? "nothing" : "something" | |
| output = MemoryIO.new |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.