Skip to content

Instantly share code, notes, and snippets.

View vdelacou's full-sized avatar

Vincent DELACOURT vdelacou

View GitHub Profile
@vdelacou
vdelacou / depoy.sh
Created May 13, 2023 04:45
Deploy nextjs
npx -y create-turbo@latest ./app-name pnpm -e with-tailwind
@vdelacou
vdelacou / password_autofill_expo_how_to.md
Created December 20, 2022 02:23 — forked from amcvitty/password_autofill_expo_how_to.md
Configure Password Autofill on a React Native Expo app

Password Autofill on a React Native Expo app

Developing an app to accompany our website, worried that we would lose people in the transition if they couldn't remember their password, we were looking to make our app do Password AutoFill, a feature in iOS.

A talk from WWDC introducing the feature: https://developer.apple.com/videos/play/wwdc2017/206/

It works well, but there were a few bumps in the road making it work for React Native on Expo, so here are some notes to help out.

Apple's docs are here: https://developer.apple.com/documentation/security/password_autofill and they say something like this:

@vdelacou
vdelacou / 01_README.md
Last active January 22, 2022 04:48
How to start a Serverless API quarkus

Create boostrap project with quarkus

Change your ProjectGroupId and ProjectArtifactGroupId below:

mvn io.quarkus.platform:quarkus-maven-plugin::create \
    -DprojectGroupId="com.sls" \
    -DprojectArtifactId="serveless-template"
@vdelacou
vdelacou / .eslintignore
Last active March 11, 2024 12:02
React Vite Typescript Eslint
vite.config.ts
src/vite-env.d.ts
dist
@vdelacou
vdelacou / .eslintrc.json
Last active July 23, 2023 06:53
Start node project
{
"env": {
"node": true,
"es2020": true
},
"extends": [
"plugin:prettier/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
@vdelacou
vdelacou / README.md
Last active April 5, 2021 02:41
Add tailwind CSS
@vdelacou
vdelacou / .eslintrc.json
Last active February 27, 2021 06:09
Vercel Nodejs API
{
"env": {
"node": true,
"es2020": true
},
"extends": [
"airbnb-typescript",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
@vdelacou
vdelacou / .eslintrc.json
Last active February 22, 2022 04:09
Create NEXT app Typescript with typescript eslint jest and TailwindCSS
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"airbnb",
"airbnb/hooks",
"plugin:@typescript-eslint/recommended",
@vdelacou
vdelacou / tsconfig.json
Created October 20, 2020 09:10
Gatsby Typescript config
{
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
@vdelacou
vdelacou / README.md
Last active January 30, 2024 23:54
Create Multi Tenant AWS Amplify For B2B

npm install -g @aws-amplify/cli

npm init private

amplify init

? Enter a name for the project tenant
? Enter a name for the environment develop
? Choose your default editor: Visual Studio Code