Skip to content

Instantly share code, notes, and snippets.

View Gyumeijie's full-sized avatar
🎯
Focusing

YuMeiJie Gyumeijie

🎯
Focusing
View GitHub Profile
@Gyumeijie
Gyumeijie / sed-cheatsheet
Last active December 29, 2022 12:51 — forked from ssstonebraker/sed cheatsheet
Sed Cheatsheet
FILE SPACING:
# double space a file
sed G
# double space a file which already has blank lines in it. Output file
# should contain no more than one blank line between lines of text.
sed '/^$/d;G'
@Gyumeijie
Gyumeijie / cut-filename
Last active February 28, 2018 08:06
Remove suffix of batch files
# We first get a list of file with suffix
# and then use `cut` utility to split the
# full filename into a name and suffix using
# dot as delimiter.
cut -f1 -d'.' <<<$(ls *.*)
@Gyumeijie
Gyumeijie / bash-command-line
Last active January 30, 2018 09:12
The command line arg V.S The standard input of a command
In most case, if a command takes a file name as a command line arg, we can also use the content of
the file as the standard input of a command, the two ways have the same effect.
For example, a directory contains the following files:
example1.txt
example2.txt
example3.txt
example4.txt
example5.txt
@Gyumeijie
Gyumeijie / babel
Last active March 1, 2018 09:28
using babel
Assumme that we have already installed babel-cli command using `npm install --global babel-cli`.
1. Configuration .babelrc, the basic format of this file is shown as the following:
{
"presets": [],
"plugins": []
}
2. Install some plunins
@Gyumeijie
Gyumeijie / npm-run-srcipt
Last active February 28, 2018 08:09
npm
npm run-script <command> [--silent] [-- <args>...] alias: npm run
Given the following package.json snippet:
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d dist",
"run": "node dist/main.js"
}
There are two kinds of statements:
1. Rulesets (or rules) that, as seen, associate a collection of CSS declarations to a condition described by a selector.
2. At-rules that start with an at sign, '@', followed by an identifier and then continuing up the end of the statement,
Rulesets are the main building blocks of a style sheet, which often consists of only a big list of them.
But there is other information that a Web author wants to convey in the style sheet, like the character set,
other external style sheets to import, font face or list counter descriptions and many more.
@Gyumeijie
Gyumeijie / action
Last active March 9, 2018 11:37
Redux
action是一个对象,其中type属性是必须的,同时可以传入一些属性的数据。
action可以用actionCreactor进行创造,actionCreactor是一个函数,例如:
function addTodo(text) {
return {
type: ADD_TODO,
text
}
}
dispatch就是把action对象发送出去, 结合Action Creator发送动作的代码可以这样写
@Gyumeijie
Gyumeijie / JSX
Last active March 1, 2018 13:40
React
Babel compiles JSX down to React.createElement() calls.
const element = ( const element = React.createElement(
<h1 className="greeting"> 'h1', -----> element
Hello, world! {className: 'greeting'}, -----> props of the element
</h1> 'Hello, world!' -----> children(include element and text node)
); );
也就是说在jsx文件中类似<li>{number}</li>的不要将其看成是html结构而是对React.createElement的调用
###Arrow functions do not have this, arguments or other special names bound at all###
when the object is being created the name this is found in the enclosing scope.
name="YMJ"
var person = {
name: "ymj",
shout: () => console.log("my name is ", this.name)
}
@Gyumeijie
Gyumeijie / Array
Last active March 9, 2018 05:20
usage of some important javascript functions
1. Array.reduce
有初始值:
If an initialValue was provided in the call to reduce, then previousValue will be equal to initialValue
and currentValue will be equal to the first value in the array.
没有初始值:
If no initialValue was provided, then previousValue will be equal to the first value in the array
and currentValue will be equal to the second
一般数值的用法: