Skip to content

Instantly share code, notes, and snippets.

View ckunte's full-sized avatar

Chetan Kunte ckunte

View GitHub Profile
@ckunte
ckunte / build.md
Created January 8, 2025 12:55
Build instructions for setting Sublime Text up to build (e.g. compile, run, or typeset)

Build

These are instructions for setting [Sublime Text][st] up to build (i.e., compile, run, or type-set) a source to produce some output. Owing to different file paths, these would be different obviously for different systems. In all of these, be sure to adjust paths as necessary.

Usage. Select Tools > Build System > New Build System..., and replace the entire pre-populated instructions with the following respectively. With a source file open in Sublime Text, Build is invoked with either Ctrl B  (Windows) or  ⌘ B  (MacOS).

LaTeX (MacOS): LaTeX-Mac.sublime-build:

{
@ckunte
ckunte / code-of-conduct-x87.md
Created December 15, 2024 06:55
Code of conduct - Class of 1987

Code of conduct

Without a sense of purpose or belonging, the danger that communities eventually become e(ch|g)o chambers is real. After a few incidents, we came to realise we needed a code of conduct too. Volunteering to take a stab, this is what we came up with.

Class of 1987. Class of 1987.

We are built on the foundation of friendship, trust, and the highest respect for one another. This we know in our bones, but should we ever need to refer to, then here it is:

@ckunte
ckunte / setup-st-typst.md
Last active November 2, 2024 04:04
Sublime Text + Typst setup for Windows

Sublime Text + Typst setup for Windows

  1. [Download Sublime Text][dst] (portable version)
  2. [Download Typst][dty] (typically: typst-x86_64-pc-windows-msvc.zip file)
  3. Unzip both into, say, a misc folder. An example of executable file path:
    C:\Users\ckun\misc\st
    C:\Users\ckun\misc\typst
    
  4. Write a custom build file for Sublime Text, Typst-win.sublime-build, with the following content in it, and park it under Preferences > Browse Packages > User:
@ckunte
ckunte / build-typst.md
Created October 18, 2024 05:42
Build Typst

Typst to PDF on MacOS and Windows

Typst can be installed on MacOS with brew. Typst package for Sublime Text provides the build setup needed to compile typ file to a pdf. For older MacOS, or Windows, see below.

Using Sublime Text on older MacOS

My 12+y old laptop, long out-of-date and warranty, is better than a Raspberry Pi for desktop computing in every practicable way. For writing, editing, scripting, typesetting, and for terminal applications, it works just fine.

@ckunte
ckunte / build-latex.md
Created October 18, 2024 05:36
Build LaTeX

LaTeX to pdf on MacOS and Windows

Using Sublime Text on MacOS

  1. Select Tools > Build System > New Build System... and replace the entire pre-populated JSON instruction with the following:

    {
      "cmd": ["/Library/TeX/texbin/xelatex", "$file"],

"selector": "text.tex.latex"

@ckunte
ckunte / pi_sysinfo.sh
Last active October 12, 2024 02:23
Raspberry Pi sysinfo function
#!/bin/bash
# Define the function
display_system_info() {
# Set column width (adjust as needed)
local column_width=18
# Define a function to print data in a four-column format
print_table() {
local col1="$1"
local col2="$2"
@ckunte
ckunte / outlookreply.ahk
Created August 31, 2024 04:00
Scripting replies in Outlook with AutoHotkey v2
; Scripting replies in Outlook with AutoHotkey v2
;
; Hit Alt + x (or !x) to create a reply email (template) with
; salutation to sender's First Name from selected / opened
; email in Microsoft Outlook, which looks like this:
;
; Hello <FirstName>,
;
; Thank you for your email.
;
@ckunte
ckunte / preamble.typ
Last active July 16, 2024 06:02
Typst preamble -- an example
#let cknotes(doc) = {
// settings
set page(
header: align(left)[
#image("logo.png", width: 9%)
],
margin: (
top: 2cm,
y: 2cm,
),
@ckunte
ckunte / Typst-Cyg.sublime-build
Last active July 1, 2024 03:03
A build system for Typst via Cygwin
{
// Ctrl+B to build a .pdf file from .typ (in Sublime Text's current tab)
// Ref: https://forum.sublimetext.com/t/using-cygwin-for-build-system/8307/6
"shell_cmd" : "typst compile \"$file_name\"",
"selector" : "source.typ",
"path" : "C:\\Cygwin\\bin;$path",
"working_dir" : "$file_path"
}
@ckunte
ckunte / smallcaps.typ
Created April 18, 2024 03:54
Turn uppercase words into smallcaps in Typst
// Small caps ( see: https://github.com/typst/typst/discussions/3927 )
// Turn uppercase letters to small caps: use #sc([WORDINCAPS])
// for those that escape the REGEX match
#let sc(content) = text(features: ("c2sc",))[#content]
// For testing, comment the above line, and uncomment the line below
// let sc(content) = text(features: ("c2sc",))[#highlight(content)]
// Turn all uppercase words (any 2 or more grouping of A-Z
// ASCII characters) into small caps