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
| [ | |
| { | |
| "name": "b2c", | |
| "color": "bfd4f2" | |
| }, | |
| { | |
| "name": "b2b", | |
| "color": "bfd4f2" | |
| }, | |
| { |
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
| # Amazon Elastic Beanstalk | |
| ## Grand the access to node command | |
| 1. sudo su | |
| 2. vipw | |
| 3. nodejs:x:496:494::/tmp:/bin/bash (":wq" to save changes) | |
| 4. sudo su nodejs | |
| 5: PATH=$PATH:`ls -td /opt/elasticbeanstalk/node-install/node-* | head -1`/bin | |
| 6: node -v (enjoy :) |
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
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| func main() { | |
| st := []byte("The quick brown fox jumps over the lazy dog") | |
| l := len(st) |
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
| ## React Setup with Vitejs | |
| ## To setup a react project is rather easy, simply pick the directory you want to store your projectn, | |
| ## open up a terminal there and run the following commands | |
| npm init @vitejs/app vite-app --template react | |
| or | |
| npm init @vitejs/app vite-app --template vanilla |
OlderNewer