Hello world!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('hello world!') | |
1+1 | |
x=3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('hello world') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import tornado.web | |
class MainHandler(tornado.web.RequestHandler): | |
def get(self): | |
self.write("Hello, world") | |
def make_app(): | |
return tornado.web.Application([ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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["*"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------- | |
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] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('hello world') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('hello world') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
NewerOlder