This Youtube ID mean to be played with Tizonia on terminal :
- Supra Nada Gending Jawa - Kh76FxCW2Yk
This Youtube ID mean to be played with Tizonia on terminal :
| HOST= | |
| PORT= | |
| ENV= | |
| REDIS_HOST= | |
| REDIS_PORT= | |
| DB_CLIENT= | |
| DB_HOST= | |
| DB_USER= |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <link rel="stylesheet" href="./css/style.css"> | |
| <title>A Gamma Image Editor</title> | |
| </head> | |
| <body> |
Eliminating all duplicates in array with reduce() reduce take 4 params previousValue, currentValue, index, array
array.reduce((acc, el, i, arr) => {
if (arr.indexOf(el) !== i && acc.indexOf(el) < 0) acc.push(el); return acc;
}, []);| // https://api.whatsapp.com/send?phone=+{{ *YOURNUMBER* }}&text=%20{{ *YOUR MESSAGE* }} | |
| var yourNumber = "{{ your number in string}}" | |
| var yourMessage = "{{ your message in string }}" | |
| // %20 mean space in link | |
| // If you already had an array then you just join them with '%20' | |
| // easy right | |
| function getLinkWhastapp(number, message) { |
| // | |
| // the stack that i use with stylus-lang | |
| // | |
| #nib || stylus mixin | |
| https://github.com/stylus/nib | |
| #rupture || stylus media queries | |
| https://github.com/jescalan/rupture |