-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:castor-software/rethread
- Loading branch information
Showing
169 changed files
with
253,246 additions
and
110 deletions.
There are no files selected for viewing
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
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
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
10 changes: 10 additions & 0 deletions
10
code/myriad/get_all_contributors/gh_repos_lists/exclusive_lists.csv
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
loam,googlefonts/Inconsolata;emacs-mirror/emacs;processing/p5.js;rust-lang/rust;rust-lang/cargo;ritwickdey/vscode-live-server;rtyley/bfg-repo-cleaner;electro-smith/libDaisy;festvox/festival;supercollider/supercollider;supercollider/sc3-plugins;coqui-ai/TTS;arduino/arduino-ide;arduino/Arduino;PipeWire/pipewire;jackaudio/jack2;LibreOffice/core;inkscape/inkscape;espressif/arduino-esp32;arduino/ArduinoCore-API;meta-llama/llama-models;github/docs;github/rest-api-description;signalapp/Signal-Android;signalapp/Signal-Desktop;ProtonMail/WebClients;nextcloud/server;nextcloud/spreed;nextcloud/talk-android;nextcloud/text;nextcloud/collectives;GNOME/gimp;i3/i3.github.io;KDE/plasma-desktop;huggingface/chat-ui;rust-embedded/cortex-m;rust-embedded/bare-metal;djc/rustc-version-rs;dtolnay/semver;steveklabnik/semver-parser;rust-embedded/critical-section;rust-embedded/embedded-hal;rust-embedded/nb;rust-embedded/volatile-register;rust-embedded/cortex-m;dtolnay/proc-macro2;dtolnay/unicode-ident;dtolnay/quote;dtolnay/syn;rtic-rs/rtic;indexmap-rs/indexmap;rust-lang/hashbrown;cuviper/autocfg;rust-embedded/embedded-alloc;tarcieri/micromath;stm32-rs/stm32h7xx-hal;korken89/fugit;rust-lang/libm;rust-lang/log;rust-num/num-traits;probe-rs/rtt-target;notepad-plus-plus/notepad-plus-plus;image-rs/image;hideakitai/ESP32SPISlave;Makerfabs/Makerfabs-ESP32-UWB-DW3000 | ||
apocryph,NVlabs/stylegan2;autonomousvision/projected-gan;textmate/textmate;openframeworks/openFrameworks | ||
megatouch,WebAudio/web-audio-api;WebAudio/web-midi-api;KhronosGroup/WebGL;KhronosGroup/GLSL;KhronosGroup/glslang | ||
dear-ai,sveltejs/svelte;microsoft/TypeScript;vitejs/vite;brandongmwong/elizabot-js;nodemailer/nodemailer;pocketbase/pocketbase;sass/sass;moment/moment;openai/openai-node;carstenlebek/svelte-email;nolimits4web/swiper;keenethics/svelte-notifications;joshnuss/svelte-persisted-store;sc00/svelte-textarea-auto-height;mozman/svgwrite;matplotlib/matplotlib;scikit-learn/scikit-learn;scipy/scipy;btel/svg_utils;numpy/numpy;kirovj/pocketbase-pyclient;sjvasquez/handwriting-synthesis;otuva/handwriting-synthesis;mossblaser/plottie;caprover/caprover;tensorflow/tensorflow | ||
glommen,mrdoob/three.js | ||
infinite-sand-sorter,nodejs/node;npm/cli;VSCodium/vscodium | ||
why-am-i-seeing-this,HandBrake/HandBrake;videolan/vlc;brave/brave-browser;brave/brave-core | ||
relaxrelaxrelax,signalapp/Signal-iOS;processing/processing | ||
pain-creature,BelaPlatform/Bela | ||
a-not-so-distant-past,EnvelopSound/EnvelopForLive;TU-Studio/IEMPluginSuite |
31 changes: 31 additions & 0 deletions
31
code/myriad/get_all_contributors/gh_repos_lists/get_exclusive_lists.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import csv | ||
|
||
all_repos = [] | ||
|
||
lists = ["loam", "apocryph", "megatouch", "dear-ai", "glommen", "infinite-sand-sorter", "why-am-i-seeing-this", "relaxrelaxrelax", "pain-creature", "a-not-so-distant-past"] | ||
for l in lists: | ||
with open(l + "_gh_repos.txt") as f: | ||
repos = f.read().splitlines() | ||
all_repos.append(repos) | ||
|
||
exclusive_lists = [] | ||
non_exclusive_list = [] | ||
for i in range(len(all_repos)): | ||
li = all_repos[i] | ||
this_exclusive_list = [] | ||
for r in li: | ||
is_exclusive = True | ||
for j in range(len(all_repos)): | ||
if i != j: | ||
lj = all_repos[j] | ||
if (r in lj): | ||
non_exclusive_list = list(set(non_exclusive_list + [r])) | ||
is_exclusive = False | ||
break | ||
if is_exclusive: | ||
this_exclusive_list.append(r) | ||
exclusive_lists.append([lists[i], ';'.join(this_exclusive_list)]) | ||
|
||
with open("exclusive_lists.csv", "w", newline="") as csvfile: | ||
writer = csv.writer(csvfile, delimiter=",") | ||
writer.writerows(exclusive_lists) |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ IEM Plug-in Suite | |
Inkscape | ||
IrfanView | ||
LinuxCommand | ||
Louise | ||
Mind Monitor | ||
Tor | ||
XnConvert | ||
|
1 change: 1 addition & 0 deletions
1
code/myriad/get_all_contributors/other_projects_lists/loam_other_projects.txt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
Firefox | ||
Inkscape | ||
Louise |
Oops, something went wrong.