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
| .org $8000 | |
| .org $ff00 | |
| XAML = $24 ; Last "opened" location Low | |
| XAMH = $25 ; Last "opened" location High | |
| STL = $26 ; Store address Low | |
| STH = $27 ; Store address High | |
| L = $28 ; Hex value parsing Low | |
| H = $29 ; Hex value parsing High | |
| YSAV = $2A ; Used to see if hex value is given |
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
| import 'package:flutter/material.dart'; | |
| import 'package:collection/collection.dart'; | |
| void main() => runApp(MyApp()); | |
| enum KnotType { | |
| forward, | |
| backward, | |
| forwardBackward, | |
| backwardForward, |
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
| 10600000401 |
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
| // To parse this JSON data, do | |
| // | |
| // final reprocessingData = reprocessingDataFromJson(jsonString); | |
| import 'dart:convert'; | |
| ReprocessingData reprocessingDataFromJson(String str) => | |
| ReprocessingData.fromJson(json.decode(str)); | |
| String reprocessingDataToJson(ReprocessingData data) => |
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
| import 'dart:core'; | |
| import 'dart:typed_data'; | |
| import 'dart:convert'; | |
| class Murmur32 | |
| { | |
| int c1 = 0xcc9e2d51.toUnsigned(32); | |
| int c2 = 0x1b873593.toUnsigned(32); | |
| int _seed; |
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
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <Root PresetName="SilkyPants" MajorVersion="3" MinorVersion="0"> | |
| <KeyboardLayout>en-US</KeyboardLayout> | |
| <MouseXMode Value="" /> | |
| <MouseXDecay Value="0" /> | |
| <MouseYMode Value="" /> | |
| <MouseYDecay Value="0" /> | |
| <MouseReset> | |
| <Primary Device="{NoDevice}" Key="" /> | |
| <Secondary Device="{NoDevice}" Key="" /> |
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
| # Add the following to .bashrc or .zshrc | |
| # [[ -f ~/.terminal-conf ]] && . ~/.terminal-conf | |
| #OS Specific exports | |
| if [[ "$OSTYPE" == "darwin"* ]]; then | |
| #MacOS | |
| else |
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
| fastlane_version "1.94.0" | |
| default_platform :ios | |
| platform :ios do | |
| desc "Run Unity Editor tests" | |
| lane :test_unit do | |
| unity( | |
| run_editor_tests: true | |
| ) |
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
| #!/bin/bash | |
| # Based on script by Petr Kirpeit - https://github.com/petrk94/ApricityOS_on_Ubuntu/ | |
| # Icon Sets based in ApricityOS (numix-circle project, paper icon-theme/gtk-theme/cursor-theme) | |
| #numix-circle project | |
| sudo add-apt-repository ppa:numix/ppa | |
| # Paper Theme |
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
| // <copyright file="CocoaPodHelper.cs" company="Google Inc."> | |
| // Copyright (C) 2014 Google Inc. | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // | |
| // http://www.apache.org/licenses/LICENSE-2.0 | |
| // | |
| // Unless required by applicable law or agreed to in writing, software |