Skip to content

Instantly share code, notes, and snippets.

View hexavik's full-sized avatar
🦀

Vikrant A P hexavik

🦀
View GitHub Profile
@hexavik
hexavik / keybase.md
Created December 7, 2020 12:30
This is keybase.io gist

Keybase proof

I hereby claim:

  • I am hexavik on github.
  • I am hexavik (https://keybase.io/hexavik) on keybase.
  • I have a public key ASDIkEdrvFQY1K4Nzyrog8OrRbYJqH0fBTmzMLLtiB0_HAo

To claim this, I am signing this object:

@hexavik
hexavik / workbench.colorCustomizations.json
Last active November 25, 2020 10:18 — forked from jacklorusso/workbench.colorCustomizations.json
A list of all Visual Studio Code customizable colors, grouped by UI region. Copy and paste into User Settings (comments are allowed) to tweak an existing theme or work on your own.
"workbench.colorCustomizations": {
// Contrast Colors - The contrast colors are typically only set for high contrast themes. If set, they add an additional border around items across the UI to increase the contrast.
"contrastActiveBorder": "",
"contrastBorder": "",
// Base Colors
"focusBorder": "",
"foreground": "",
"widget.shadow": "",
"selection.background": "",
"descriptionForeground": "",
@hexavik
hexavik / closure-wrap-function.c
Created September 4, 2020 13:01 — forked from cyfdecyf/closure-wrap-function.c
Examples to wrap function in C in different ways (workable or not)
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
// This code can now only work on Linux system.
// It has some problem on OS X. Maybe I'll fix it someday.
#if __WORDSIZE != 64 || !defined(__x86_64__)
#error "This program only works on IA64 machine."