View Gist.sublime-settings
{ | |
// Your GitHub API token | |
// see: https://github.com/condemil/Gist#generating-access-token | |
"token": "4fff9d3b74d301f37d300da61f999e8eca456396", | |
// Show GitHub organizations | |
// Example: "company1", "company2" | |
"include_orgs": [], | |
// Show GitHub users |
View unlike-facebook-page-fast.md
How to unlike all Facebook page at once
If you want to do cleaning on your Facebook timeline, you may want to unlike all Facebook pages quickly. There is a way for that :
- Go to firefox and install iMacros
- Open a text editor (i.e. Notepad, Sublime Text), and paste that code inside :
VERSION BUILD=7401110 RECORDER=FX
View sublime.md
For PackageControl and Settings sync, follow these instructions.
However, on Windows, symlinking the User
folder breaks auto-reload for Settings changes.
To bypass this, either symlink the parent folder - Packages
or the main Sublime Text 3
folder.
Make sure to gitignore/exclude everything but the User
dir, as they are installed packages and caches.
Code:
View sublime-text-3-setup.md
Sublime Text 3 Setup
Install Package Control
Install Package Control for easy package management.
- Open the console with
Ctrl+`
- Paste in the following:
View ColorHighlighter.sublime-settings
{ | |
"style": "filled", | |
"ha_style": "none" | |
} |
View UEFI.cmd
rem == CreatePartitions-UEFI.txt == | |
rem == These commands are used with DiskPart | |
REM to create five partitions | |
rem for a UEFI/GPT-based PC. | |
rem Adjust the partition sizes to fill the drive | |
rem as necessary. == | |
select disk 0 | |
clean | |
convert gpt | |
rem == 1. Windows RE tools partition =============== |
View Convert-WindowsImage.ps1
Function | |
Convert-WindowsImage | |
{ | |
<# | |
.NOTES | |
Copyright (c) Microsoft Corporation. All rights reserved. | |
Use of this sample source code is subject to the terms of the Microsoft | |
license agreement under which you licensed this sample source code. If |
View install.ipxe
##### install.ipxe ##### | |
#!ipxe | |
set base http://mirror.centos.org/centos/7/os/x86_64 | |
prompt -k 0x197e -t 2000 Press F12 to install CentOS... || exit | |
kernel ${base}/images/pxeboot/vmlinuz initrd=initrd.img repo=${base} | |
initrd ${base}/images/pxeboot/initrd.img | |
boot |
OlderNewer