-
Restart in Recovery Mode
Restart your Mac then hold down the Command & R keys together until you're in the Recovery Mode menu
-
Click on Utilities then select: Startup Security Utility
๐ค
If you havenโt worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:
- We define variables with
letandconststatements. For the purposes of the React documentation, you can consider them equivalent tovar. - We use the
classkeyword to define JavaScript classes. There are two things worth remembering about them. Firstly, unlike with objects, you don't need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value ofthisin a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/Jav
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RN < 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache | |
| RN >= 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache | |
| RN >= 0.63 - watchman watch-del-all && rm -rf node_modules && npm install && rm -rf /tmp/metro-* && npm run start --reset-cache | |
| npm >= 5 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache verify && npm install && npm start -- --reset-cache | |
| Windows - del %appdata%\Temp\react-native-* & cd android & gradlew clean & cd .. & del node_modules/ & npm cache clean --force & npm install & npm start -- --reset-cache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ go test -run ^$ -bench Benchmark -count 10 | tee sprint1.txt | |
| goos: darwin | |
| goarch: amd64 | |
| pkg: github.com/9bow/go-test-bmt-float32-to-str | |
| cpu: Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz | |
| BenchmarkFormatFloatPWithJoin-16 7291 138532 ns/op 69585 B/op 2050 allocs/op | |
| BenchmarkFormatFloatPWithJoin-16 9146 135195 ns/op 69584 B/op 2050 allocs/op | |
| BenchmarkFormatFloatPWithJoin-16 8947 135255 ns/op 69584 B/op 2050 allocs/op | |
| BenchmarkFormatFloatPWithJoin-16 8982 134507 ns/op 69584 B/op 2050 allocs/op | |
| BenchmarkFormatFloatPWithJoin-16 8881 133829 ns/op 69585 B/op 2050 allocs/op |
AWS ํ์ต ๋งํฌ์ง ์๋ฆฌ์ฆ
- AWS ํ์ต ์๋ฃ์ง http://bit.ly/aws-study-resource
- AWS ๊ณต์ธ ์๋ฃจ์ ์ค ์ํคํ ํธ - ์ด์์์์ดํธ ์ํ ๊ฐ์ด๋ http://bit.ly/sacertguide
- AWS ๊ณต์ธ ๊ฐ๋ฐ์ - ์ด์์์์ดํธ ์ํ ๊ฐ์ด๋ http://bit.ly/devcertguide
- AWS ๋ณด์ ๊ด๋ จ ์ปจํ ์ธ ๋ชจ์์ง http://bit.ly/seccontents
AWS ๊ณต์ธ ๊ฐ๋ฐ์ - ์ด์์์์ดํธ ์ํ ๊ฐ์ด๋(http://bit.ly/devcertguide)
ย ย ย a. Boot into recovery using command-R during reboot, wipe the harddrive using Disk Utility, and select reinstall macOS
ย ย ย b. Initial installation will run for approximately 1 hour, and reboot once
ย ย ย c. It will then show a remaining time of about 10-15 minutes
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "metadata": { | |
| "name": "", | |
| "signature": "sha256:f99925a6f73a1e36bc91415d84266705e3bdf72304d8dba7bcfb6c94ca7b270a" | |
| }, | |
| "nbformat": 3, | |
| "nbformat_minor": 0, | |
| "worksheets": [ | |
| { | |
| "cells": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.1' | |
| services: | |
| jenkins: | |
| image: jenkinsci/blueocean:latest | |
| restart: always | |
| ports: | |
| - 8080:8080 | |
| - 50000:50000 | |
| volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| language: ruby | |
| rvm: | |
| - 2.3.7 | |
| before_script: | |
| - gem install bundler | |
| script: bundle exec jekyll build | |
| after_success: | |
| - ./push.sh | |
| env: | |
| global: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| language: python | |
| python: | |
| - 3.5 | |
| install: | |
| - pip install sphinx sphinx_rtd_theme | |
| script: make html | |
| after_success: | |
| - ./push.sh | |
| env: | |
| global: |