- Y AXIS: Mits 900W Servo, 1500 Rated RPM, 3000 Max RPM, 5.39NM
- Ballscrew: 40MM DIA 8MM Pitch
- Max load: 3500 lb (1588 kg)
- Max thrust: 2550 lbf (11343 N)
- Advertised max feedrate: 1000 ipm
- Calculated max feedrate (max rpm * pitch): 944 ipm
- Max cceleration with rated load (+ 800lb saddle/table): 11343 / (1588 + 362) = 5.81 m/s2 (0.59 G)
This file contains 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
PROMPT = """ | |
You are an expert system that is helping to decide if a document is useful as context for a larger prompt. | |
Given the following file, return an integer from 0 to 100 that indicates what percentage of this file is relevant to the prompt given later. | |
A relevance score of 0 means 'there are no parts of this file that are relevant to the prompt' and a relevance score of 100 means 'every part of this file is relevant to the prompt'. | |
========= FILE START ========== | |
%%FILE_CONTENTS%% | |
========== FILE END =========== | |
How relevant is this file to the following prompt? |
This file contains 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
#! /usr/bin/env ruby | |
# This is a very simple RAG setup which uses the `gemma2:9b` model to check each of the | |
# files in a directory for relevance to a prompt. The most relevant files are then used | |
# as context for a response to the prompt. This system is not fast, but it can run completely | |
# on your local machine and can reason about code fairly well. | |
require 'bundler/inline' | |
require 'json' |
This file contains 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
Processing teensy41 (platform: teensy; platform_packages: [email protected]; board: teensy41; framework: arduino; upload_protocol: teensy-cli; extra_scripts: test/delay_after_upload.py; build_unflags: -std=gnu++11 -std=gnu++14; build_flags: -std=c++20) | |
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | |
CONFIGURATION: https://docs.platformio.org/page/boards/teensy/teensy41.html | |
PLATFORM: Teensy (4.15.0) > Teensy 4.1 | |
HARDWARE: IMXRT1062 600MHz, 512KB RAM, 7.75MB Flash | |
DEBUG: Current (jlink) External (jlink) | |
PACKAGES: | |
- framework-arduinoteensy 1.156.0 (1.56) | |
- tool-teensy 1.155.0 (1.55) |
This file contains 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
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Hello World!</title> | |
</head> | |
<body> | |
<script> | |
var canvas = document.createElement("canvas"); | |
var context = this.canvas.getContext("2d"); | |
context.fillStyle = "black"; |
This file contains 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
% | |
N0 O9002 (WORK OFFSET COMPENSATOR) | |
#IF H21 < 0 THEN GOTO :ERROR | |
#IF H21 = 0 THEN GOTO :ERROR | |
#PRINT "THIS PROGRAM UPDATES A FIXTURE OFFSET Z POSITION TO" | |
#PRINT "TAKE INTO ACCOUNT THE LENGTH OF THE REFERENCE TOOL (TOOL 21)." | |
#PRINT "" | |
#PRINT "ENTER THE NUMBER OF THE FIXTURE OFFSET TO UPDATE:" | |
#INPUT V10 | |
#V1 = FZ(V10) |
This file contains 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
version: 2 | |
jobs: | |
docker_config: &docker_config | |
- image: circleci/ruby:2.3.4 | |
environment: | |
RAILS_ENV: test | |
- image: circleci/mysql:5.6 | |
environment: | |
MYSQL_DATABASE: circle_test | |
MYSQL_HOST: 127.0.0.1 |
This file contains 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
version: 2 | |
jobs: | |
test_project_1: | |
docker: | |
- image: circleci/ruby:2.3.4 | |
environment: | |
RAILS_ENV: test | |
- image: circleci/mysql:5.6 | |
environment: | |
MYSQL_DATABASE: circle_test |
This file contains 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
#include <SoftwareSerial.h> | |
#include <serLCD.h> | |
int lcdTxPin = 2; | |
int tachPin = 3; | |
volatile int pulseCount = 0; | |
volatile unsigned long samplePeriodStart = 0; | |
volatile unsigned long pulsePeriod = 0; | |
unsigned long rpm = 0; |
This file contains 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 TooCheapForInstagram | |
def process(item) | |
return unless item.is_a?(Potion::StaticFile) | |
extensions = [".jpg", ".jpeg", ".gif", ".png"] | |
return unless extensions.include?(File.extname(item.output_path).downcase) | |
image = MiniMagick::Image.read(item.content) | |
image.sepia_tone("80%") | |
image.vignette("10") | |
item.content = image.to_blob |
NewerOlder