I hereby claim:
- I am lae on github.
- I am lae (https://keybase.io/lae) on keybase.
- I have a public key whose fingerprint is C754 45F1 B43A AE4D 0C23 B0C7 7666 1664 6829 92EC
To claim this, I am signing this object:
| if ['2.3.8', '2.3.9', '2.3.10', '2.3.11', '2.3.12', '2.3.14'].include?(Rails.version) && Gem.available?('mongrel', Gem::Requirement.new('~>1.1.5')) && self.class.const_defined?(:Mongrel) | |
| # Pulled right from latest rack. Old looked like this in 1.1.0 version. | |
| # | |
| # def [](k) | |
| # super(@names[k] ||= @names[k.downcase]) | |
| # end | |
| # | |
| module Rack | |
| module Utils |
| #!/bin/sh | |
| # Check to see if the directory exists | |
| if [ ! -d $HOME/.ftb ] | |
| then | |
| mkdir $HOME/.ftb | |
| fi | |
| # Check to make sure the launcher is in the directory | |
| if [ ! -f $HOME/.ftb/FTB_Launcher.jar ] |
| AnalyticsBackgroundThread started FTBLaunch starting up (version 1.2.2) Java version: 1.7.0_17 Java vendor: Oracle Corporation Java home: /usr/lib/jvm/java-7-openjdk/jre Java specification: Java Virtual Machine Specification version: 1.7 by Oracle Corporation Java vm: OpenJDK 64-Bit Server VM version: 23.7-b01 by Oracle Corporation OS: amd64 Linux 3.8.4-1-ARCH [i18n] Checking for updates ... [i18n] enUS English language file loaded! | |
| [i18n] remoteVer = 10 | |
| [i18n] localVer = 10 | |
| [i18n] Files are up to date | |
| [i18n] Fallback enUS loaded | |
| [i18n] Added 0 enUS to options pane | |
| [i18n] Added 1 cyGB to options pane | |
| [i18n] Added 2 frFR to options pane | |
| [i18n] Added 3 ptBR to options pane | |
| [i18n] Added 4 ptPT to options pane |
| #!/usr/bin/env python2 | |
| # -*- coding: utf-8 -*- | |
| import yaml | |
| from datetime import datetime as dt | |
| import json | |
| import re | |
| import collections | |
| import bottle | |
| from bottle import HTTPError, request, response |
I hereby claim:
To claim this, I am signing this object:
| # coding: utf-8 | |
| # Let's challenge in my favorite language!! | |
| width, height = [int(i) for i in str(input()).split()] | |
| table = [[0 for y in range(height)] for x in range(width)] | |
| for line in range(height): | |
| for i, v in enumerate([int(i) for i in str(input()).split()]): | |
| table[i][line] = v | |
| for col in range(width): |
Dear backers,
I hope this update finds everyone well. I'd like to take this opportunity to apologise for the very infrequent updates and give you a overview of how Project Phoenix is going.
Although not exactly the way I wanted to run this project, our project is alive and it is under development.
| #!/bin/bash | |
| # Just print out the secrets file as-is if the password file doesn't exist | |
| if [ ! -r '.vault_password' ]; then | |
| cat | |
| exit | |
| fi | |
| CONTENT="$(cat)" | |
| # Store vault's stderr in RESULT and redirect encrypted stdout back to stdout | |
| { |