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
series: | |
- Tokyo Ghoul: | |
seasons: | |
- 2: "Tokyo Ghoul Root A" |
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
secrets: secrets.yml | |
templates: | |
global: | |
parsing: | |
series: guessit | |
torrent: | |
transmission: | |
host: localhost |
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
# Ignore everything | |
/* | |
#except: | |
# Source | |
!/src/ | |
# Readme | |
!/README |
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-chibi> http://i.imgur.com/oVzmIhp.png | |
<RX14-chibi> http://i.imgur.com/6MPYP7Z.png | |
<RX14-chibi> http://i.imgur.com/XfEKUkD.png | |
<RX14-chibi> http://i.imgur.com/Dc8ZoXJ.png | |
<RX14-chibi> http://i.imgur.com/TwU1UKJ.png | |
<RX14-chibi> http://i.imgur.com/PjpiqoG.png | |
<RX14-chibi> http://i.imgur.com/EX2v4Mf.png |
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 Dependency[] getDependencies() { | |
return Arrays.asList( | |
new MavenDependency("com.nova:NovaThingy:1.5"), | |
new URLDependency("http://github.com/My/Project/release/wahtever") | |
) | |
} |
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 nova.core.deps; | |
import java.net.URL; | |
/** | |
* //TODO | |
* | |
* @author rx14 | |
*/ | |
public interface Dependency { |
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
// just to close the streams... | |
try (ReadableByteChannel channel = Channels.newChannel(connect.getInputStream()); | |
FileOutputStream outStream = new FileOutputStream(outFile)) | |
{ | |
outStream.getChannel().transferFrom(channel, 0, Long.MAX_VALUE); | |
outStream.flush(); | |
} |
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 "bundler" | |
require "open-uri" | |
require "json" | |
require "benchmark" | |
Bundler.require | |
def parse_link_xml(link_xml) | |
link = {} | |
link[:type] = link_xml.text |
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
console.log('Loading event'); | |
var url = require("url"); | |
var http = require("http"); | |
exports.handler = function(event, context) { | |
var body = JSON.stringify(event.body); | |
event.handlers.forEach(function(handler) { | |
var thisURL = url.parse(handler.url); |
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
#!/usr/bin/env ruby | |
#USAGE: ./gradle-domain-debug.rb <gradle --debug log file> | |
#EXAMPLE: ./gradle-domain-debug.rb .gradle/gradle.log | |
require "uri" | |
require "time" | |
file = File.new(ARGV[0]) | |
results = [] |