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
# from https://nyman.re/post/reading-and-sending-sms-with-gcom-and-huawei/ | |
# send using this command: | |
# gcom -d /dev/ttyUSB0 -v -e -s sendsms.comgt | |
# Ensure you fill in your phone number below or it wont send! | |
opengt | |
# set the terminal settings | |
set com 115200n81 | |
# echo commands |
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
#!/bin/sh /etc/rc.common | |
# Copyright (C) 2006-2011 OpenWrt.org | |
START=10 | |
# From https://forum.openwrt.org/viewtopic.php?id=63104 | |
# With Kernel 4.2 or newer, this hack shouldnt be needed. See https://lists.freedesktop.org/archives/modemmanager-devel/2016-January/002489.html | |
boot() { |
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
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Icon must end with two \r | |
Icon | |
# Thumbnails | |
._* |
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
#! /bin/sh | |
# Checks if the internet connection is up. | |
# If not, then unbind and rebind the USB port, to 'reboot' the 4G LTE stick. | |
# If the internet is still down after that then ping Threes 'Out of Credit' page. | |
# This is hosted on AWS and doesnt respond to pings, so I use wget instead. | |
# By doing this, you can see if you can connect to your provider, but not the rest of the internet. | |
# You can then know that you have perhaps run out of credit on your 4G account. | |
# and send a notification to yourself to topup! |
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
#!/bin/sh | |
# Copyright (C) Pierre d'Herbemont, 2010 | |
# Copyright (C) Felix Paul Kühne, 2012-2015 | |
set -e | |
BUILD_DEVICE=yes | |
BUILD_SIMULATOR=yes | |
BUILD_STATIC_FRAMEWORK=no | |
SDK=`xcrun --sdk iphoneos --show-sdk-version` |
NewerOlder