-
-
How to build a React library using TypeScript - 2020/10/18
-
Creating a React component library using Storybook 6 - 2020/12/20
-
-
Building a React Components Library by Tomasz Fiechowski | Better Programming | Medium
using the terminal:
security find-generic-password -ga $WIFI_NAME | grep “password:”
tip from: How to See All Your Saved Wi-Fi Passwords on macOS | How-To Geek
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
| import * as React from 'react'; | |
| export enum JSTypeof { | |
| UNDEFINED = 'undefined', | |
| FUNCTION = 'function', | |
| OBJECT = 'object', | |
| STRING = 'string', | |
| NUMBER = 'number', | |
| } | |
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 updated to use the fetch API | |
| source: | |
| https://github.com/AdeyinkaAdegbenro/Detect_Location/blob/master/detect_location.js | |
| */ | |
| function request(url) { | |
| return fetch(url).then(response => response.json()); | |
| } |
useful links about ts/js testing on a project with Gatsby.js
-
Jest - is a delightful JavaScript Testing Framework with a focus on simplicity.
Scrum game
Estimation exercise ~ 2 h
iteration 1 - strawberries eating association - individually, no collaboration, estimate (charge and deadline) consume x000 strawberries - 3 minutes to decide
Discuss exceptions, differences, approaches … All estimations are correct.
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
| // hack to enable touch after focus on the iframe | |
| html, | |
| body { | |
| touch-action: auto; | |
| } |
past the following string into the google chrome address bar:
data:text/html,<html contenteditable>
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
| # define a full backup of a git repository from one remote server to another one | |
| origin="https://remote-source/repository.git"; | |
| target="https://remote-target/repository.git"; | |
| workDir="temp-directory"; | |
| mkdir $workDir |