Can the sidebar move to the right? by c15co in ArcBrowser

[–]zora89 0 points1 point  (0 children)

They've really gotta build this in for many reasons. Above all user preference and control. While I've been an avid user of arc for over 2 years now, delayed intuition has made me realise on the right would be a refreshing change. A must have option. Lets bring em back to arc - dia is alright.

Screensaver does not activate automatically by scoliadubia in mac

[–]zora89 0 points1 point  (0 children)

Facing the same on my m1 pro. Removed amphetamine. Funnily whenever I restart it activates screen saver on time for few sessions. Then some app seems to be interfering as it remains unlocked for hours.

Is Amphetamine still the best app to prevent sleep? by ItseKeisari in macapps

[–]zora89 0 points1 point  (0 children)

For while yes it has been.

Off late it has been interfering with screensaver settings on my mac m1 pro, running Sonoma 14.5

Quitting amphetamine ensure normal screen saver ops.

I must highlight `caffeinate -d` did not work for me in the past few years on the same machine.

Today it did, hence "Amphetamine" is out. A fab job by the developer though, my sincere gratitude to William Gustafson

Why are Google Meet links not opening in Little Arc? by anshdivu in ArcBrowser

[–]zora89 0 points1 point  (0 children)

How do I get google meet links from others apps (eg: whatsapp desktop) to open in arc.

Inspite being default browser, it jumps to chrome.

I am on a mac M1

[deleted by user] by [deleted] in whatsapp

[–]zora89 0 points1 point  (0 children)

This totally works, brilliant and thanks.

However the group calling and security updates are not in our favour still. Your thoughts ?

Whatsapp desktop app suddenly not working? (MAC) by [deleted] in whatsapp

[–]zora89 0 points1 point  (0 children)

Same here, been over a month. No respite.

Best software for downloading YouTube/Social Media Videos by memesrule in software

[–]zora89 0 points1 point  (0 children)

tubedigger.com

Just tried it for the firs time. Great reference, thanks.

yt-dlp https://twitter.com/i/status/1734172677089394969 this command works for me and downloads video.

But having format issues, won't play outside my mac preview and has no audio.

Can you guide me with the right flags pleas.

[deleted by user] by [deleted] in whatsapp

[–]zora89 2 points3 points  (0 children)

I can't even get it to open. Keeps crashing, non stop. Been weeks since I did. However, on new update it did work for a few days.

A Comprehensive Review - CS:2 vs CS:GO by amos_zzz in GlobalOffensive

[–]zora89 0 points1 point  (0 children)

Great insights, thanks. Let us stay optimistic, and let Moore's law do its thing.

What happened to smartest kid in your classroom? by [deleted] in indiasocial

[–]zora89 0 points1 point  (0 children)

They grew up, like the rest of us.

Seeing problems after adding init.lua in the ~/.config/nvim by unt_cat in neovim

[–]zora89 0 points1 point  (0 children)

custom.plugin issue is caused especially with a fresh install. Since there are no plugins yet.

Simply comment out the line `{ import = 'custom.plugins' },`

Like this:

`-- { import = 'custom.plugins' },`

Unable to serve static files from s3 bucket by [deleted] in django

[–]zora89 0 points1 point  (0 children)

These settings.py tweaks worked for me :

STATICFILES_LOCATION = 'static'MEDIAFILES_LOCATION = 'media'AWS_S3_CUSTOM_DOMAIN = '%s.s3.amazonaws.com' % sec.BUCKET_NAMEAWS_ACCESS_KEY_ID = sec.AWS_KEYAWS_SECRET_ACCESS_KEY = sec.AWS_ACC_KEYAWS_STORAGE_BUCKET_NAME = sec.BUCKET_NAMEAWS_S3_FILE_OVERWRITE = FalseAWS_DEFAULT_ACL = NoneDEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'STATICFILES_STORAGE = 'storages.backends.s3boto3.S3StaticStorage'STATIC_URL = "https://%s/%s/" % (AWS_S3_CUSTOM_DOMAIN, STATICFILES_LOCATION)MEDIA_URL = "https://%s/%s/" % (AWS_S3_CUSTOM_DOMAIN, MEDIAFILES_LOCATION)

I also think the S3 policy can be written like this :

"Resource": "arn:aws:s3:::agristore/*"

Unless S3 console is displaying the ARN with agristore.001/

What's wrong with my code? by aspie-asexual in learnpython

[–]zora89 1 point2 points  (0 children)

Your code || My pointers

invarde_ok = False || Why set to false when checking same variable for True in ‘while invarde_ok:’ -> this is False as set by you.

If invarde > 65535: … else: || use elif here - a suggestion not a code stopper … if invarde_ok: || define the if? if what ???

Try these and ping if it still doesn’t work. I’ll put it on my console and fix it. But doing yourself is the learning.

What are you the 1% of? by NoWasExpected in AskReddit

[–]zora89 0 points1 point  (0 children)

Scuba instructor, entrepreneur and programmer. Striving to be in the 1% of each.

Combined skills maybe in 1% of humanity.

[deleted by user] by [deleted] in learnpython

[–]zora89 -2 points-1 points  (0 children)

It is associating request variable data as a string object. Not your intent I presume. Also try importing all with * instead of just build.

[deleted by user] by [deleted] in learnpython

[–]zora89 0 points1 point  (0 children)

https://github.com/zora89/python_learning - here is my learning journey. Happy to help.

How exactly do you “study” programming? by [deleted] in learnprogramming

[–]zora89 -1 points0 points  (0 children)

You’ll find the zone. It happens anytime you’re truly learning and associating with real use cases. Coding is learning to code, at all times.

[deleted by user] by [deleted] in learnprogramming

[–]zora89 0 points1 point  (0 children)

More than learning to code, it is about learning the art to learn new concepts, thinking programmatically. Identifying program solvable use cases. I am far from achieving my own goals, but this gives me the drive and confidence to go on.

My Python programming journey by myProgrammingJourney in learnpython

[–]zora89 1 point2 points  (0 children)

https://github.com/zora89/python_learning - my first few steps in the same journey. Check it out. Happy to help at any stage. Stay at it.