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
In OTIHapCore.m: | |
- (void)setupBridgeAccessory { | |
/* HAKAccessory *bridgeAccessory = [[HAKAccessory alloc] init]; | |
HAKAccessoryInformationService *infoService = [[HAKAccessoryInformationService alloc] init]; | |
infoService.nameCharacteristic.name = @"Hue Bridge"; | |
infoService.serialNumberCharacteristic.serialNumber = @"972BB8AF"; | |
infoService.manufacturerCharacteristic.manufacturer = @"Philips"; | |
infoService.modelCharacteristic.model = @"Hue Bridge"; | |
bridgeAccessory.accessoryInformationService = infoService; |
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
<?xml version="1.0" encoding="utf-8"?> | |
<MusicLibrary> | |
<genre> | |
<category name="Silly"> | |
<album name = "Silly Songs with Larry" artist = "Larry the Cucumber"> | |
<song name = "Where is my hairbrush" duration = "1:00"></song> | |
</album> | |
<album name = "Songs by Mr. Lunt" artist = "Mr Lunt"> | |
<song name = "Cheeseburger, I love you!" duration = "1:00"></song> | |
</album> |
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
@interface Keaton : NSObject | |
@property(strong, nonatomic)BOOL speak; | |
@end |
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
<?php | |
//add your server aliases here | |
$servers = array( | |
"10.0.0.201" => "Larry", | |
"10.0.0.56" => "Le Mac Pro", | |
); | |
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/bash | |
#based on https://gist.github.com/3065781 which is based on https://wiki.archlinux.org/index.php/Chromium. | |
echo "mounting file system" | |
mount -o remount, rw / | |
#Flash, pdf. | |
#mp3,mp4, stopped working... | |
echo "removing MP3/4 fix" | |
rm -r /usr/lib/cronos/libffmpegsumo.so | |
rm -r /opt/google/chrome/libffmpegsumo.so |
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
Hello Polly, | |
Let me explain the issues ive been having with the API. | |
Here is my HTML code for fetching the list id for the name 'Today': | |
$tomorrow_id; | |
$today_id; | |
$ch2 = curl_init(); |
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/bash | |
FILES=./* | |
for f in $FILES | |
do | |
echo "#import \"${f//.\/}\"" | |
done | |
# place in the framework directory, e.g. preferences, and chmod a+x umbrella.sh && ./umbrella.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
extension NSDate{ | |
convenience | |
init(inputDate: NSDate){ | |
let calendar = NSCalendar.currentCalendar() | |
let timeZone = NSTimeZone.systemTimeZone() | |
calendar.timeZone = timeZone | |
let comps = calendar.components([NSCalendarUnit.Year, NSCalendarUnit.Month, NSCalendarUnit.Day ], fromDate: inputDate) | |
comps.hour = 0 | |
comps.minute = 0 | |
comps.second = 0 |
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
import socket | |
import struct | |
import binascii | |
# Written by Bob Steinbeiser (https://medium.com/@xtalker) | |
rawSocket = socket.socket(socket.AF_PACKET, socket.SOCK_RAW, | |
socket.htons(0x0003)) | |
MAC = '74c24671971c' |
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
// | |
// ProfileViewController.swift | |
// Bg-Mon | |
// | |
// Created by Keaton Burleson on 4/4/16. | |
// Copyright © 2016 Keaton Burleson. All rights reserved. | |
// | |
import Foundation | |
import UIKit |
OlderNewer