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
| defaults write com.apple.Dock appswitcher-all-displays -bool true | |
| killall Dock |
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 quicksort(A []int) []int { | |
| if len(A) < 2 { | |
| return A | |
| } | |
| left := 0 |
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 ( | |
| "context" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" | |
| "time" |
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
| { | |
| "email_address": "[email protected]", | |
| "password": "qwe123123", | |
| "password_confirm": "qwe123123", | |
| "role": "organization", | |
| "user_data": { | |
| "name": "Habib Fikri", | |
| "position": "HR", | |
| "organization_name": "PT Maju Terus", | |
| "organization_email": "[email protected]", |
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
| { | |
| "email_address": "[email protected]", | |
| "password": "qwe123123", | |
| "password_confirm": "qwe123123", | |
| "role": "student", | |
| "user_data": { | |
| "name": "Habib Fikri", | |
| "birthdate": "1996-03-17", | |
| "address": "Jln. Tubis II No. 9", | |
| "city": "Bandung", |