Start a shell inside the container:
cog run bash
This will mount your working directory into /src
inside the container.
When the shell has started, install ipython:
{"prompt": "a cat", "images": [{"url": "https://replicate.delivery/yhqm/M3MzBpeWPfg0qkNZcK1x4dMXr2boczHOqTHsxnEjtauJAvkTA/out-0.png", "labels": {"model": "stable-diffusion"}}, {"url": "https://replicate.delivery/czjl/49VkOf3fu7sfgon0W2OMf5dlIxiwUpsBAicD1lveJP0e2cL5E/output.webp", "labels": {"model": "flux-dev"}}]} | |
{"prompt": "a dog", "images": [{"url": "https://replicate.delivery/yhqm/yzKdMfHFMeq14kceu334KavdzLMcETTHiC12E2iMkfNgS8SOB/out-0.png", "labels": {"model": "stable-diffusion"}}, {"url": "https://replicate.delivery/czjl/c2e693uAGuWIe0o6ZOqFF3R5uJt5hq7SPSsrkgfA6dz1JeSOB/output.webp", "labels": {"model": "flux-dev"}}]} |
@@ -38,6 +38,8 @@ const ( | |
RowType | |
BarGaugeType | |
HeatmapType | |
+ TimeseriesType | |
+ StateTimelineType | |
) | |
const MixedSource = "-- Mixed --" | |
@@ -59,6 +61,8 @@ type ( |
from scipy.signal import convolve2d | |
import sys | |
import multiprocessing | |
import numpy as np | |
shapes = [ | |
np.array([ | |
[1, 0, 0, 1], | |
[1, 0, 0, 1], | |
[1, 1, 1, 1], |
;; spotify-play-track | |
;; osx only 🙈 | |
(defun osascript (script) | |
(shell-command-to-string (concat "osascript -e " (shell-quote-argument script)))) | |
(defun spotify-uri-bounds-of-thing-at-point () | |
(save-excursion | |
(skip-chars-backward "a-zA-Z0-9:") | |
(cons (point) (progn (skip-chars-forward "a-zA-Z0-9:") (point))))) |
$ gnuplot -e 'set term dumb size 100, 30; set fit quiet; set xr [1000:20000]; f(x) = (a - d) / (1 + ((x / c) ** b)) + d; fit f(x) "acc.txt" u 1:2 via a, b, c, d; p "acc.txt" u 1:2 w l notit, f(x) w l notit' | |
80 ++---+--------+---------+---------+--------+---------+--------+---------+--------+--------++ | |
| + + + + + + + + + + | |
79 ++ ################# | |
| * *******############## | | |
| * *****************#** | | |
78 ++ * ** ************ *** * * ++ |
[{"date": "2015-09-26 00:00:00", "name": "BILLBOARD SINGLES", "songs": [{"position": 1, "artist": "THE WEEKND", "title": "Can't Feel My Face"}, {"position": 2, "artist": "THE WEEKND", "title": "The Hills"}, {"position": 3, "artist": "JUSTIN BIEBER", "title": "What Do You Mean?"}, {"position": 4, "artist": "SILENTO", "title": "Watch Me"}, {"position": 5, "artist": "OMI", "title": "Cheerleader"}, {"position": 6, "artist": "MAJOR LAZER x DJ SNAKE featuring M0", "title": "Lean On"}, {"position": 7, "artist": "SELENA GOMEZ featuring A$AP ROCKY", "title": "Good For You"}, {"position": 8, "artist": "FETTY WAP featuring REMY BOYZ", "title": "679"}, {"position": 9, "artist": "R. CITY featuring ADAM LEVINE", "title": "Locked Away"}, {"position": 10, "artist": "ED SHEERAN", "title": "Photograph"}, {"position": 11, "artist": "DEMI LOVATO", "title": "Cool For The Summer"}, {"position": 12, "artist": "TAYLOR SWIFT", "title": "Wildest Dreams"}, {"position": 13, "artist": "SKRILLEX & DIPLO featuring JUSTIN BIEBER", "title": |
grimesoblivion 18441827 | |
altjbreezeblocks 70737601 | |
lorderoyals 513468680 | |
thelumineershohey 134697041 | |
chvrchesthemotherweshare 11418762 | |
gotyesomebodythatiusedtoknow 685106679 | |
arcticmonkeysdoiwannaknow 217387511 | |
ofmonstersandmenlittletalks 158730595 | |
alabamashakesholdon 14149362 | |
djangodjangodefault 3871704 |
;; -*- lexical-binding: t -*- | |
(eval-when-compile | |
(require 'cl)) | |
(defun rnd (from to) | |
(let ((r (/ (random 10000) 10000.0))) | |
(+ (* r (- to from)) from))) | |
(defun init-weights (n-inputs n-outputs) |
function conky_format(format, number) | |
return string.format(format, conky_parse(number)) | |
end | |
function conky_average(...) | |
local sum = 0 | |
local count = 0 | |
for _, v in ipairs({...}) do | |
sum = sum + conky_parse(v) |