Demo
Tool /Library/Frameworks/Xamarin.iOS.framework/Versions/Current/bin/smcs execution started with arguments: /noconfig /debug+ /optimize- /out:obj/iPhoneSimulator/Debug/TicTacToe.exe AppDelegate.cs Model/TTTMove.cs Model/TTTMessage.cs Model/TTTProfile.cs Model/TTTMessageServer.cs Model/TTTGame.cs View/TTTGameView.cs View/TTTRatingControl.cs View/TTTCountView.cs Controller/TTTPlayViewController.cs Controller/TTTMessagesViewController.cs Controller/TTTNewMessageViewController.cs Controller/TTTProfileViewController.cs Controller/TTTHistoryListViewController.cs Controller/TTTGameHistoryViewController.cs /target:exe /define:"DEBUG;XAMCORE_2_0;ARCH_64" /nostdlib /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/2.1/System.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/2.1/System.Xml.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/mono/2.1/System.Core.dll /reference:/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/ |
Building: TicTacToe (Debug|iPhoneSimulator) | |
Build started 9/1/2014 10:25:37 AM. | |
__________________________________________________ | |
Project "/Users/paw/Projects/Xamarin/monotouch-samples/TicTacToe/TicTacToe/TicTacToe.csproj" (Build target(s)): | |
Initial Properties: | |
__CF_USER_TEXT_ENCODING = 0x1F5:0:0 | |
__CHECKFIX1436934 = 1 |
Paolas-MacBook-Pro-2:2.1 paw$ cat /Library/Frameworks/Mono.framework/External/xbuild/Xamarin/iOS/Xamarin.iOS.CSharp.targets | |
<!-- | |
*********************************************************************************************** | |
Xamarin.iOS.CSharp.targets | |
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have | |
created a backup copy. Incorrect changes to this file will make it | |
impossible to load or build your projects from the command-line or the IDE. | |
This file imports the version- and platform-specific targets for the project importing |
[Aug-29 12:02 PM] Paola Villarreal: Guys, which versions of X.iOS support the new namespaces? (without MonoTouch.*) | |
[Aug-29 12:03 PM] PJ Bearman: Hi @spouliot, we're preparing 44bfd26981392fe1bc98768a4f5dc944f07d8e8c for Alpha release - just wanted to make sure there isn't an issue I'm unaware of with that version. | |
[Aug-29 12:04 PM] PJ Bearman: @paw 7.4.0, ios8-7.4.0, and master | |
[Aug-29 12:04 PM] PJ Bearman: You can be using http://storage.bos.internalx.com/monotouch-mlion-ios8-7.4.0/44/44bfd26981392fe1bc98768a4f5dc944f07d8...and http://storage.bos.internalx.com/monodevelop-lion-monodevelop-5.4-branch/f5/f52e44ab76cda9d49cde21c5... | |
[Aug-29 12:05 PM] Zoltan Varga: @PJBearman it would be nice to include 59ffc61f93b5d287df67957947bc87f472ee2ccc, it fixes some llvm/arm64 failures | |
[Aug-29 12:05 PM] Paola Villarreal: weird, I have 7.4.0.108 and don't have the new namespaces | |
[Aug-29 12:05 PM] PJ Bearman: I think I saw that was just committed - I think that's too late Zoltan | |
[Aug-29 12:06 PM] PJ Bearman: @paw using X |
<? | |
function getDisponibilidad($estacion) { | |
$ch = curl_init("https://www.ecobici.df.gob.mx/CallWebService/StationBussinesStatus.php"); // Ecobici's endpoint. Returns an HTML. | |
curl_setopt($ch, CURLOPT_POST, true); | |
$data = array('idStation' => $estacion); // idStation set | |
// CURL's options... | |
curl_setopt($ch, CURLOPT_POSTFIELDS, $data); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
curl_setopt($ch, CURLOPT_AUTOREFERER, true); | |
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); |
using System; | |
using MonoTouch.UIKit; | |
using MonoTouch.Foundation; | |
using MonoTouch.AVFoundation; | |
using MonoTouch.CoreAnimation; | |
using MonoTouch.ObjCRuntime; | |
using System.Threading; | |
using System.IO; | |
namespace MyProject { |
Demo
This demo shows how to do an animated & interactive chart visualizing the world's countries and their population, life expectancy and fertility rate using ANT (The Augmented Narrative Toolkit)
What is innovative about Ant? Well, most of the interactive parts of this chart (the timer and its start and stop, the chart itself, its elements, its labels among other things like data downloading and processing AND the interaction between them) are "programmed" in HTML5 without having to code in JavaScript. This significantly lowers the barriers of entry for data visualization.
The only JavaScript code is dedicated to quantify data using d3 scales (for instance: if country is from South Asia, its fill collor will be yellow, if it has a life expectancy of 35 years, its Y position will be 150 and if it has a fertility rate of 4 it will have a X position of 100) Inspired by 2006, Hans Rosling TED Talk: The best stats you've ever seen.
Based on Lisa Charlotte Rost's (@lisacrost) challenge.