Created by Andrew Lee ([email protected])
This tutorial has been tested on Virtualbox.
Guide in GitHub: https://gist.github.com/Alee14/e32a44e53d910a4cf5802e0c59d78061
Guide in Rentry: https://rentry.co/arch-2002
# This is an interactive game where you explore rooms, and it logs each room and activity you do | |
def hub(fout): | |
fout.write('Entering the house\n') | |
while True: | |
print('You are at the main entrance of the house') | |
print('Which room you want to enter?') | |
print() | |
print('1. Living Room') | |
print('2. Kitchen') |
# This program will give advice for building a PC | |
is_laptop = False | |
sel_input = "> " | |
invalid_option = "This option is not available. Try again." | |
spent = float(0) | |
def format_currency(money): | |
return "${:,.2f}".format(money) |
Created by Andrew Lee ([email protected])
This tutorial has been tested on Virtualbox.
Guide in GitHub: https://gist.github.com/Alee14/e32a44e53d910a4cf5802e0c59d78061
Guide in Rentry: https://rentry.co/arch-2002
Guide created by Andrew Lee
Note that this guide does not go into detail, it's just providing the commands to install Windows.
Be cautions when doing this when dualbooting, please backup any existing data or you will lose them all.
First open CMD by pressing the following keys after booting into setup: Shift + F10
-- bits-UI Installer: Version 0.2. Licensed with GPL-3.0 and created by Alee14 | |
term.clear() | |
term.setCursorPos(1,1) | |
if term.isColor() then | |
if fs.exists("/System/bits-UI.exists") then | |
print("Starting the bits-UI Updater...") | |
else | |
print("Starting the bits-UI Installer...") | |
end | |
<?xml version="1.0" encoding="UTF-8"?> | |
<manifest> | |
<remote name="douglas" fetch="https://github.com/douglas-development" revision="cm-12.1" /> | |
<project path="device/amazon/douglas" name="android_device_amazon_douglas" remote="douglas" /> | |
<project path="kernel/amazon/douglas" name="android_kernel_amazon_douglas" remote="douglas" /> | |
<project path="vendor/amazon/douglas" name="android_vendor_amazon_douglas" remote="douglas" /> | |
</manifest> |
#This version just removes 90% of FMP's functionality | |
#Originally written by Squid Grill (https://github.com/Royce551) | |
from appJar import gui | |
from pygame import mixer | |
import os | |
app = gui("FRESHMusicPlayer (For Weebs)", "800x600") | |
mixer.init() | |
playing = False | |
background = "black" | |
foreground = "black" |
@ECHO OFF | |
REM BFCPEOPTIONSTART | |
REM Advanced BAT to EXE Converter www.BatToExeConverter.com | |
REM BFCPEEXE= | |
REM BFCPEICON= | |
REM BFCPEICONINDEX=0 | |
REM BFCPEEMBEDDISPLAY=0 | |
REM BFCPEEMBEDDELETE=1 | |
REM BFCPEADMINEXE=0 | |
REM BFCPEINVISEXE=0 |
notice: Wii U linux is not production ready! Proceed at your own risk. Written on 2/3/18
Quarktheawesome and rw-r-r_0644 have released an early version of Linux for Wii U!
The PowerPC side of the Wii U requires a custom linux kernel, which can be found here. The ARM side of the Wii U requires a custom fw.img file to load that kernel, which can be found here.
Once the kernel is up and running, the first repo is configured to automatically try to load programs from /dev/sda1
in an inserted usb. The first partition of an ext4 USB stick should contain a root filesystem for a linux distribution. See here for more information on a prebuilt PowerPC image