Skip to content

Instantly share code, notes, and snippets.

View lakshya-sky's full-sized avatar

Darshan Kathiriya lakshya-sky

View GitHub Profile
@erickpatrick
erickpatrick / init.vim
Last active January 10, 2023 18:42
Neovim CoC Intelephense configuration
" TODO: split up config into multiple files
" source $HOME/.config/nvim/vim-plug/plugins.vim
" source $HOME/.config/nvim/<category>/<sub-category-filename>.vim
" source $HOME/.config/nvim/<plug-config>/<plugin-name>.vim
set nocompatible
filetype off
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
@w1th0utnam3
w1th0utnam3 / rust_electron.md
Last active January 29, 2024 23:17
Building a Rust/Electron app
@swizzlr
swizzlr / profiling_swift_in_linux.md
Created November 15, 2017 19:51
Profiling Swift Apps on Linux

Profiling Swift in Linux

In order to profile memory leakage/heap growth in Swift on Linux, you need to a) run it on Linux b) use a profiling tool.

Docker and Valgrind to the rescue.

Installing Valgrind in a Linux container

We're using the official Swift image here: FROM swift:4.

@p10rahulm
p10rahulm / create_static_site.MD
Last active July 23, 2024 01:35
Create Static Site using Godaddy and Google Cloud Storage in 15 minutes

Steps to create a static Site using Godaddy and Google Cloud Storage

Create a static html site

  • Can use this boilerplate to modify: http://www.initializr.com/
  • Make all your subpages and make sure to link them
  • Check your index.html works
@DanielSerdyukov
DanielSerdyukov / icu-build-android.md
Created February 27, 2016 18:02
Build ICU for Android

Build ICU for Android

Prepare cross build environment

cd icu && mkdir linux && cd linux

../source/runConfigureICU Linux --prefix=$PWD/prebuilts \
    CFLAGS="-Os"
    CXXFLAGS="--std=c++11" \
@cgmb
cgmb / 20-intel.conf
Last active July 14, 2019 21:07
Vulkan with Intel Graphics on Ubuntu 14.04
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "DRI" "3"
EndSection