cd /Applications/AMPPS/www
git clone https://github.com/longxinH/xhprof
| import React from "react"; | |
| import ReactDOM from "react-dom"; | |
| // | |
| const PersonOne = () => { | |
| const [feeling, setFeeling] = React.useState("normal"); | |
| const handleOnChangeFeeling = feeling => { | |
| setFeeling(feeling); | |
| }; | |
| return ( | |
| <div> |
| 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' |
| http://xn--lcki7of.jp/149/ | |
| use | |
| list-style-image: url(data:0); |
| // ================================================== | |
| // Sticky header | |
| // ================================================== | |
| var timer = false; | |
| var waypoint = undefined; | |
| var paddingTop = 0; | |
| var window_width = 0; | |
| var $nav = $('.js-sticky'); | |
| function calNavHeight() { |