Skip to content

Instantly share code, notes, and snippets.

View CreativeGP's full-sized avatar
☂️
𝕴 𝕱𝖊𝖊𝖑 𝕱𝖆𝖓𝖙𝖆𝖘𝖎𝖈

CreativeGP CreativeGP

☂️
𝕴 𝕱𝖊𝖊𝖑 𝕱𝖆𝖓𝖙𝖆𝖘𝖎𝖈
View GitHub Profile
@CreativeGP
CreativeGP / ab.png
Last active April 9, 2019 02:18
𝓜𝓎 𝕗𝓪𝒗૦𝕣𝐢𝕥𝒆 𝕥𝒆ⅹ𝕥 𝒆𝓭𝐢𝕥૦𝕣 😊
ab.png
@CreativeGP
CreativeGP / ab.gif
Last active April 9, 2019 02:02
Ԝ𝚎Iᴄ۵Μ𝚎 𝚝۵ Μ𝚢 ᴦ𝚎ρ۵ƽ𝗶𝚝۵ᴦ𝚢ⵑ
ab.gif
@CreativeGP
CreativeGP / code.java
Created March 26, 2019 12:38
[Prosessing Java]任意の画像を過度に抽象化したい!
PImage target;
void settings() {
target = loadImage("vs.png");
size(target.width*2+100, target.height);
}
void setup() {
target.loadPixels();
image(target, 0, 0);
@CreativeGP
CreativeGP / file0.txt
Created December 26, 2017 13:49
[Javascript] slice() と splice() の違い ref: https://qiita.com/CreativeGP/items/327d13b19dcf7a246e9f
let str = 'あいうえお';
let list = ['apples', 'bananas', 'oranges'];
let newlist = list.slice(0, -1);
// newlist === ['apples', 'bananas']
// list === ['apples', 'bananas', 'oranges']
list.splice(0, -1);
// list === ['apples', 'bananas']