This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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" | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"Area": "Languages", | |
"Discipline": "Arabic", | |
"Pathway": "N/A", | |
"Sequence": "7–10 Sequence", | |
"Level": "Levels 7 and 8", | |
"Mode": "N/A", | |
"Strand": "Communicating", | |
"CDCode": "VCARC001", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | |
{ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RestToolkit : IDisposable | |
{ | |
private readonly string _endPoint; | |
private readonly HttpClient _client = new HttpClient(); | |
public RestToolkit(string endPoint) | |
{ | |
_endPoint = endPoint; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class UUIDObliterator | |
{ | |
private readonly Random _random; | |
public UUIDObliterator() | |
{ | |
_random = new Random(); | |
} | |
private void Obliterate() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class SettingsManager | |
{ | |
public static bool Set<T> (string key, T data) | |
{ | |
try | |
{ | |
ApplicationData.Current.RoamingSettings.Values[key] = data; | |
} | |
catch (Exception) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
NewerOlder