Skip to content

Instantly share code, notes, and snippets.

@numbnet
numbnet / LEZGYw.markdown
Last active August 29, 2015 14:11
LEZGYw
{
// 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
@numbnet
numbnet / unlike-facebook-page-fast.md
Created November 8, 2019 16:39 — forked from philippebarbosa/unlike-facebook-page-fast.md
A simple way to unlike all facebook page in one time !

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
@numbnet
numbnet / sublime.md
Created December 25, 2019 06:53
How to backup Sublime Text 3 settings

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:

@numbnet
numbnet / sublime-text-3-setup.md
Created July 23, 2020 10:56 — forked from ijy/sublime-text-3-setup.md
My Sublime Text 3 setup.

Sublime Text 3 Setup

Install Package Control

Install Package Control for easy package management.

  1. Open the console with Ctrl+`
  2. Paste in the following:
@numbnet
numbnet / ColorHighlighter.sublime-settings
Last active July 25, 2020 18:32
Preferences.sublime-settings
{
"style": "filled",
"ha_style": "none"
}
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 ===============
@numbnet
numbnet / Convert-WindowsImage.ps1
Created August 22, 2020 08:09 — forked from john-clark/Convert-WindowsImage.ps1
deplyment powershell scripts found on the internets
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
##### 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