I hereby claim:
- I am lifenautjoe on github.
- I am lifenautjoe (https://keybase.io/lifenautjoe) on keybase.
- I have a public key ASCILaN0qAuOxJfArkV643OO2_pmwNioFjJreVsIc-COCQo
To claim this, I am signing this object:
| { | |
| "url": "https://bit.ly/3frD2OP", | |
| "domain": "bit.ly", | |
| "lastUpdated": "2020-11-23T16:55:51.648662Z", | |
| "nextUpdate": "2020-11-24T16:55:51.615769Z", | |
| "contentType": "html", | |
| "mimeType": "text/html", | |
| "redirected": true, | |
| "redirectionUrl": "https://www.youtube.com/watch?feature=youtu.be&v=dQw4w9WgXcQ", | |
| "redirectionCount": 2, |
| import requests | |
| r = requests.post( | |
| "https://api.peekalink.io/", | |
| headers={"X-API-Key": "YourSecretKey"}, | |
| data={"link": "https://bit.ly/3frD2OP"}, | |
| ) | |
| print(r.json()) |
| import 'dart:math'; | |
| Random random = new Random(); | |
| String generateRandomHexColor(){ | |
| int length = 6; | |
| String chars = '0123456789ABCDEF'; | |
| String hex = '#'; | |
| while(length-- > 0) hex += chars[(random.nextInt(16)) | 0]; | |
| return hex; |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Instagram web unfollow script | |
| * | |
| * WHAT IS IT? | |
| * A script to unfollow people in the instagram website | |
| * | |
| * WHY? | |
| * I needed to clean my account so I quickly did this | |
| * | |
| * HOW TO USE: |