Skip to content

Instantly share code, notes, and snippets.

View incertia's full-sized avatar
💭
KEKW

Will Song incertia

💭
KEKW
View GitHub Profile
@incertia
incertia / .vimrc
Last active August 29, 2015 14:02
Just my personal .vimrc, nothing special
"" tab stuff
set ts=4 sw=4 sts=4 expandtab
"" other stuff
set background=dark
set scrolloff=2
set title
set matchtime=1
set nowrap
set showmatch
@incertia
incertia / dragvisuals.vim
Created June 17, 2014 00:46
This version turns off search highlighting on drag right, which is something the original script forgot to do apparently.
" Vim global plugin for dragging virtual blocks
" Last change: Tue Jul 24 07:19:35 EST 2012
" Maintainer: Damian Conway
" License: This file is placed in the public domain.
"#########################################################################
"## ##
"## Add the following (uncommented) to your .vimrc... ##
"## ##
"## runtime plugin/dragvisuals.vim ##

Keybase proof

I hereby claim:

  • I am incertia on github.
  • I am incertia (https://keybase.io/incertia) on keybase.
  • I have a public key whose fingerprint is 3570 2249 60B0 6183 5146 D244 AF0C A153 EA5D 9C7C

To claim this, I am signing this object:

#include "parser.h"
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
typedef int BOOL;
#define TRUE 1
#define FALSE 0
primes :: [Integer]
primes = sieve [2..]
where sieve (p:xs) = p : sieve [x | x <- xs, x `mod` p /= 0]
main :: IO ()
main = do
ln <- getLine
let i = (read ln :: Int) - 1
putStrLn (if i >= 0 then show $ primes !! i else "invalid index (please use an index starting from 1")
return ()
#include <stdio.h>
#include <stdlib.h>
#define INIT_SIZE 16
int *p = NULL;
int c = 0;
int s = 0;
int pgen(int n){

Keybase proof

I hereby claim:

  • I am incertia on github.
  • I am incertia (https://keybase.io/incertia) on keybase.
  • I have a public key whose fingerprint is 585D B6A5 13B0 EEA9 46A0 6910 F2B1 A34F 21A1 71E2

To claim this, I am signing this object:

Announcements

  • The WWW ender chest now publicly performs a trade between 64 nether stars <==> 1 creative tool modifier.
  • Server now runs with -Xms4096M -Xmx8192M.
  • Updated modpack version to 2.1.2.

Color Codes

  • W ==> White
  • G ==> Green
  • g ==> Gray
  • B ==> Blue

So after obtaining 10 copies of CS:GO gifts, I began debating whether or not it was feasible to write and maintain a completely undetectable cheat for at least 2 years, and I'm going to post some of the results of my basic levels of thinking here. Feel free to provide any evidence if anything I said is proven to be false and I will edit it in when I have the time.

A bit about VAC

  • AFAIK, 3 versions of VAC have been released. VAC1 with the 1.4 version of Counter-Strike, VAC2 some time in 2005, and VAC3 sometime recently.
  • I'm not sure if all versions of VAC are loaded at the same time, or have been merged into eachother (i.e. VAC3 also performs the same scans as VAC2). If anyone knows the answer to this, it would be greatly appreciated (just dump and analyze all loaded modules in a f2p account).
  • VAC bans are permanent. Meaning if I fuck up once, I have one less account to experiment with.

How does VAC work?

In order to bypass VAC, some level of understanding is required. Here are the main points I ha

@incertia
incertia / .bashrc
Last active April 8, 2016 19:01
Colored bash prompt that displays git branch status if in git repository with return code of previous command.
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend