case-sensitive ํ file system disk image ๋ฅผ ๋ง๋ค๊ณ , ์ด๋ฅผ mount ํด์ ์ฌ์ฉ
root ๊ถํ์ด ํ์์์
# reference: man hdiutil
# hdiutil -- manipulate disk images (attach, verify, create, etc)
# create <size_spec> <image>
| linters: | |
| fast: true | |
| enable: | |
| ## https://golangci-lint.run/usage/linters/#enabled-by-default | |
| - errcheck # checks unchecked errors | |
| - gosimple # simplify code | |
| - govet # examines Go source code and reports suspicious constructs | |
| - ineffassign # detect unused assign | |
| - staticcheck # cover Go vet edge cases | |
| - typecheck # type-checks Go code |
| import React from "react" | |
| import { graphql } from "gatsby" | |
| import Layout from "../components/layout" | |
| import SEO from "../components/seo" | |
| const Product = ({ data }) => ( | |
| <Layout> | |
| <SEO title={data.wordpressWpProduct.title} /> | |
| <h1>{data.wordpressWpProduct.edges[0].title}</h1> |
case-sensitive ํ file system disk image ๋ฅผ ๋ง๋ค๊ณ , ์ด๋ฅผ mount ํด์ ์ฌ์ฉ
root ๊ถํ์ด ํ์์์
# reference: man hdiutil
# hdiutil -- manipulate disk images (attach, verify, create, etc)
# create <size_spec> <image>
| use strict; | |
| use warnings; | |
| use Crypt::OpenSSL::RSA (); | |
| use HTTP::Tiny; | |
| use JSON; | |
| use MIME::Base64 'encode_base64url'; | |
| use Path::Tiny; | |
| sub encode_jwt { |
| ## role, priv and scope ## | |
| - role: ์ญํ | |
| - priv: ๊ถํ | |
| - scope: ๋ฒ์ | |
| `staff` ๋ `์ฌ์ฉ์์ ๋ณด์ด๋` ์ด ๊ฐ๋ฅํ๋ค. | |
| `aanoaa` ๋ `staff` ์ด๋ค. | |
| `aanoaa` ๋ `์ฌ์ฉ์์ ๋ณด์ด๋` ์ ํ ์ ์๋ค. |
| oops |
| #!/usr/bin/env perl | |
| my @content = split /\n/, join '', <DATA>; | |
| print $content[int(rand(scalar @content))], "\n"; | |
| __DATA__ | |
| de-misunderestimating | |
| XUPPERNAMEX, WE WENT OVER THIS. EXPANDTAB. | |
| XUPPERNAMEX, WE WENT OVER THIS. C++ IO SUCKS. | |
| Some shit. | |
| add actual words | |
| I CAN HAZ COMMENTZ. |
| # https://github.com/kraih/mojo/blob/master/.perltidyrc | |
| -pbp # Start with Perl Best Practices | |
| -w # Show all warnings | |
| -iob # Ignore old breakpoints | |
| -l=79 # 79 characters per line | |
| -mbl=2 # No more than 2 blank lines | |
| -i=4 # Indentation is 4 columns | |
| -ci=4 # Continuation indentation is 4 columns | |
| -vt=0 # Less vertical tightness | |
| -sbt=2 # High square bracket tightness |
| ;; This buffer is for notes you don't want to save, and for Lisp evaluation. | |
| ;; If you want to create a file, visit that file with C-x C-f, | |
| ;; then enter the text in that file's own buffer. | |
| color-theme-solarized-20130307.1350 | |
| erc-hl-nicks-20130114.1648 |
| (setenv "PERL5LIB" (concat "./lib:" (getenv "PERL5LIB"))) | |
| (setenv "PATH" (concat (getenv "HOME") "/.plenv/shims:" (getenv "HOME") "/.plenv/bin:" (getenv "PATH"))) | |
| (setq exec-path (cons (concat (getenv "HOME") "/.plenv/shims") (cons (concat (getenv "HOME") "/.plenv/bin") exec-path))) | |
| (require 'plenv) ; <M-x> package-install plenv | |
| (plenv-global "5.18.1") | |
| (defun flymake-perl-init () | |
| (let* ((temp-file (flymake-init-create-temp-buffer-copy | |
| 'flymake-create-temp-with-folder-structure)) | |
| (local-file (file-relative-name |