As you can see, I'm running Arrow OS 13.1 (Android 13) on Lenovo Tab M10 HD 2nd Gen (X306X)
I just copy-pasted my reddit post in this github gist.
»Intro/Information
// ==UserScript== | |
// @name Claude.ai-ChatDownloader | |
// @namespace http://tampermonkey.net/ | |
// @version 1.9 | |
// @description Download all chats from Claude.ai as a single file | |
// @match https://claude.ai/* | |
// @match https://claude.ai/chats | |
// @match https://claude.ai/chat/* | |
// @grant GM_setValue | |
// @grant GM_getValue |
#!/bin/bash | |
echo "Installing TextLive" | |
sudo apt install -y texlive-latex-extra | |
sudo apt install -y texlive-lang-english texlive-lang-spanish texlive-bibtex-extra | |
# sudo apt autoremove |
""" | |
A bare-bones SVG SketchBook - Licensed under GPL v3.0 | |
Alexandre B A Villares - http://abav.lugaralgum.com | |
in collaboration with Foad S. Farimani https://twitter.com/fsfarimani | |
v2020_12_19 exporting SVG now! | |
v2020_12_20 line mode & circle mode | |
""" | |
add_library('svg') |
""" | |
More naive graph drawing | |
Using Processing Python mode | |
To run this you'll need: | |
https://abav.lugaralgum.com/como-instalar-o-processing-modo-python/index-EN.html | |
""" | |
nodes = [] | |
edges = [] | |
NODE_SIZE = 50 # Diâmetro dos nodes |
First you need docker
, brew
, XQuartz
and socat
on your host.
Now run this in new terminal :
socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:"$DISPLAY"
Package pytranslate, introduced through merge #15 and #17 as a loadable package in Maxima provides Maxima to Python translation functionality. It was developed under the mentorship of Dimiter Prodanov and Robert Dodier as an [INCF](https://www.incf.org/activities/training/google-sum
cmake_minimum_required(VERSION 3.1) | |
project(OpenCL_Example) | |
find_package(OpenCL REQUIRED) | |
include_directories(${OpenCL_INCLUDE_DIRS}) | |
link_directories(${OpenCL_LIBRARY}) | |
add_executable(main main.c) | |
target_include_directories(main PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) |
C++ package management can be complicated.
Below are some key tools involved:
Make runs commands defined in a Makefile, for example, to build and install programs with the compiler and linker. For our purposes, we won't worry about what this looks like; you only need to understand its purpose in relation to CMake.
Use a productive notebook interface to weave together narrative text and code to produce elegantly formatted output. Use multiple languages including R, Python, and SQL.