Cactus_Head
Profile by artisticside(website:www.artisticsideoflife.com, Instagram:@artisticsideoflife_)
Banner by Elena_Medvedeva(Email:lenkovskai@yandex.ru, Website:https://creativemarket.com/elenamedvedeva)
- 32 Posts
- 135 Comments
ppl always bemoan how gluttonous pets are but humans are just as bad. Do you really think that you eat at the exact minute everyday? Or that you eat exactly three meals a day everyday?
Cactus_Head@programming.devOPto
Linux@lemmy.ml•Looking into downloading a webcomicEnglish
2·19 days agoIt’s probably better not to try to preserve webcomics. It’s like the only bad form of art.
That a bizzare take, why? From the sound of it you dont hate comics in general, what about them being on the web makes them “bad”?
Anyways, that honour goes to any podcast by any who calls themeself a comedian.
Cactus_Head@programming.devOPto
Voyager@lemmy.world•Is there a way to sync the web version of voyager to its mobile client(specifically for user tags )?English
4·17 days agoYeah, its a progressive web-app. It started that way, as web app you can add to your home screen, optimized for touch, long before it was a mobile app.
You could even self-host it, my home instance has its own self-host voyager instance.
Cactus_Head@programming.devOPto
Linux@lemmy.ml•Looking into downloading a webcomicEnglish
1·19 days agosorry i meant uploads and port-forwarding(This is in Egypt). Tried to seed for MyAnonymouse(a private tracker for books) but couldn’t
This is from a webtoon called Eldritch Darling
Cactus_Head@programming.devOPto
Linux@lemmy.ml•Looking into downloading a webcomicEnglish
1·20 days agoThanks you ❤️, but my country doesn’t allow any outgoing connections
Cactus_Head@programming.devOPto
Linux@lemmy.ml•Looking into downloading a webcomicEnglish
3·20 days agoI can see the url for each image when opening when the json link(source_url:) and each image is labeled in the correct order as far as i can see but how do i grab the urls?
Maybe look into awk language compile a list of urls than pass them through curl?
Cactus_Head@programming.devOPto
Linux@lemmy.ml•Looking into downloading a webcomicEnglish
2·20 days agoHaven’t used curl or wget,have yet to start using command-line(outside of solving some linux issue or organizing family photos) but open to learning.
Cactus_Head@programming.devto
PieFed Meta@piefed.social•PieFed Users By Day GrowthEnglish
2·25 days agoI have had an account Piefed for four months now and i hate it, the UI anyways. No UI theme feels right. I wish someone would make a lemmy theme cuz i keep being put off everytime i open Piefed.
I like Piefed feature of keywords blacklisting(i heard multi-communities are coming to lemmy too) so i hope one day there are better themes.
P.S: The keywords blacklisting feature has a limited. You can make more than one grouping of keywords, but each group can have a limited number of keywords(i figured this out when i tried to copy paste all 50 states of the USA).
Cactus_Head@programming.devto
PieFed Meta@piefed.social•PieFed Users By Day GrowthEnglish
4·25 days agoUnrelated, but you have now been on Lemmy for 2 years today(i.e happy cake day).
Hey, this is a greasyfork userscript i found that auto directs you to Pixwox(the frontend for instagram)
There seems to be lots of accounts that are 1 day old or a week old, mostly on Lemmy.world.
While I don’t think they are bots, I am pretty sure they are spammers/trollls.
Cactus_Head@programming.devOPto
Linux@lemmy.ml•Any Solutions for uploading files to cloud storage(e.g Google drive) and such, for people in countries with very slow upload speeds?English
2·1 month agoIt didn’t even upload after 12 hours. I left it running the whole night and woke up in the morning to it still running
Is there like three levels of cross-posting here or something?
Either way, here is the image

Cactus_Head@programming.devto
196@lemmy.blahaj.zone•FUCK ISRAEL FUCK ISRAEL FUCK ISRAELEnglish
3·1 month agoMaybe you mean dishonest. It does give the immediate impression that the area is covered in ruble and dust(which is true but you get what i mean).
Cactus_Head@programming.devOPto
Linux@lemmy.ml•Looking for Complex Text Manipulation CLI toolsEnglish
1·2 months agoAh, sorry i thought you meant after “About”.
Cactus_Head@programming.devOPto
Linux@lemmy.ml•Looking for Complex Text Manipulation CLI toolsEnglish
1·2 months agosecond part you’re not matching at all.
That because the program/ add-on i am using, only requires certain keywords to blacklist videos
so if it find
What "X" Says Aboutin a Video Title , it doesn’t need the rest of the sentence to blacklist the video.The other problem with regex is that every implementation does things differently
Th developer links to Firefox’s developers Regex Documentation.
Regex You can use Regex to match very specific patterns of text. /aaa+/i: will block content that include aaaAAAAAaaaaAAAaaa or aaaaaaaa /top \d+/: will block content that include top 10 movies, top 5 upcoming movies Supports negative too, by adding ! (exclamation mark) before the regex. Example: !/^a/i will block content that does not start with aThis is a snip-it of the the add-on Guide. I cant like to it cuz for some reason its only inside the extension but here is the add-on’s page
Cactus_Head@programming.devOPto
Linux@lemmy.ml•Looking for Complex Text Manipulation CLI toolsEnglish
1·2 months agoI think this is The solutions that makes the most sense to me
But i don’t understand what
seddoes herereplace the trailing comma with a newline again
Why do we replace the commas again with new lines?
Also, I figure a better way to group related terms
Stars Wars;Clone Wars;JediUsing semicolons “;”
I figure i can replace them with commas usingtrcommandtr ';' ','But do i just pipe
tr '\n' ','Into
tr ';' ','Or is there a way to combine them. I don’t see an option to do more than operation in
trmanual
Lastly, i have been trying to use regex to match
What "X" Says AboutTo
What The MCU Says About The Comics IndustryI just need to match The “X” There, the program takes care of the rest
I tried
What \w+\s+ Says AboutOn this website to match
What The MCU Says About The Comics Industry
But using the debugger, it only recgnize “The” and then stops
Cactus_Head@programming.devOPto
Linux@lemmy.ml•Looking for Complex Text Manipulation CLI toolsEnglish
1·2 months agoSomething like this?
- Franchise(Title): - Harry potter - Perfect Blue - Jurassic world - Jurassic Park - Jedi - Star wars - The clone wars - MCU - Cartoons(Sub-Title): - Gumball - Flapjack - Steven Universe - Stars vs. the forces of Evil - Wordgril - FlapjackTurned into
Harry potter,Perfect Blue,Jurassic world,Flapjack,Jedi,Star wars,The clone wars,MCU,Gumball,Flapjack,Steven Universe,Stars vs. the forces of EvilBoth “Franchis” and “Cartoons” where removed/ not included with the other words.






Yes, But i think i got what you meant, i tried Manjaro before and when i installed GIMP or VLC(on GUI store), it offered to install Plugins and such(i could choose which to install) for me.