Add new network configuration (SSID + Password)
network={
ssid="testing"
psk="testingPassword"
}
into
Add new network configuration (SSID + Password)
network={
ssid="testing"
psk="testingPassword"
}
into
<? | |
function new_excerpt_more( $more ) { return '...'; } | |
add_filter('excerpt_more', 'new_excerpt_more'); | |
$content = get_the_excerpt(); | |
if (!$content) { | |
$content = get_the_content(); | |
if (strlen($content) > 150) { |
<style> | |
body { | |
font: 16px/24px Helvetica, Sans-Serif; | |
padding: 30px; | |
} | |
</style> | |
<script | |
src="https://code.jquery.com/jquery-2.2.4.min.js" | |
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" |
Publish the document to web publicy
Make sure select "automatically republish when content changes" in advanced
This will give a JSON object like:
gdata.io.handleScriptLoaded(
# First save the password in keychain as new password and give it a name | |
security -q find-generic-password -a __CURRENT_USERNAME__ -s __PASSWORD_NAME__ -w |
echo "----- BG COLORS -----" | |
echo "\033[40m BLACK BG \033[0m" | |
echo "\033[41m RED BG \033[0m" | |
echo "\033[42m GREEN BG \033[0m" | |
echo "\033[43m YELLOW BG \033[0m" | |
echo "\033[44m BLUE BG \033[0m" | |
echo "\033[45m MAGENTA BG \033[0m" | |
echo "\033[46m CYAN BG \033[0m" | |
echo "\033[47m LIGHT_GRAY BG \033[0m" |
import UIKit | |
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { | |
var window: UIWindow? | |
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { | |
window = UIWindow(frame: UIScreen.main.bounds) | |
let homeViewController = UIViewController() |
function onEdit(e) { | |
// Auto increment number column name | |
var aiColumnName = 'A'; | |
// The column that is tested, seq numbers will be | |
// given if this column is not empty. | |
var requieredColName = 'B' | |
var spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); | |
var worksheet = spreadsheet.getActiveSheet(); | |
var aiColRange = worksheet.getRange(aiColumnName + '1:' + aiColumnName + '1000'); |
{ | |
"first_name": "Sammy", | |
"last_name": "Shark", | |
"location": "Ocean", | |
"social_media": [ | |
{ | |
"description": "twitter", | |
"link": "https://twitter.com/digitalocean" | |
}, | |
{ |
var xpath = "//a[contains(@href,'/slack') and contains(text(), 'Skip for now')]" | |
var result = document.evaluate(xpath, document, null, XPathResult.ANY_TYPE, null); | |
result.iterateNext() |