I hereby claim:
- I am amazingant on github.
- I am amazingant (https://keybase.io/amazingant) on keybase.
- I have a public key whose fingerprint is EBAF 1D9C B975 15EC 4BA5 F334 7A60 14E3 165D 4E15
To claim this, I am signing this object:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> | |
<html> | |
<head> | |
<title>Frame page</title> | |
</head> | |
<frameset rows="100,*"> | |
<frame name="top" src="otherpage.html"> | |
<frame name="bottom" src="otherpage.html"> | |
</frameset> | |
</html> |
#!/bin/sh | |
exec tail -n +3 $0 | |
menuentry 'Vanilla Kernel' { | |
VanillaVersion="3.9.8" | |
RootPartition="12345678-9abc-def0-1234-56789abcdef0" | |
load_video | |
set gfxpayload=keep | |
insmod gzio |
{- | |
- Fast doubling Fibonacci algorithm | |
- Copyright (c) 2011 Nayuki Minase | |
- | |
- http://nayuki.eigenstate.org/page/fast-fibonacci-algorithms | |
-} | |
-- fibonacci n = F(n) | |
fibonacci :: Integer -> Integer |
.global-nav-inner { | |
background-color: #2f2f2f; | |
} |
module FParsec.Binary | |
open System | |
open System.Text | |
open System.Text.RegularExpressions | |
open FParsec | |
[<RequireQualifiedAccess>] | |
module File = | |
let readAllString path = |
(* | |
* Copyright 2014 Anthony Perez (@amazingant) | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
diff --git a/config/initializers/1_settings.rb b/config/initializers/1_settings.rb | |
index f55e69c..b6f1ad9 100644 | |
--- a/config/initializers/1_settings.rb | |
+++ b/config/initializers/1_settings.rb | |
@@ -10,11 +10,7 @@ class Settings < Settingslogic | |
private | |
def build_gitlab_shell_ssh_path_prefix | |
- if gitlab_shell.ssh_port != 22 | |
- "ssh://#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}:#{gitlab_shell.ssh_port}/" |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# To use this script, go into your GitHub account settings, go into the | |
# Applications section, and then under `Personal access tokens` click | |
# `Generate new token`. Name the token whatever you want, give it access | |
# to the `repo` and `public_repo` scopes (`user` and `gist` are also | |
# selected by default, but you don't need them for this). | |
# | |
# Take the generated token and store it in your personal .gitconfig | |
# (located at either ~/.gitconfig or ~/.config/git/config on OSX/*nix) |
type FatalError(message: string) = | |
inherit System.Attribute() | |
member __.Message = message | |
type Errors = | |
| [<FatalError("The value specified is currently not available")>] UnknownValue | |
| NotAnError | |
let PrintErrorMessage : Errors -> string = | |
fun err -> |