Skip to content

Instantly share code, notes, and snippets.

View iamssen's full-sized avatar
๐Ÿ„โ€โ™‚๏ธ

Seo Yeon, Lee iamssen

๐Ÿ„โ€โ™‚๏ธ
View GitHub Profile
@Curookie
Curookie / ์•Œ๊ณ ๋ฆฌ์ฆ˜.md
Last active February 28, 2025 00:20
๋„ˆ๋ฌด๋‚˜ ์ค‘์š”ํ•œ ์•Œ๊ณ ๋ฆฌ์ฆ˜
@asaaki
asaaki / 0___rust_serde_json_wasm_parcel___0.md
Last active January 28, 2023 14:14
Rust-to-JS JSON string exchange (parcel.js, wasm)

Rust, serde-json, wasm, parcel.js

With this combination it is fairly easy to get things done in Rust and utilize it in JavaScript. Yay!

@feo52
feo52 / index.html
Last active October 2, 2023 07:05
css hacks 2022
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<title>css hack</title>
<style>
body { font-family: monospace; }
summary { list-style: none; }
summary::-webkit-details-marker { display:none; }
@dreampiggy
dreampiggy / mov2webp.sh
Created March 6, 2017 05:31
ffmpeg MOV to Animated WebP
ffmpeg -i input.mov -vcodec libwebp -lossless 1 -q:60 -preset default -loop 0 -an -vsync 0 output.webp
@timneutkens
timneutkens / index.js
Last active February 14, 2025 21:45
Clear console/terminal in node.js the right way
const readline = require('readline')
const blank = '\n'.repeat(process.stdout.rows)
console.log(blank)
readline.cursorTo(process.stdout, 0, 0)
readline.clearScreenDown(process.stdout)
@mavieth
mavieth / media-query-template.css
Last active March 2, 2025 01:11
Media Query Template for Basic CSS
/**
* Basic CSS Media Query Template
* TODO: I should probably use Sass...
* Author: Michael Vieth
* ------------------------------------------
* Responsive Grid Media Queries - 1280, 1024, 768, 480
* 1280-1024 - desktop (default grid)
* 1024-768 - tablet landscape
* 768-480 - tablet
* 480-less - phone landscape & smaller
@kevincennis
kevincennis / v8.md
Last active May 4, 2025 04:02
V8 Installation and d8 shell usage

Installing V8 on a Mac

Prerequisites

  • Install Xcode (Avaliable on the Mac App Store)
  • Install Xcode Command Line Tools (Preferences > Downloads)
  • Install depot_tools
    • $ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
    • $ nano ~/.zshrc
    • Add path=('/path/to/depot_tools' $path)
@sukso96100
sukso96100 / sample_gradle_build_script.gradle
Last active August 29, 2015 14:01
Sample Gradle Build Script(Gradle ๋นŒ๋“œ ์Šคํฌ๋ฆฝํŠธ ์˜ˆ์ œ)
/* Gradle ๋นŒ๋“œ ์Šคํฌ๋ฆฝํŠธ ์˜ˆ์ œ
*
* ์•„๋ž˜ GitHub ์ €์žฅ์†Œ๋ฅผ ์ฐธ์กฐํ•˜์—ฌ ์ž‘์„ฑํ•˜์˜€์Šต๋‹ˆ๋‹ค.
* https://github.com/GDG-Korea/GradleCodeLab
*/
buildscript {
repositories {
//๋ฉ”์ด๋ธ ์ค‘์•™ ์ €์žฅ์†Œ๋ฅผ ์‚ฌ์šฉํ•˜๋„๋ก ๋ช…์‹œ
mavenCentral()
@whitingx
whitingx / meta-tags.md
Created October 5, 2012 16:41 — forked from kevinSuttle/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
@lancejpollard
lancejpollard / meta-tags.md
Created March 5, 2012 13:54
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">