Skip to content

Instantly share code, notes, and snippets.

View faytranevozter's full-sized avatar
🛀
Lagi adus

Fahrur Rifai faytranevozter

🛀
Lagi adus
View GitHub Profile
@azagniotov
azagniotov / beautiful.rest.api.docs.in.markdown.md
Last active June 11, 2024 03:02
Example to create beautiful REST API docs in Markdown, inspired by Swagger API docs.
@BigOokie
BigOokie / MacOS-Multi-Version-Go-With-Homebrew.md
Last active May 24, 2024 06:05
Manage multiple versins of Go on MacOS with Homebrew

This process would likely apply to other Homebrew formula also.

First search for your desired package:

brew search go

You should get a list of results that include the below. Not "go" is very unspecific so you may get a lot of results:

@finscn
finscn / NewFile.py
Created June 19, 2015 07:39
A plugin of SublimeText 3 : Let the FOLDER of a new untitled file be as same as the folder of current activated file.
# NewFileAtCurrentFolder
import sublime_plugin
import os.path
class NewFileListener(sublime_plugin.EventListener):
def on_new_async(self, view):
if not view.window().active_view():
print("NF: no view")
return
@joyrexus
joyrexus / README.md
Last active May 3, 2024 10:41 — forked from liamcurry/gist:2597326
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})