Skip to content

Instantly share code, notes, and snippets.

@marocchino
marocchino / 094607.md
Last active July 19, 2022 14:25
ES6시대의 JavaScript

ES6시대의 JavaScript

안녕하세요. 사원사업부의 마루야마@h13i32maru입니다. 최근의 Web 프론트엔드의 변화는 매우 격렬해서, 조금 눈을 땐 사이에 점점 새로운 것이 나오고 있더라구요. 그런 격렬한 변화중 하나가 ES6이라는 차세대 JavaScript의 사양입니다. 이 ES6는 현재 재정중으로 집필시점에서는 Draft Rev31이 공개되어있습니다.

JavaScript는 ECMAScript(ECMA262)라는 사양을 기반으로 구현되어있습니다. 현재 모던한 Web 브라우저는 ECMAScript 5.1th Edition을 기반으로 한 JavaScript실행 엔진을 탑재하고 있습니다. 그리고 다음 버전인 ECMAScript 6th Edition이 현재 재정중으로, 약칭으로 ES6이라는 명칭이 사용되고 있습니다.

@dlfinis
dlfinis / examples-sed
Last active March 3, 2024 04:01
Examples of Sed' Use
The syntax of sed command replacement is:
$ sed 's/find/replace/' file
This sed command finds the pattern and replaces with another pattern. When the replace is left empty, the pattern/element found gets deleted.
Let us consider a sample file as below:
$ cat file
Linux
@brett-lempereur
brett-lempereur / get_history.js
Last active January 18, 2023 14:03
Script to extract browsing history metadata from Google Chrome and, where possible, associate it with a device when syncing is enabled.
/**
* get_history.js
*
* Script to extract browsing history metadata from Google Chrome and, where
* possible, associate it with a device when syncing is enabled.
*
* Usage:
* 1. Open Google Chrome
* 2. Navigate to the history page
* 3. Open the developer tools (Ctrl+Shift+i)
@sloanlance
sloanlance / GitHub emojicodes
Last active May 25, 2018 20:40
A JSON file of GitHub's emojicodes and emoji. Unlike other projects, this one includes the actual emoji and does not alter GitHub's list. (Short URL: https://goo.gl/S1Xdeu)
A JSON file of GitHub's emojicodes and emoji. Unlike other projects,
this one includes the actual emoji and does not alter GitHub's list.
Also included is a JSON file formatted for use with the Auto Text
Expander extension for Google Chrome, with text to be expanded based
on GitHub's ":EMOJICODE:".
See README.md for details.
@stephenhouser
stephenhouser / Bing-Image-Scraper
Last active January 21, 2025 01:42
Bing-Image-Scraper
Bing image scraper example using Python to query and scrape Microsoft Bing image search.
[
{
"key": "ctrl+1",
"command": "workbench.action.focusFirstEditorGroup"
},
{
"key": "ctrl+2",
"command": "workbench.action.focusSecondEditorGroup"
},
{
@tombigel
tombigel / README.md
Last active March 18, 2025 18:49 — forked from a2ikm/limit.maxfiles.plist
How to Change Open Files Limit on OS X and macOS Sierra (10.8 - 10.12)

How to Change Open Files Limit on OS X and macOS

This text is the section about OS X Yosemite (which also works for macOS Sierra) from https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/#mac-os-x

The last time i visited this link it was dead (403), so I cloned it here from the latest snapshot in Archive.org's Wayback Machine https://web.archive.org/web/20170523131633/https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/

Mac OS X

To check the current limits on your Mac OS X system, run:

HANDY ONE-LINE SCRIPTS FOR AWK 30 April 2008
Compiled by Eric Pement - eric [at] pement.org version 0.27
Latest version of this file (in English) is usually at:
http://www.pement.org/awk/awk1line.txt
This file will also be available in other languages:
Chinese - http://ximix.org/translation/awk1line_zh-CN.txt
USAGE:
@widdowquinn
widdowquinn / emacs_python_ide.md
Last active November 6, 2024 20:22
Turning Emacs into a Python IDE

Turning emacs into a Python IDE

## Create a new config/initialisation file

Create a user-level initialisation file init.el:

touch .emacs.d/init.el
@gw1108
gw1108 / keybindings.json
Created December 18, 2017 19:51
For use in keybindings.json in vscode and the vim plugin. Feel free to use this as reference.
// keybindings for VSCode and vim. Enables system clip board, classic cut, paste, copy, find, and select-all hotkeys.
{
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false,
"<C-c>": false,
"<C-v>": false,
"<C-x>": false