Skip to content

Instantly share code, notes, and snippets.

from transformers import AutoTokenizer, AutoModelForCausalLM
# Load the tokenizer and model
tokenizer = AutoTokenizer.from_pretrained("notnate/Llama-3.1-8B-Instruct-blockchain")
model = AutoModelForCausalLM.from_pretrained("notnate/Llama-3.1-8B-Instruct-blockchain")
# Define the prompt
prompt = "Explain how blockchain works in simple terms."
# Tokenize the prompt
@BlazerYoo
BlazerYoo / install_docker_in_colab.sh
Created October 27, 2024 01:38 — forked from mwufi/install_docker_in_colab.sh
Install Docker in Google Colab!
# First let's update all the packages to the latest ones with the following command
sudo apt update -qq
# Now we want to install some prerequisite packages which will let us use HTTPS over apt
sudo apt install apt-transport-https ca-certificates curl software-properties-common -qq
# After that we will add the GPG key for the official Docker repository to the system
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
# We will add the Docker repository to our APT sources
@BlazerYoo
BlazerYoo / mae345-setup.sh
Created September 24, 2024 15:32
Setting up python environment for cfclient
# 1. Intall homebrew if now already installed
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# 2. Install pyenv if not already installed
brew install pyenv
# 3. Add pyenv to shell start up
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init --path)"
eval "$(pyenv init -)"
@BlazerYoo
BlazerYoo / mturk.html
Created July 4, 2024 03:52
HTML for MTURK task format
<!-- For help on using this template, see the blog post: https://blog.mturk.com/editing-the-survey-link-project-template-in-the-ui-7c75285105fb#.py7towsdx --><!-- HIT template: SurveyLink-v3.0 --><!-- The following snippet enables the 'responsive' behavior on smaller screens -->
<meta content="width=device-width,initial-scale=1" name="viewport" />
<section class="container" id="SurveyLink"><!-- Instructions -->
<div class="row">
<div class="col-xs-12 col-md-12">
<div class="panel panel-primary"><!-- WARNING: the ids "collapseTrigger" and "instructionBody" are being used to enable expand/collapse feature -->
<h4 class="panel-heading"><strong>Survey Link Instructions</strong></h4>
<div class="panel-body" id="instructionBody">
<p>This is a short survey that asks you to look at an image of wildlife in social media and answer questions. Expected time commitment: less than 10 mins.</p>
@BlazerYoo
BlazerYoo / prevent_reload.js
Created February 12, 2024 23:41
Prevent reload/exit of website
// Prevent reload
window.addEventListener('beforeunload', (event) => {
// Cancel the event as stated by the standard.
event.preventDefault();
// Chrome requires returnValue to be set.
event.returnValue = '';
});
@BlazerYoo
BlazerYoo / ansi_colors.json
Created February 11, 2024 01:57
Ansi colors
{
"fg_default": 39,
"bg_default": 49,
"fg_black": 30,
"bg_black": 40,
"fg_red": 31,
"bg_red": 41,
"fg_green": 32,
"bg_green": 42,
window.addEventListener('beforeunload', (event) => {
// Cancel the event as stated by the standard.
event.preventDefault();
// Chrome requires returnValue to be set.
event.returnValue = '';
});
from IPython.display import JSON
from google.colab import output
from subprocess import getoutput
import os
def shell(command):
if command.startswith('cd'):
path = command.strip().split(maxsplit=1)[1]
os.chdir(path)
return JSON([''])
@BlazerYoo
BlazerYoo / java.sh
Created May 13, 2023 02:37
Compile and execute Java programs in one line
#!/bin/bash
# Compile Java program
javac $1.java
# Check if compilation was successful
if [ $? -eq 0 ]; then
# Execute Java program with command line arguments
java $1 "${@:2}"
@BlazerYoo
BlazerYoo / modern-hosting-2021.md
Created April 4, 2023 22:46 — forked from wiverson/modern-hosting-2021.md
List of free hosting services (that also offer options to scale up for $) in 2021

Italics means the text/description is directly from the vendor, usually the slug line on their home page.

Non-italics means it's my comments/editorial.

Static Sites

  • Surge
    • Static web publishing for Front-End Developers
    • Simple, single-command web publishing. Publish HTML, CSS, and JS for free, without leaving the command line.