Skip to content

Instantly share code, notes, and snippets.

[
{
"Grade": "K",
"Standard": "K.CC.A.1",
"Text": "Count to 100 by ones and by tens."
},
{
"Grade": "K",
"Standard": "K.CC.A.2",
"Text": "Count forward beginning from a given number within the known sequence (instead of having to begin at 1)"
[
{
"Code": 1.1,
"Text": "Have a strong sense of identity, feel safe, secure and supported"
},
{
"Code": 1.2,
"Text": "Have a strong sense of identity, develop their emerging autonomy, inter-dependence, resilience and agency"
},
{
[
{
"SyllabusId": "vce-literacy",
"SyllabusName": "VCE Vocational Major Literacy",
"Code": 1.1,
"Header": "Literacy for personal use",
"Text": "Demonstrate understanding of how text types are constructed for different purposes, audiences and contexts through a range of written, digital, oral and visual responses. "
},
{
"SyllabusId": "vce-literacy",
This file has been truncated, but you can view the full file.
[
{
"Area": "Languages",
"Discipline": "Arabic",
"Pathway": "N/A",
"Sequence": "7–10 Sequence",
"Level": "Levels 7 and 8",
"Mode": "N/A",
"Strand": "Communicating",
"CDCode": "VCARC001",
public class Interaction
{
public DateTime Created { get; set; }
public string Action { get; set; }
public string RelativeId { get; set; }
public object RelativeObjective { get; set; }
public Interaction()
{
}
@LucasMoffitt
LucasMoffitt / RestToolkit.cs
Last active August 29, 2015 14:05
Basic Windows 8 / 8.1 Rest Toolkit
public class RestToolkit : IDisposable
{
private readonly string _endPoint;
private readonly HttpClient _client = new HttpClient();
public RestToolkit(string endPoint)
{
_endPoint = endPoint;
}
@LucasMoffitt
LucasMoffitt / UUIDObliterator.cs
Created July 7, 2014 01:00
I Support UUID Cruelty.
public class UUIDObliterator
{
private readonly Random _random;
public UUIDObliterator()
{
_random = new Random();
}
private void Obliterate()
@LucasMoffitt
LucasMoffitt / ReviewHelper.cs
Created June 12, 2014 11:00
Windows 8 Review Helper
public class ReviewHelper
{
private const int RunCountBeforePrompt = 6;
public async void SuggestReview()
{
var version = Package.Current.Id.Version;
var appVersion = string.Format("{0}.{1}.{2}.{3}", version.Major, version.Minor, version.Build, version.Revision);
var savedVersion = SettingsManager.Get<string>("Version");
@LucasMoffitt
LucasMoffitt / SettingsManager.cs
Last active August 29, 2015 14:02
Basic Windows 8.1 Roaming Settings Wrapper
public static class SettingsManager
{
public static bool Set<T> (string key, T data)
{
try
{
ApplicationData.Current.RoamingSettings.Values[key] = data;
}
catch (Exception)
{
@LucasMoffitt
LucasMoffitt / gist:11018418
Last active August 29, 2015 14:00
Windows 8.1 C# PasswordVault Wrapper
public static class VaultManager
{
private const string VaultKeyResource = "My App Or Something...";
private static readonly PasswordVault Vault = new PasswordVault();
public static string Username
{
get
{
try