Skip to content

Instantly share code, notes, and snippets.

View Jacinto27's full-sized avatar
🐻‍❄️

Jacinto27

🐻‍❄️
View GitHub Profile
@shrayasr
shrayasr / keys.ahk
Last active June 22, 2024 17:35
AutoHotKey shortcuts
if not A_IsAdmin
{
Run *RunAs "%A_ScriptFullPath%" ; Requires v1.0.92.01+
ExitApp
}
#SingleInstance Force
#NoEnv
#Warn
@StevenMMortimer
StevenMMortimer / most-starred-r-packages.R
Last active March 8, 2024 22:06
Most Starred R Packages
# load packages & custom functions ---------------------------------------------
today_date <- Sys.Date()
from_date <- as.Date("2015-06-01")
to_date <- as.Date("2020-05-31")
library(tidyverse)
library(httr)
library(cranlogs)
library(ggrepel)
@alanstevens
alanstevens / Windows11_Setup.md
Last active June 22, 2024 02:16
Windows 11 Setup

This guide was created using Microsoft Windows 11 Pro

Version 21H2 build 22000.194

Installation

System Updates:

  • Settings -> Windows Update
  • Install all updates

Powershell Execution Policy:

  • launch Windows Powershell as administrator and execute:
@ichengzi
ichengzi / create-new-file.ahk
Created April 22, 2016 15:05
AutoHotKey: Create a new file with Ctrl+Alt+N keyboard shortcut in Windows Explorer
; This is part of my AutoHotKey [1] script. When you are in Windows Explorer it
; allows you to press Ctrl+Alt+N and type a filename, and that file is created
; in the current directory and opened in the appropriate editor (usually
; [gVim](http://www.vim.org/) in my case, but it will use whatever program is
; associated with the file in Windows Explorer).
; This is much easier than the alternative that I have been using until now:
; Right click > New > Text file, delete default filename and extension (which
; isn't highlighted in Windows 7), type the filename, press enter twice.
; (Particularly for creating dot files like ".htaccess".)