Skip to content

Instantly share code, notes, and snippets.

View rundel's full-sized avatar

Colin Rundel rundel

View GitHub Profile
#!/bin/bash
tftpdir="/var/lib/tftpboot/default/"
vmlinuz="$tftpdir/fedora/27/x86_64/vmlinuz"
initrd="$tftpdir/fedora/27/x86_64/initrd.img"
sudo /usr/bin/scp [email protected]:$vmlinuz /mnt/boot/ks_vmlinuz
sudo /usr/bin/scp [email protected]:$initrd /mnt/boot/ks_initrd.img
@rundel
rundel / test.R
Created October 7, 2021 14:36
Testing 1 2 3 ...
print('hello world')
@rundel
rundel / test.R
Created October 7, 2021 17:08
Testing 1,2,3,...
print('hello world')
-------------------------------------
Translated Report (Full Report Below)
-------------------------------------
Process: gdal_test [17990]
Path: /Users/USER/*/gdal_test
Identifier: gdal_test
Version: ???
Code Type: ARM-64 (Native)
Parent Process: Exited process [17986]
class Quarto < Formula
desc "Scientific and technical publishing system built on Pandoc"
homepage "https://www.quarto.org/"
version "0.9.504"
url "https://github.com/quarto-dev/quarto-cli/releases/download/v#{version}/quarto-#{version}-macos.tar.gz"
sha256 "1f219c7d82d10d561bbab573ebe8f2990a26d37817bb990a04fe9fa48c843244"
license "GPL-2.0-or-later"
def install
prefix.install Dir["*"]
import asyncio
import tornado.web
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write("Hello, world")
def make_app():
return tornado.web.Application([
@rundel
rundel / test.R
Created February 23, 2024 15:34
Testing 1 2 3 ...
print('hello world')
request("https://api.github.com/orgs/sta523-fa24/repos") |>
req_auth_bearer_token(token) |>
req_url_query(per_page = 100) |>
req_perform() |>
resp_body_json() |>
purrr::map_chr("full_name")
@rundel
rundel / test.R
Created October 9, 2024 15:14
Testing 1 2 3 ...
print('hello world!')
1+1
x=3

Hello world!