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
# Run grafana locally | |
$ brew services start grafana | |
$ brew services start grafana-agent # Start agent | |
$ brew services info grafana-agent # Start agent | |
# Path error log grafana (agent, all) | |
/usr/local/var/log/ | |
# Stop grafana locally | |
$ brew services stop grafana |
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
aws cognito-idp admin-set-user-password --user-pool-id <your-user-pool-id> --username <username> --password <password> --permanent |
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
Usa JS, supportato solo su Chrome. | |
Vantaggio di cypress vs altri framework: non è fragile, infatti verifica che gli elementi siano nella viewport | |
(es. un bottone verifica che sia visible e cliccabile). | |
Intercettare chiamate http, fare tipo poxy, possibile mochare le chiamate | |
(quindi settare alcuni parametri nella risposta dal microservizio). | |
Testare come se fossi un utente. | |
GET: Faccio una query sulla base del testo che contiene (oppure data-test-id) |
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
# Start Metro bundler with env var | |
$ REACT_APP_ENV=prod react-native start --reset-cache | |
$ react-native run-ios |
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
# Create a public key (https://git-scm.com/book/it/v1/Git-sul-Server-Generare-la-Propria-Chiave-Pubblica-SSH) | |
$ ssh-keygen -t rsa | |
# If it doesn't work | |
$ ssh-add ~/.ssh/id_rsa |
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
platform :ios, '9.0' | |
target 'golee' do | |
# this is very important to have! | |
node_modules_path = '../node_modules' | |
rn_path = '../node_modules/react-native' | |
pod 'React', :path => '../node_modules/react-native/' | |
pod 'React-Core', :path => '../node_modules/react-native/React' | |
pod 'React-DevSupport', :path => '../node_modules/react-native/React' |
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
CREATE TABLE `Student` | |
( | |
`idStudent` int NOT NULL auto_increment, | |
`name` varchar(45) NOT NULL , | |
PRIMARY KEY (`idStudent`) | |
); | |
CREATE TABLE `Exam` | |
( |
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
//It works only for iOS, with Android i can't set picker with intervals | |
onDateChange={(date)=>{ | |
if(this.state.dateMode == "time" && this.state.minuteInterval){ | |
let hours = Number(String(date).split(":")[0]) | |
let minutes = Number(String(date).split(":")[1]) | |
let diff = minutes % this.state.minuteInterval | |
if(diff != 0){ | |
date = (String(hours)+":"+String(minutes-diff)) | |
} |
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
Router | |
Stack | |
Scene "Landing" | |
Tabs tabBarComponent={_CustomTabBarComponent_} | |
**#1st child** | |
Lightbox key="First" | |
Drawer | |
Scene**A**,Scene**B** |
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
<Lightbox key="lightbox"> | |
<Drawer | |
hideNavBar | |
key="drawer" | |
contentComponent={MenuContent} | |
drawerImage={MenuIcon} | |
drawerWidth={300} | |
initial | |
> | |
<Scene key="team_nav"> |
NewerOlder