Skip to content

Instantly share code, notes, and snippets.

@arsaccol
arsaccol / .vimrc
Last active July 16, 2019 13:40
vimrc file I've been using on Windows, putting it here as kind of a backup.
set noswapfile
set autoindent
set smartindent
set splitbelow " absolutely
set splitright " blessed
set tabstop=4
set shiftwidth=4
set expandtab
@arsaccol
arsaccol / pong.c
Last active July 29, 2020 01:48
Crappy Pong clone for Windows command line I did back in ~2012. Compiled and tested originally with MinGW.
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <time.h>
#include <conio.h>
#include <string.h>
#define PDLMAX 5
#define PDLCTR 9