This file contains hidden or 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
Change centimeters to inches. Instruction as below: | |
- Press and hold 1, 2 & M buttons at the same time until it flashes "C-E" | |
- Press 2 & 3 at the same time if you want to change to inches - it will flash E | |
- Press 1 if you want to centimeters - it will flash C |
This file contains hidden or 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
{ | |
"experiments": [ | |
{ | |
"id": "cdias.v2", | |
"enabled": true, | |
"condition": { | |
"displayLanguage": "en", | |
"installedExtensions": { | |
"excludes": [ | |
"ms-azuretools.vscode-azureappservice" |
This file contains hidden or 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
const https = require('https'); | |
// Get your token here https://api.slack.com/custom-integrations/legacy-tokens | |
const TOKEN = ''; | |
// Find your user ID here https://api.slack.com/methods/auth.test/test | |
const USER_ID = ''; | |
const delay = 300; // delay between delete operations in millisecond | |
const baseApiUrl = 'https://slack.com/api/'; | |
const fileListApiUrl = baseApiUrl + 'files.list?token=' + TOKEN + '&count=1000'; |