If you live or work in an area serviced by Comcast, odds are you see the "xfinitywifi" in your list of WiFi Access Points on your phones, tablets and laptops. For me they are everywhere! But what or who are they for?
Sunday, November 5, 2017
XfinityWiFi -- Is it the right thing to do?
disgorged by Jamie Forbes 0 comments
Thursday, August 10, 2017
Jamie and the Argus-nauts...
So, I was cleaning out my Inbox a few months ago and ran across an email from Reolink. This email caught me a little off guard. It seems that Reolink had designed a new digital security camera, not surprising as this is kinda what they do. They called it the Reolink Argus and this camera was different. This camera was WiFi, ok no big deal. It was rated for outdoor use, still not exciting... Ah, but it was also battery operated. OK! Now they had my attention! So, I went to Indigogo and got in on the Early Bird special.
Then, I waited. I waited some more. And, more.... Then, it finally came.
Batteries... Wait, did you say batteries?... Really?!?
How can the batteries possibly last long enough for the camera NOT to be a nuisance?
- They made the electronics as efficient as possible. Yup, it turns out that when you plug most of the wholes, the ship sinks a lot slower. Same with the economy of electricity. When you don't waste stored energy, it's there when you need it and for longer.
- It's passive. The passive infrared technology employed allows the camera to "see" motion without the entire camera being on and drawing power. This means that the unit can stay in a super-low power mode until it's actually needed.
- It uses 4 CR123a cells each offering a whopping 1.5Ah of juice @ 3v. Now Amp Hours may not mean much to you. But, just know that it is a measure of available power over time and that the average 9v battery offers about .5Ah. This means these little batteries have a lot to offer in the way of power over time.
So, it is efficient...
But, passive?... Hmmmm... What if I want to see what's going on now?
Alright, passive is efficient... But, just how efficient is efficient?
OK. But, it's not a normal battery.
Enough with the batteries already! What about recording?
So, is it hard to setup?
Can I access the camera from my desktop?
Will it notify me?
So, where does it shine?
What's it missing?
Automatic LAN uploading
Working Mac/PC Client
Should I get one?
SURE!... IF:
- You have an iOS/Android phone or tablet.
- The mounting location is covered by WiFi.
- The mounting location has no access to AC power.
- It will NOT be monitored frequently.
- It is covering a low traffic area.
- You have $100 to spend on it.
Folks, I'm happy!
disgorged by Jamie Forbes 0 comments
Friday, April 7, 2017
PHP to prune a Google calendar feed of unwanted events
// Set header for calendar and give it a filename
header('Content-type: text/calendar; charset=utf-8');
header('Content-Disposition: attachment; filename=modified_calendar_feed.ics');
// Download the calendar feed we need into a variable
$ics = file_get_contents('https://calendar.google.com/calendar/ical/targetaccountnamehere%40gmail.com/public/basic.ics');
// Remove the useless header info (if this is not done, other Google accounts will not be able to add the URL)
preg_match('/PRODID.+?END:VTIMEZONE../s',$ics,$tz);
$ics = str_replace($tz,"",$ics);
// Grab the events and dump them into an array
preg_match_all('/BEGIN:VEVENT.+?END:VEVENT../s',$ics,$events);
// Step threw the events and remove any that don't contain the keyword/phrase from the feed
foreach ($events[0] as $event) {
if (!stripos($event,"keyword/phrase the event must have if it is to stay in the feed")) {
$ics = str_replace($event,"",$ics);
}
}
// Send the modified calendar feed to the requesting device
echo "$ics";
// Destroy the variables before leaving
unset($ics,$events,$event)
disgorged by Jamie Forbes 0 comments
Monday, March 6, 2017
HoSafe... You said what now?
In July of 2016, after months of issues with neighbors, I broke down and purchased an IP Camera from Amazon.com (HoSafe Camera Amazon Link). Now, to be totally fair, this was the cheapest IP Camera that met my criteria. Setting aside the absolutely hilarious name, the HoSafe 1MB6P met all of my requirements. My criteria were as follows:
- It must have POE capability.
- It must be able to live outdoors.
- It must have night vision with built in illumination.
- It must be at least 720p.
- It must be ONVIF compatible.
- It must be cheap.
POE
Outdoor
Night Vision
720p
ONVIF
CHEAP!
The Unit Arrives!
The Second Unit Arrives!
The Configuration
The Installation
The PC Software
The Apps
The Pros
- It met all my requirements: POE, Outdoor, Night Vision, 720p, ONVIF and Cheap.
- It goes beyond by providing a free iOS and Android apps and accompanying service to allow you to view the camera from just about anywhere.
- The night vision works really well.
The Cons
- The CMS software was a dud. Although not surprising, it is a bummer.
- There is no config path for Mac Users. Internet Explorer and/or the CMS app are required for configuration and they are Windows only.
- Config and install of the HoSafe 1MB6P is not for the casual user. Like most (if not all) IP cameras, it does require either experience or stubbornness. If you lack both, get help or get a different IP camera.
The Conclusion
disgorged by Jamie Forbes 0 comments