Last active
December 6, 2024 14:34
-
-
Save hiAndrewQuinn/e1776d1e524ab424f9489a0454408b9e to your computer and use it in GitHub Desktop.
Revisions
-
hiAndrewQuinn revised this gist
Dec 6, 2024 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,14 @@ #!/usr/bin/env bash # List of usernames. MUST BE ALL LOWERCASE! users=( visakanv eigenrobot patio11 daniellefong thezvi richdecibels qiaochuyuan ) # ... Add anyone else you may want! I just grabbed the most followed accounts currently there. -
hiAndrewQuinn revised this gist
Dec 6, 2024 . 1 changed file with 6 additions and 9 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,19 +2,16 @@ # List of usernames users=( visakanv eigenrobot patio11 ) # ... Add anyone else you may want! I just grabbed the most followed accounts currently there. # N.B.: Some accounts will just return "Object Not Found", not sure why. # Use GNU parallel to download files in parallel. # {} will be replaced with each username. parallel -j4 curl -sS -o "tweets_{}.json" "https://fabxmporizzqflnftavs.supabase.co/storage/v1/object/public/archives/{}/archive.json" ::: "${users[@]}" # Output: tweets_patio11.json, tweets_eshear.json, ..., tweets_TheZvi.json. -
hiAndrewQuinn created this gist
Dec 6, 2024 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ #!/usr/bin/env bash # List of usernames users=( patio11 eshear visakanv eigenrobot DanielleFong m1guelpf QiaochuYuan RichDecibels TheZvi ) # ... Add anyone else you may want! I just grabbed the most followed accounts currently there. # Use GNU parallel to download files in parallel. # {} will be replaced with each username. parallel -j4 curl -sS -o "tweets_{}.json" "https://fabxmporizzqflnftavs.supabase.co/storage/v1/object/public/archives/{}/archive.json" ::: "${users[@]}" # Output: tweets_patio11.json, tweets_eshear.json, ..., tweets_TheZvi.json.