- gig economy /sharing economy 打零工
- pod 豆荚 工位
- head & shoulders 头和肩膀(海飞丝)
- rain cats and dogs 倾盆大雨,风雨交加
- 网红 kol(key opinion leader) net influencer
- 学小词
- 随时学习,信手拈来
- 理解文化
- 好的素材(小说,杂志)
| { | |
| "emojis": [ | |
| {"emoji": "👩👩👧👧", "name": "family_mothers_two_girls", "shortname": "", "unicode": "", "html": "👩‍👩‍👧‍👧", "category": "p", "order": ""}, | |
| {"emoji": "👩👩👧👦", "name": "family_mothers_children", "shortname": "", "unicode": "", "html": "👩‍👩‍👧‍👦", "category": "p", "order": ""}, | |
| {"emoji": "👩👩👦👦", "name": "family_mothers_two_boys", "shortname": "", "unicode": "", "html": "👩‍👩‍👦‍👦", "category": "p", "order": ""}, | |
| {"emoji": "👨👩👧👧", "name": "family_two_girls", "shortname": "", "unicode": "", "html": "👨‍👩‍👧‍👧", "category": "p", "order": ""}, | |
| {"emoji": "👨👩👧👦", "name": "family_children", "shortname": "", "unicode": "", "html": "👨‍👩‍👧‍👦", "category": "p", "order": ""}, | |
| {"emoji": "👨👩👦👦", "name": "family_two_boys", "shortname": "", "unicode": "", "html": "👨&zw |
- gig economy /sharing economy 打零工
- pod 豆荚 工位
- head & shoulders 头和肩膀(海飞丝)
- rain cats and dogs 倾盆大雨,风雨交加
- 网红 kol(key opinion leader) net influencer
# 下载安装
php -r "readfile('https://getcomposer.org/installer');" > composer-setup.php
php composer-setup.php
php -r "unlink('composer-setup.php');"
## 更改为composer
sudo mv composer.phar /usr/local/bin/composer
# 常用命令
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Demo</title> | |
| <style type="text/css"> | |
| * { | |
| box-sizing: border-box; | |
| } | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> | |
| <style type="text/css"> | |
| .flex-container { | |
| display: flex; | |
| display: -webkit-flex; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> | |
| <style> | |
| .flex-container { | |
| display: -webkit-flex; | |
| display: flex; | |
| -webkit-flex-flow: row wrap; |
| 'use strict'; | |
| var gulp = require('gulp'); | |
| var gutil = require('gulp-util'); | |
| var del = require('del'); | |
| var uglify = require('gulp-uglify'); | |
| var gulpif = require('gulp-if'); | |
| var exec = require('child_process').exec; | |
| var notify = require('gulp-notify'); |
| php artisan --help OR -h | |
| php artisan --quiet OR -q | |
| php artisan --version OR -V | |
| php artisan --no-interaction OR -n | |
| php artisan --ansi | |
| php artisan --no-ansi | |
| php artisan --env | |
| // -v|vv|vvv Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug | |
| php artisan --verbose |