Search Results for wp content uploads 2018 08 scribbleghost png

Super simple Windows 10 and Windows 11 automated installation

Update 11 October 2021: This autounattend.xml script also works for Windows 11 version 21H2. There are a lot of ways you can automate a Windows installation. The most obvious and simple way is using an answer file. So what’s an answer file? A Windows answer file is basically just an XML file that gives Windows instructions on how and what to install. So you don’t have to sit and click next, next, next… 😉 When installing Windows you just place the answer file at the root of the installation media and name it autounattend.xml. Of course, the file has to be a valid XML answer file for it to work. You can’t just put anything in it. Here is an example of an automated installation of Windows 10 using an answer file. Here is an example of the same script installing Windows 11. Making an answer file can be a little complicated and involves using Microsoft System Image Manager. If you want you can create one from scratch, but in this post, I am just going to share my go-to script. The following code is a simple file that will: Make a local Administrator called “User” without any password. Set the keyboard and regional settings to Norwegian. There is no activation, no license, no nothing. Just save the file as autounattend.xml and place it at the root of your Windows installation media. The only thing that is not automated is which disk Windows should be installed on. I intentionally skipped that step because of the risk of accidentally deleting a drive/partition.

Modding Nintendo Wii U with Homebrew and Haxchi

This is an explanation of all the steps I had to go through to make a modded Wii U in November 2018. I am not sure if it still applies, but I assume that if you have the same firmware, it should work. Basically all the info here is from wiiu.hacks.guide. The documentation can also be found on Github or as an archive per 2018.11.25. The type of Wii U used here is: Wii U with firmware 5.5.3 E. WUP-101(03) 32 GB version Reset your Wii U This whole process could take a couple of hours so make sure you have the time and patience. 🕓… Start with resetting your Wii U to factory settings. Note that you will lose all data on the Wii U if you do this. Turn on your Wii U Go to “System Settings” Go to the right until you see “Delete All Content and Settings”. Press the icon, click next, and “Delete everything”. After the formatting is complete the Wii U will shut down. Turn it back on and go through the whole “first-time-setup”. While you are at it, it is a good idea to logon with a Nintendo account, because we will need to download a game from the Wii U Store later on. You should connect to the WiFi, but try not to update the console if you are asked. Prepare the SD card and download files This information is from https://wiiu.hacks.guide/get-started Find a large SD card of at least 8 GB. Format the SD card as FAT32 and make sure it is in MBR (Master Boot Record) format. If the SD card is large, say 128 GB Windows will not format it as FAT32, but you can use the “Fat 32 Format” software tool to format it. Download the following files: […]

underscores.me markup explained

Underscores is a great framework for building WordPress themes. Since the HTML markup can be a little confusing at start, I have made a simple go-to explanation for future projects. The markup might change in the future, but the basic markup has stayed the same for the last years. This markup is from April 2018. Here is a visual illustration of the markup: Here is the same markup in code: So what is going on here? Let’s break it down a little… The body contains the #page DIV which acts as a container for the whole shebang. Inside the #page the site is divided into three parts: .site-header, .site-content and .site-footer. .site-content is basically everything that goes between the header and the footer. In other words; the content. Inside the .site-content DIV we have #primary and #secondary, which are basically just a way of separating the widgets section from the main content. Inside #primary we have another div called #main. I am not completely sure why we have this div yet, but it might function as a way to add padding, margin or max-width to a centered content. Inside #main we get the single post/artigle/page, the post-navigation (previous/next post) and the comments area each in their respectiv divs.