View moentate-api-overlay-response.ts
This file contains 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
// Excel reference file: https://docs.google.com/spreadsheets/d/1QqrhoaTxDEbzShiJHBdLbL_zs2dhvN355AQJ2fRbIx4 | |
// ---------------- | |
// Types definition | |
// ---------------- | |
enum Language { | |
ar = "ar", | |
de = "de", | |
en = "en", |
View monetate-api-discount-response.ts
This file contains 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
// Excel reference file: https://docs.google.com/spreadsheets/d/1QqrhoaTxDEbzShiJHBdLbL_zs2dhvN355AQJ2fRbIx4 | |
// ---------------- | |
// Types definition | |
// ---------------- | |
enum Language { | |
ar = "ar", | |
de = "de", | |
en = "en", |
View monetate-api-message-response.ts
This file contains 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
// Excel reference file: https://docs.google.com/spreadsheets/d/1QqrhoaTxDEbzShiJHBdLbL_zs2dhvN355AQJ2fRbIx4 | |
| |
enum Language { | |
ar = "ar", | |
de = "de", | |
en = "en", | |
es = "es", | |
fr = "fr", | |
it = "it", | |
zh = "zh", |
View script.applescript
This file contains 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
-- `menu_click`, by Jacob Rus, September 2006. | |
-- Ref: https://stackoverflow.com/questions/14669542/automatically-open-the-safari-debugger-when-the-iphone-simulator-is-launched | |
on menu_click(mList) | |
local appName, topMenu, r | |
-- Validate our input | |
if mList's length < 3 then error "Menu list is not long enough" | |
-- Set these variables for clarity and brevity later on |
View index.html
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="[switchMap vs mergeMap of RxJS]"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/2.3.22/rx.all.js"></script> | |
<title>JS Bin</title> | |
<script src="http://cdn.jsdelivr.net/rsvp/3.0.6/rsvp.js"></script> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
View README.md
Prerequisites
- The Thomson software (for Windows XP/7) to flash the router firmware ToolsTG852N
- The router firmware 8.4.4.J (Plusnet ISP version)
- Two ethernet cables
Useful information
- Technicolor is a company of Thomson, this is the reason we will use the Thomson flashing software
- The default credentials for 8.x.x.x firmware version of TG582N is
user: admin
password: ROUTER_SERIAL_NUMBER
(you can find the serial number under your router)
Configuration
View guide.md
- Open OVA/OVF file with VirtualBox
- Right click the virtual machine and select 'Clone'
- Import the generated .vbox file with Parallels Desktop
View tips.sh
This file contains 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
#!/usr/bin/env bash | |
# Disable DMG integrity verification process | |
defaults write com.apple.frameworks.diskimages skip-verify true | |
# Speed up Time machine backups | |
sudo sysctl debug.lowpri_throttle_enabled=0 |