Map [1]
| Operation | Time Complexity |
|---|---|
| Access | O(log n) |
| Search | O(log n) |
| Insertion | O(n) for <= 32 elements, O(log n) for > 32 elements [2] |
| Deletion | O(n) for <= 32 elements, O(log n) for > 32 elements |
| #!/bin/sh | |
| ## Requires openssl, nodejs, jq | |
| header=' | |
| { | |
| "kid": "12345", | |
| "alg": "RS256" | |
| }' | |
| payload=' | |
| { | |
| "iss": "https://example.com", |
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
git clone --bare [email protected]:usi-systems/easytrace.git
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #! /bin/bash | |
| # | |
| # Diffusion youtube avec ffmpeg | |
| # Configurer youtube avec une résolution 720p. La vidéo n'est pas scalée. | |
| VBR="2500k" # Bitrate de la vidéo en sortie | |
| FPS="30" # FPS de la vidéo en sortie | |
| QUAL="medium" # Preset de qualité FFMPEG | |
| YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2" # URL de base RTMP youtube |
| HTTP Headers | |
| ------------ | |
| -H "X-PAYPAL-SECURITY-USERID: <Caller-UID>" # UserID from the Caller account | |
| -H "X-PAYPAL-SECURITY-PASSWORD: <Caller-Pswd>" # Password from the Caller account | |
| -H "X-PAYPAL-SECURITY-SIGNATURE: <Caller-Sig>" # Signature from the Caller account | |
| -H "X-PAYPAL-REQUEST-DATA-FORMAT: JSON" | |
| -H "X-PAYPAL-RESPONSE-DATA-FORMAT: JSON" | |
| -H "X-PAYPAL-SANDBOX-EMAIL-ADDRESS: <Caller-Sandbox-edress>" | |
| -H "X-PAYPAL-DEVICE-IPADDRESS: 192.0.2.0" | |
| -H "X-PAYPAL-APPLICATION-ID: APP-80W284485P519543T" # Standard Sandbox App ID |