Skip to content

Instantly share code, notes, and snippets.

View fupslot's full-sized avatar
💭
I may be slow to respond.

Eugene Brodsky fupslot

💭
I may be slow to respond.
View GitHub Profile
[
{
"name": "b2c",
"color": "bfd4f2"
},
{
"name": "b2b",
"color": "bfd4f2"
},
{
@fupslot
fupslot / beanstalk node command
Created February 6, 2018 13:25
elastic beanstalk node command not found
# 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 :)
package main
import (
"fmt"
)
func main() {
st := []byte("The quick brown fox jumps over the lazy dog")
l := len(st)
@fupslot
fupslot / react_tailwindcss_vite
Created April 11, 2022 10:09
React + TailwindCSS + Vite.js
## 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