Skip to content

Instantly share code, notes, and snippets.

View efvincent's full-sized avatar

Eric Vincent efvincent

View GitHub Profile
@efvincent
efvincent / DSLR_webcam_arch_linux.md
Created November 28, 2023 23:04 — forked from keilmillerjr/DSLR_webcam_arch_linux.md
Using DSLR as a webcam on Arch/Manjaro Linux
@efvincent
efvincent / multiple_ssh_setting.md
Created February 14, 2022 20:45 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"
@efvincent
efvincent / purescript.jsonc
Last active February 5, 2022 23:06 — forked from galtsev/purescript.json
purescript unicode snippets for vscode
{
/*
// Place your snippets for PureScript here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
"Print to console": {
"prefix": "log",
"body": [
@efvincent
efvincent / tl-debounce.js
Last active August 29, 2015 13:57 — forked from tommaitland/ng-debounce.js
Debounce for a textbox. Thanks to tommaitland, modified to not use "ng" prefix
angular.module('app', []).directive('tlDebounce', function($timeout) {
return {
restrict: 'A',
require: 'ngModel',
priority: 99,
link: function(scope, elm, attr, ngModelCtrl) {
if (attr.type === 'radio' || attr.type === 'checkbox') return;
elm.unbind('input');