Skip to content

Instantly share code, notes, and snippets.

View ashok-khanna's full-sized avatar
🏠
Working from home

Ashok Khanna ashok-khanna

🏠
Working from home
View GitHub Profile
@ashok-khanna
ashok-khanna / capi-editor.lisp
Created February 12, 2022 20:46
CAPI Editor Example
;;;;****************************************************************************
;;; Editor Example
;;;;****************************************************************************
(in-package "CL-USER")
(defvar *editor-text*
";;----------------------------------------------------------------------------
@ashok-khanna
ashok-khanna / gcloud-tramp.el
Created March 26, 2022 06:34 — forked from jackrusher/gcloud-tramp.el
Tramping into GCloud instances from within emacs
;; make sure you've set your default project with:
;; gcloud config set project <project-name>
(require 'tramp)
(add-to-list 'tramp-methods
'("gcssh"
(tramp-login-program "gcloud compute ssh")
(tramp-login-args (("%h")))
(tramp-async-args (("-q")))
(tramp-remote-shell "/bin/sh")
@ashok-khanna
ashok-khanna / package.json
Created April 10, 2022 02:08 — forked from sunilw/package.json
ebuild simple project
{
"name": "react tut",
"version": "0.0.1",
"description": "Steps towards a more sufficient build pipeline",
"main": "index.js",
"watch": {
"sass": {
"patterns": [
"./src/sass"
],