From: Media [email protected] Sent: Tuesday, 30 June 2020 3:07 PM To: Media [email protected] Subject: MEDIA RELEASE: Australia’s COVIDSafe app among safest in the world
MEDIA RELEASE
| import requests | |
| import re | |
| session = requests.Session() | |
| # This isn't your Telstra ID but rather the Fon credentials found in the Telstra Air app, you can also find this in the network tab of inspect element when logging in normally. | |
| anid = "[email protected]" | |
| anidpassword = "" | |
| try: login = re.findall(r'<LoginURL>(.*)</LoginURL>', session.get("http://msftconnecttest.com/redirect").text)[0] # Get the Telstra Air login URL |
| import requests | |
| import re | |
| session = requests.Session() | |
| # This isn't your Telstra ID but rather the Fon credentials found in the Telstra Air app, you can also find this in the network tab of inspect element when logging in normally. | |
| anid = "[email protected]" | |
| anidpassword = "" | |
| try: login = re.findall(r'<LoginURL>(.*)</LoginURL>', session.get("http://msftconnecttest.com/redirect").text)[0] # Get the Telstra Air login URL |
| #!/usr/bin/env bash | |
| # wan | |
| # ens160: inet 10.10.10.253 netmask 255.255.255.0 broadcast 10.10.10.255 | |
| # ether 00:0c:29:62:e7:42 txqueuelen 1000 (Ethernet) | |
| # wireless adapter | |
| # wlx240a64a0fc2a: ether 24:0a:64:a0:fc:2a txqueuelen 1000 (Ethernet) | |
| # speedify |
From: Media [email protected] Sent: Tuesday, 30 June 2020 3:07 PM To: Media [email protected] Subject: MEDIA RELEASE: Australia’s COVIDSafe app among safest in the world
MEDIA RELEASE
| From: Media <[email protected]> | |
| Sent: Tuesday, 30 June 2020 3:07 PM | |
| To: Media <[email protected]> | |
| Subject: MEDIA RELEASE: Australia’s COVIDSafe app among safest in the world | |
| MEDIA RELEASE | |
| module TodoMVC where | |
| import DSL | |
| import Data.Array (filter, head, last) | |
| import Data.Array as Array | |
| import Data.Foldable (length) | |
| import Data.Maybe (Maybe(..)) | |
| import Data.Number as Number | |
| import Data.String (Pattern(..), split) |
Developing applications with the Uno Platform requires Visual Studio for Windows. On iOS and Android, the Uno Platform relies extensively on the Xamarin Native stack. On WebAssembly, the Uno Platform relies directly on the Mono-Wasm runtime.
If you are doing this workshop as part of a classroom, it is important to pre-install these components of Visual Studio for Windows before attendance, as you'll need to download upwards of 12Gb of software from Microsoft.
| using System; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.Linq; | |
| using System.Runtime.CompilerServices; | |
| using System.Windows.Input; | |
| using TodoApp.Shared.Models; | |
| namespace TodoApp.Shared.ViewModels | |
| { |
| #if __ANDROID__ | |
| using Android.Views; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using Uno.UI; | |
| namespace Umbrella.View.Controls | |
| { | |
| public class OnSwipeListener : Java.Lang.Object, Android.Views.View.IOnTouchListener |