Skip to content

Instantly share code, notes, and snippets.

View morishin's full-sized avatar
🦍
ウホホ

Shintaro Morikawa morishin

🦍
ウホホ
View GitHub Profile
@slightair
slightair / aa.rb
Last active April 24, 2022 07:26
eval (%w{ e=27 .chr
;put s("6 6663 3600
6214 5541 2600 633" .cha rs.m
ap{[ ")%# %%%% %%%# %"," )%#%
@alexpaul
alexpaul / CoreData-Saving-Array.md
Last active June 16, 2023 12:23
Core Data saving an array.

Core Data (Saving an array)

While saving an array to Core Data is supported, one of the first questions you will want to ask, if this array should be a relationship to another entity instead? It the answer is no, then continue reading on....

1. Core Data Model (Graphical Interface)

Set the attribute, in this case, the type you want to save as an array to Core Data supported type Binary Data

Example
attribute is hobbies

@lotz84
lotz84 / gist:fa26a4e51debd4797d7e0cf6ec0bb6dc
Created June 25, 2017 05:47
Ethereum上でのICOを実装するまでの道筋

環境設定

geth

Ethereum ブロックチェーンに接続するためのミドルウェア

$ # geth のインストール
$ brew install ethereum
@mdonkers
mdonkers / server.py
Last active June 25, 2024 18:48
Simple Python 3 HTTP server for logging all GET and POST requests
#!/usr/bin/env python3
"""
License: MIT License
Copyright (c) 2023 Miel Donkers
Very simple HTTP server in python for logging requests
Usage::
./server.py [<port>]
"""
from http.server import BaseHTTPRequestHandler, HTTPServer
@uiur
uiur / 0.md
Last active November 23, 2016 14:47
gyapc LT

cat image.png | filter | gyazo

画像を処理して遊んだり開発したりするときのtipsを共有します

自己紹介

@uiureo ウイウ

ネオ目黒ライン NEO MEGURO LINE

最近、ネオ目黒ラインというサービスを作りました

https://mesen-dot-uiu-server.appspot-preview.com/

@fabichirox
fabichirox / list.md
Last active August 29, 2015 14:23
2015/06/27 できるようになったこと

できるようになったこと

  • Curl コマンドの基礎
  • Curl コマンドでYo API
  • Yoall/
  • git commit
  • OSS commit
  • hubotをherokuで動かす
  • ssh key 設定
  • while true do done
//
// SimpleScrollingStack.swift
// A super-simple demo of a scrolling UIStackView in iOS 9
//
// Created by Paul Hudson on 10/06/2015.
// Learn Swift at www.hackingwithswift.com
// @twostraws
//
import UIKit
#! /usr/bin/env python
# -*- coding:utf-8 -*-
import concurrent.futures
import sys
import subprocess
import time
from collections import defaultdict
from data import sentences
@jiaaro
jiaaro / installing_pyaudio.md
Last active May 2, 2024 10:15
How to install PyAudio into a VirtualEnv on Mac OS X 10.10

Install portaudio using homebrew (or method of your choice)

brew install portaudio

create $HOME/.pydistutils.cfg using the include and lib directories of your portaudio install:

[build_ext]
@lotz84
lotz84 / Layout.swift
Last active August 29, 2015 14:07
Table layout in Swift
import UIKit
infix operator ||| { associativity left precedence 80 }
func ||| (lhs: Layout.Panel, rhs: Layout.Panel) -> Layout.Panel {
return Layout.Panel(forkType: .Horizontal , panel1: lhs, panel2: rhs)
}
infix operator --- { associativity left precedence 80 }
func --- (lhs: Layout.Panel, rhs: Layout.Panel) -> Layout.Panel {
return Layout.Panel(forkType: .Vertical , panel1: lhs, panel2: rhs)