Skip to content

Instantly share code, notes, and snippets.

View luciusbono's full-sized avatar
💭
Every week is cat week

Lucius Bono luciusbono

💭
Every week is cat week
View GitHub Profile
### Keybase proof
I hereby claim:
* I am luciusbono on github.
* I am kingmetal (https://keybase.io/kingmetal) on keybase.
* I have a public key ASCtpWmqkppFjCxnUpgUyVgZsQVw-OPgp5KSCAGulh87Ago
To claim this, I am signing this object:
$xtu_service = Get-Service -name "XTU3SERVICE"
$xtu_path = "C:\Program Files (x86)\Intel\Intel(R) Extreme Tuning Utility\Client\XTUCli.exe"
$undervolt = -50
if ($xtu_service.Status -ne "Running")
{
Write-Output "Starting XTU service"
start-service -name "XTU3SERVICE"
}
else
  • Install macOS
  • Update macOS
  • Install Xcode
  • Open Terminal
  • Create a src directory
    • cd && mkdir src
  • Run bootstrapper, skip Mercurial optimization
    • cd ~/src && curl https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py > bootstrap.py && python bootstrap.py --no-interactive --application-choice browser
  • Clone mozilla-central to a specific commit
  • hg clone https://hg.mozilla.org/mozilla-central/ -r ff3fab43d24d
@luciusbono
luciusbono / dinobuildr.sh
Last active January 12, 2018 01:07
dinobuildr
#!/bin/bash
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Written by Lucius Bono and Tristan Thomas
# This script grabs the latest config.py script from the dinobuilder
# Github repo (https://github.com/mozilla/dinobuildr). At this time,
@luciusbono
luciusbono / packer.json
Created July 16, 2015 16:39
Windows 8.1 Packerfile
{
"builders": [{
"type": "vmware-iso",
"boot_wait": "5m",
"communicator": "winrm",
"disk_size": 61440,
"floppy_files": [
"autounattend.xml",
"configure-winrm.ps1"
],