Skip to content

Instantly share code, notes, and snippets.

View marocchino's full-sized avatar
๐Ÿ 
Working from home (7am~16pm JST)

marocchino

๐Ÿ 
Working from home (7am~16pm JST)
View GitHub Profile
@marocchino
marocchino / validate-dependabot.sh
Created February 18, 2021 21:56
validate dependabot yaml
#!/bin/bash
set -e
YAML=$(cat "${1:-.github/dependabot.yml}")
YAML="${YAML//$'\n'/\\n}"
YAML="${YAML//\"/\\\"}"
JSON="{\"config-file-body\": \"$YAML\"}"
curl -X "POST" "https://api.dependabot.com/config_files/validate" \
-H 'Host: api.dependabot.com' \
-H 'Referer: https://dependabot.com/docs/config-file/validator/' \
ExUnit.start()
ExUnit.configure(exclude: :pending, trace: true)
defmodule CostTest do
use ExUnit.Case
def cost([]), do: 0
def cost([_last]), do: 0
def cost([current | [next | tail]]) do
# frozen_string_literal: true
require 'benchmark/ips'
def fast
[1, 2].min.then { |m| [m, 3].min }
end
def slow
[1, 2, 3].min
@marocchino
marocchino / api.js
Created March 20, 2018 19:59
fetch monitor
someQuery(variables, { commit }) {
client.query(query, variables, { commit })
}

์›น ๋””์ž์ด๋„ˆ์—๊ฒŒ ์œ ์šฉํ•  ๋งŒํ•œ ๊ฒƒ๋“ค

์ด ๊ธ€์€ 2015๋…„์˜ ๋ฃจ๋น„ ์ฝ”๋ฆฌ์•„ ๋Œ€๋ฆผ๋‹ฌ๋ ฅ์„ ์œ„ํ•ด ์ž‘์„ฑ๋˜์—ˆ์Šต๋‹ˆ๋‹ค.

1. ํ˜„์žฌ ๋””๋ ‰ํ† ๋ฆฌ๋ฅผ ์„œ๋ฒ„๋กœ ๋„์šฐ๊ธฐ

html ํŒŒ์ผ์„ ์—ด๋•Œ ์ ˆ๋Œ€ ๊ฒฝ๋กœ๋ฅผ ์‚ฌ์šฉํ•œ๋‹ค๋˜๊ฐ€๋“ฑ์˜ ์ด์œ ๋กœ ์žฌ๋Œ€๋กœ ์•ˆ๋ณด์ผ ๋•Œ

@marocchino
marocchino / 12-04.md
Last active April 20, 2016 03:36
์ปคํ”ผ์Šคํฌ๋ฆฝํŠธ์—์„œ ๋ฐ”๋ฒจ๋กœ ์˜ฎ๊ธฐ๊ธฐ

์ปคํ”ผ์Šคํฌ๋ฆฝํŠธ์—์„œ ๋ฐ”๋ฒจ๋กœ ์˜ฎ๊ธฐ๊ธฐ

์ด ๊ธ€์€ 2015๋…„์˜ ๋ฃจ๋น„ ์ฝ”๋ฆฌ์•„ ๋Œ€๋ฆผ๋‹ฌ๋ ฅ์„ ์œ„ํ•ด ์ž‘์„ฑ๋˜์—ˆ์Šต๋‹ˆ๋‹ค.

๋ฃจ๋น„ ์ฝ”๋ฆฌ์•„์˜ ๋Œ€๋ฆผ ๋‹ฌ๋ ฅ๋„ ๋ฒŒ์จ 4์ผ์งธ์ž…๋‹ˆ๋‹ค. ์˜ค๋Š˜์€ ๋ฃจ๋น„ ์ด์•ผ๊ธฐ๋Š” ์•„๋‹ˆ๊ธด ํ•ฉ๋‹ˆ๋‹ค๋งŒ, ๋ ˆ์ผ์Šค์™€ ๊ด€๋ จ์žˆ๋Š” ์ด์•ผ๊ธฐ๋ฅผ ํ•ด๋ณผ๊นŒ ํ•ฉ๋‹ˆ๋‹ค.

๊ฐœ๋ฐœํ™˜๊ฒฝ ์„ค์ •ํ•˜๊ธฐ

http://brew.sh ์— ๋“ค์–ด๊ฐ€์„œ Install Homebrew ๋ฐ‘์— ๋ช…๋ น์–ด์„ ๋ณต์‚ฌํ•ด์„œ ํ„ฐ๋ฏธ๋„์— ๋ถ™์ž„.

๋…ธ๋“œ ์„ค์น˜

brew install node
@marocchino
marocchino / bench.rb
Created August 14, 2015 02:56
Array#* vs Array.new
require 'benchmark'
n = 500_000_000_000_000
Benchmark.bm do |x|
x.report { ["a"] * 10 }
x.report { Array.new(10, "a") }
end
# user system total real
# 0.000000 0.000000 0.000000 ( 0.000012)
@marocchino
marocchino / TIL.md
Created March 2, 2015 13:59
fish ์—์„œ RAILS_ENV ์‚ฌ์šฉํ•˜๊ธฐ

fish์—์„œ RAILS_ENVํ•˜๊ธฐ

์ด ๋ช…๋ น์€ fish์—์„œ ์“ธ ์ˆ˜ ์—†๋‹ค.

$ RAILS_ENV=test rake db:migrate

๋Š” ๊ฑด ์•Œ๊ณ  ์žˆ์—ˆ๋Š”๋ฐ.. ์˜ค๋Š˜ ๋งˆ์นจ ์ €๊ฑธ ํ• ์ผ์ด ์žˆ์–ด์„œ ์ฐพ์•„๋ณด์•˜๋‹ค.