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 { VoipList } = require('twilio/lib/rest/api/v2010/account/availablePhoneNumber/voip'); | |
var express = require('express'); | |
require('dotenv').config() | |
const accountSid = process.env.TWILIO_ACCOUNT_SID; | |
const authToken = process.env.TWILIO_AUTH_TOKEN; | |
const twilio_callback_url = process.env.TWILIO_CALLBACK_URL; | |
const twilio_from = process.env.TWILIO_FROM |
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
# Stop windows update service | |
Stop-Service -Name wuauserv; | |
# Remove 'SoftwarePolicies' WU key | |
Remove-Item ` | |
-Path HKLM:\SoftwarePolicies\Microsoft\Windows\WindowsUpdate ` | |
-Force ` | |
-Recurse ` | |
-ErrorAction SilentlyContinue; |
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
#!/bin/bash | |
for image in $1; do | |
IFS='/' read -ra ADDR <<< "$image" | |
len=${#ADDR[@]} | |
#echo $(expr $len - 1) | |
file=${ADDR[$(expr $len - 1)]} |
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
#!/bin/bash | |
mkdir -p output | |
for file in `ls -l | grep -v ^d | awk '{print $9}'`; do | |
md5=`md5sum $file | awk '{print $1}'` | |
firstletter=${file:0:1} | |
IFS='-' read -ra ADDR <<< "$file" | |
IFS='_' read -ra firstword <<< "${ADDR[0]}" #firstword |
NewerOlder