Weather Beautiful app released for iOS

shapeitappThe Weather Beautiful app has been released for iOS in the Apple app store. This release of the weather app is on par with the Android and BlackBerry versions.

About Weather Beautiful

Weather Beautiful is a simple weather app that displays stunning photography of your surrounding area. In addition to the current temperature and weather conditions, the app also allows you to scroll for a full weekly forecast. While temperatures are shown in Fahrenheit by default, there is an option to switch to Celsius.

Links & Information

icon480

Niagara Border Crossing app released for iPhone

img_20160927_172242The Niagara Border Crossing app has been released for iPhones in the iTunes app store This app shows wait times for border crossings over the Niagara River between the United States and Canada, and is also available for Android, BlackBerry, and Windows users.

Wait times are shown for all four of the bridges between Western New York and Southern Ontario. These include the Lewiston-Queenston Bridge, the Whirlpool Rapids Bridge, the Rainbow Bridge, and the Peace Bridge. Separate times are shown for cars, trucks, and also for those using the Nexus lanes.

Links & Information

icon480

Update for Weather Beautiful app

Z10cropThe Weather Beautiful app has been updated for Android and BlackBerry phones. Now at version 2.3, the Weather Beautiful is more efficient, and also includes a two percent reduction to the file size of the app.

About Weather Beautiful

This is a simple weather app that displays stunning photography of your surrounding area. In addition to the current temperature and weather conditions, the app also allows you to scroll for a full weekly forecast.

Links & Information

icon480

Getting website text in Swift 3

Last month I noted that Swift 2 had not yet dropped its Objective-C origins when it came to retrieving website text. Fortunately, Swift 3 has great advances in this area. Getting source of a webpage is now a simple and straightforwards process…

let url:NSURL = NSURL(string: "http://ebscer.com")!
do
{
    let responseText:String = try String(contentsOf:url,
                            encoding:String.Encoding.utf8)
}
catch let error
{
    print("Error: \(error)")
}