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
ID | length (mm) | |
---|---|---|
L02 | 198 | |
L03 | 79 | |
L04 | 112 | |
L05 | 114 | |
L06 | 106 | |
L07 | 95 | |
L09 | 71 | |
L19 | 115 | |
L20 | 111 |
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
-- Neovim Configuration | |
-- Basic UI Settings | |
vim.opt.number = true -- Show line numbers | |
vim.opt.shiftwidth = 4 -- Set indentation to 4 spaces | |
vim.opt.tabstop = 4 -- Set tab width to 4 spaces | |
vim.opt.expandtab = true -- Use spaces instead of tabs | |
vim.opt.autoindent = true -- Enable auto indentation | |
vim.opt.smartindent = true -- Enable smart indentation | |
-- Search Settings |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta name="generator" content="HTML Tidy for HTML5 for Linux version 5.6.0"> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Customizable Prompt Request</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; |
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
#!/usr/bin/env python3 | |
import os | |
import itertools | |
import argparse | |
import json | |
import logging | |
import multiprocessing | |
import pathlib | |
import subprocess | |
import sys |
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
#include <string> | |
#include <iostream> | |
#include <utility> | |
class A { | |
private: | |
std::string data_; | |
public: |
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 itertools | |
import math | |
import heapq | |
import sys | |
import numpy | |
from copy import deepcopy | |
def traveling_salesman(goal_list, robot_pose): # returns list of goals sorted in order they should be visited |