// Sawp in VF ACCESS_TOKEN below, have text file bongo.txt in same directory as script
// Run with node (18+ for Fetch/FormData): $ node index.js
// CONFIG
const ACCESS_TOKEN = `VF.DM.XXXXXX`;
const FILE_NAME = "bongo.txt"; // Same directory as the script
const fs = require("fs");
// Converts an ArrayBuffer directly to base64, without any intermediate 'convert to string then | |
// use window.btoa' step. According to my tests, this appears to be a faster approach: | |
// http://jsperf.com/encoding-xhr-image-data/5 | |
/* | |
MIT LICENSE | |
Copyright 2011 Jon Leighton | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
/** | |
* Note: 4 cases where a websocket connection might be closed | |
* 1. closed while waiting for response + idle longer than 10min => send keep-alive after 9min | |
* 2. closed while waiting for response + 2hr connection limit => a new connection will be used | |
* 3. closed while not waiting + idle longer than 10min => detect close callback and resend | |
* 4. closed while not waiting + 2hr connection limit => a new connection will be used | |
* 5. closed while connecting => do not retry | |
* ie. ENOTFOUND: debug stack is removed and the websocket endpoint does not exist. | |
* 6. closed while sending message => do not retry | |
* ie. Code: 1009 Error: Max frame length of 32768 has been exceeded. |
1. Get the Snap camera (MAC/PC): https://snapcamera.snapchat.com/download
-
Get a tool that can unpack Rar files (A good option is WinRar but many others exist as well)
-
Install a clean copy (ideally no modifications to start) of GTAV & note the location where GTA5.exe is installed
Note: At time of writing, the mod is compatible with the latest game update released by Rockstar on Aug 11, 2020 v1.0.2060.0 & should be work previous versions down to 1.0.1180.2)
simpleResponse, basicCard, carouselBrowse, mediaResponse, tableCard
Rich Response Items |
---|
** Context: ** DocumentDB has no public endpoints and lives in its own VPC, the upshot of which is that to interact with the data (ie get a shell) you must tunnel/hop through an EC2 instance in the same VPC as the DocumentDB cluster
- SSH to the instance
- Follow instructions here: https://docs.aws.amazon.com/documentdb/latest/developerguide/getting-started.connect.html
// moment.tz.names() | |
const allZones = [ | |
"Africa/Abidjan", | |
"Africa/Accra", | |
"Africa/Addis_Ababa", | |
"Africa/Algiers", | |
"Africa/Asmara", | |
"Africa/Asmera", | |
"Africa/Bamako", | |
"Africa/Bangui", |
Before getting started with react-sketch-app you should have all the following tools installed and ready to go:
-
A terminal program (if you are not very comfortable using the command line, this guide should teach you most of the basic commands to get up and running)
-
Sketch
-
A Text editor (Atom or Sublime Text are straightforward choices with which to start and both have many of tutorials available online)