Skip to content

Instantly share code, notes, and snippets.

View YanikCeulemans's full-sized avatar

Yanik Ceulemans YanikCeulemans

  • Antwerp, Belgium
  • 13:06 (UTC +01:00)
View GitHub Profile
@YanikCeulemans
YanikCeulemans / Day6Part2.fsx
Created December 20, 2024 09:08
Advent of code 2024 - Day 6 part 2
open System
let input = """
..................#................................................................#........#.....................................
...#...........#...................................................#........................................#.................#...
...................................#................#.#...............#.................................................#.........
.....#......#................#.....................................................................#..........#........#......#...
............................................................................................#.....................#...............
.....................#..##...#........................#.................#.......................#..#.........#.......#...#......#.
............##....................................##..................#...............................#....#......................
.............#............#.#..#.......#...........#..............#............
@YanikCeulemans
YanikCeulemans / init.vim
Last active August 18, 2020 08:08
NeoVim Configuration
" Forget being compatible with good ol' vi
set nocompatible
" Start vim plugged
" Specify a directory for plugins
call plug#begin('~/.vim/plugged')
Plug 'neoclide/coc.nvim', {'branch': 'release'}