- .ignore
- ClangFormatIJ
- CodeGlance
- CSV Editor
- File Manager
- Go
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.fontWeight": "normal", | |
// Controls the font size. | |
"editor.fontSize": 16, | |
// Controls the line height. Use 0 to compute the lineHeight from the fontSize. | |
"editor.lineHeight": 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
#use "topfind";; | |
#thread;; | |
(* Input from file *) | |
let input_file filename = | |
let file = open_in filename in | |
let rec input_lines result = | |
match input_line file with | |
| line -> input_lines (line :: result) | |
| exception _ -> |
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
version: 2.1 | |
commands: | |
buildimage: | |
description: "Build docker image" | |
steps: | |
- checkout | |
- setup_remote_docker | |
- run: | |
name: "Install git command" | |
command: "apk add git" |
I hereby claim:
- I am fujimaki-k on github.
- I am fujimakishouten (https://keybase.io/fujimakishouten) on keybase.
- I have a public key ASDNWsHCtsNxTEsZKRAMCf5R7Igk8I1TwE5Y31a8I5RxOgo
To claim this, I am signing this object:
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
#!/bin/sh | |
# vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: | |
set -C | |
BREW_COMMAND="brew" |
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 python3 | |
# vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: | |
import sys | |
print('<?xml version="1.0" encoding="UTF-8"?>') |
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
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=IntelliJ IDEA | |
Comment=Jetbrains IntelliJ IDEA IDE | |
Exec=/home/miki/bin/idea | |
Icon=/opt/jetbrains/idea/bin/idea.png | |
Terminal=false | |
Type=Application | |
Categories=Application;Development;IDE | |
NoDisplay=false |
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 main | |
import ( | |
"fmt" | |
"os" | |
"runtime" | |
"runtime/pprof" | |
) | |
func main() { |
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 main | |
import ( | |
"fmt" | |
"time" | |
) | |
// Throttling is provides throttling and exponential backoff calls. | |
func Throttling(weight int, rate int) { | |
if weight < 1 { |