While messing with a CF-U1 handheld PC that I bought off ebay I managed to mess up the BIOS and it
seems it reverted to previous settings which included an unknown BIOS password, it would however still
boot into windows. Since I could still boot windows I was able to dump the bios flash using
AFUWINGUI.EXE the version I used was 3.09.03.1462 which is available here:
https://ami.com/en/?Aptio_4_AMI_Firmware_Update_Utility.zip
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
using UnityEngine; | |
// DERIVED FROM https://stewmcc.com/post/check-for-android-tv-in-unity/ | |
public class Platform_AndroidTV : MonoBehaviour { | |
#if UNITY_ANDROID | |
sbyte isAndroidTV = -1; // -1 == not checked yet; 0 == false; 1 == 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
#if UNITY_EDITOR | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEditor; | |
using System.Reflection; | |
public class EditorFontSize : EditorWindow | |
{ | |
[MenuItem("Window/Editor Font Size")] |
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
[Trigger] | |
Operation = Upgrade | |
Type = Package | |
Target = linux | |
[Action] | |
Description = Restore Linux kernel modules | |
When = PostTransaction | |
Depends = coreutils | |
Depends = rsync |
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
using System.Collections; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using UnityEngine; | |
// Microsoft NET Buffers | |
using System.Buffers; | |
// NX's NetStack Buffers. | |
using NetStack.Buffers; | |
public class Benchmark : MonoBehaviour |
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
// This is an example way of making an auth system for Mirror/Classic UNET. | |
// This is a "kickstart" script that may or may not work for you. NO WARRANTY. | |
// Code written by SoftwareGuy/Coburn64 (@coburn64 on Twitter). Please don't claim as your own. | |
// START SNIPPET // | |
using UnityEngine; | |
using Mirror; // Change this to "using UnityEngine.Networking" if using classic UNET | |
public class CustomNetworkManager : NetworkManager { | |
private int EXAMPLE_AUTH_PACKET_ID = 1000; |
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
// Mirror Network Migration Tool | |
// Written by M. Coburn (@coburn64 on Twitter/SoftwareGuy on Github) | |
// This file is part of Mirror Networking by Coburn64, Lymdun, vis2k and Paul (goldbug). | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
using UnityEditor; | |
using UnityEngine; |
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
127.0.0.1 - - [08/May/2015 17:01:30] "POST /kcsapi/api_req_init/firstship HTTP/1.1" 500 - | |
Traceback (most recent call last): | |
File "/home/coburn/Development/kcsrv-sg/lib/python3.4/site-packages/flask/app.py", line 1836, in __call__ | |
return self.wsgi_app(environ, start_response) | |
File "/home/coburn/Development/kcsrv-sg/lib/python3.4/site-packages/flask/app.py", line 1820, in wsgi_app | |
response = self.make_response(self.handle_exception(e)) | |
File "/home/coburn/Development/kcsrv-sg/lib/python3.4/site-packages/flask/app.py", line 1403, in handle_exception | |
reraise(exc_type, exc_value, tb) | |
File "/home/coburn/Development/kcsrv-sg/lib/python3.4/site-packages/flask/_compat.py", line 33, in reraise | |
raise value |
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
(kcsrv-sg)coburn@debian-vm:~/Development/kcsrv-sg$ ./manage.py setup | |
Installing default roles... | |
Traceback (most recent call last): | |
File "./manage.py", line 45, in <module> | |
manager.run() | |
File "/home/coburn/Development/kcsrv-sg/lib/python3.4/site-packages/flask_script/__init__.py", line 412, in run | |
result = self.handle(sys.argv[0], sys.argv[1:]) | |
File "/home/coburn/Development/kcsrv-sg/lib/python3.4/site-packages/flask_script/__init__.py", line 383, in handle | |
res = handle(*args, **config) | |
File "/home/coburn/Development/kcsrv-sg/lib/python3.4/site-packages/flask_script/commands.py", line 216, in __call__ |
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
Traceback (most recent call last): | |
File "./manage.py", line 45, in <module> | |
manager.run() | |
File "/home/coburn/Development/kcsrv-sg/lib/python3.4/site-packages/flask_script/__init__.py", line 412, in run | |
result = self.handle(sys.argv[0], sys.argv[1:]) | |
File "/home/coburn/Development/kcsrv-sg/lib/python3.4/site-packages/flask_script/__init__.py", line 383, in handle | |
res = handle(*args, **config) | |
File "/home/coburn/Development/kcsrv-sg/lib/python3.4/site-packages/flask_script/commands.py", line 216, in __call__ | |
return self.run(*args, **kwargs) | |
File "/home/coburn/Development/kcsrv-sg/lib/python3.4/site-packages/flask_migrate/__init__.py", line 178, in upgrade |
NewerOlder