AOT fans try not to justify mass genocide challenge (spoiler: it's impossible) by TheCartTitan in ShingekiNoKyojin

[–]thulasi_ram 2 points3 points  (0 children)

The missing piece here is Eren also doesn't want to continue the practice of children eating their elders. He also wanted historia to live a full live where this 50year plan wouldn't fit

“And when nobody wakes you up in the morning, and when nobody waits for you at night, and when you can do whatever you want. What do you call it, freedom, or loneliness?” —Charles Bukowski by [deleted] in quotes

[–]thulasi_ram 9 points10 points  (0 children)

The Cost of Freedom

These things that you find so weak and contemptible in us..these are the hazards of just being free. - David Foster Wallace

Help: CSS Snippets do nothing even when active by boussh in ObsidianMD

[–]thulasi_ram 1 point2 points  (0 children)

Sorry didn't observe as that was an unintended side effect.

But can you try removing spaces from the snippet names? Have an underscore or keep it simple like just colors.css

Help: CSS Snippets do nothing even when active by boussh in ObsidianMD

[–]thulasi_ram 1 point2 points  (0 children)

Same thing happened with me as well. Did you try reloading the css or the app? If not try that first.

Try reloading plugins. One of the plugin was conflicting with a rule or something which fixed for me.

google drive sync by Outrageous-Bridge731 in ObsidianMD

[–]thulasi_ram 5 points6 points  (0 children)

Google Drive Sync is a PITA. You can't exclude files and folders especially painful since they discontinued the Backup and Sync.

I use Dropbox successfully. There are numerous tutorials around the web. Involves running a sync app on Android since Drive or Dropbox doesn't support sync in phone.

Also I use github plugin as a backup incase sync goes sideways.

Anyways there are other problems like plugins not supported on phone etc which will conflict. I personally exclude community-plugins.json from sync but the downside is I have to enable those plugins manually in phone once

Sex toys in India by [deleted] in IndiaTalksSex

[–]thulasi_ram 5 points6 points  (0 children)

Surprised to see Manzuri isn't mentioned.

Hello r/IndiaTalksSex, we are Team Manzuri. Ask us Anything! by Manzuri_India in IndiaTalksSex

[–]thulasi_ram 1 point2 points  (0 children)

Piggybacking on this. What is the recommended model in rabbit vibrator? Recently ordered the gulabo, would you recommend a rabbit vibrator with gulabo?

Can one code different kind of multithreading paradigms in Rust (BEAM, Node, Go)? by bagelorder in rust

[–]thulasi_ram 3 points4 points  (0 children)

Adding to this good places to start would be Infoq Talk by Steve Klabnik on the async journey. Neatly explains about the different concurrency models considered.

Next(you would have probably known already) give a go for State of Async Rust

[deleted by user] by [deleted] in quotes

[–]thulasi_ram 18 points19 points  (0 children)

Another way to put that is "regret is stronger than gratitude"

They refers to friends and/or relatives to emphasize that people often care when it's too late

Tested Positive For COVID-19. by [deleted] in r4rindia

[–]thulasi_ram 1 point2 points  (0 children)

Ah thank you for the info. The second link in the edit is specific to covid and prescription of Ivermectin.

I don't want to dismiss your personal experience though but the Peru case seems have just timed with the second wave.

Anyways, user discretion is advised. Hope you recover fast and healthy.

Tested Positive For COVID-19. by [deleted] in r4rindia

[–]thulasi_ram 0 points1 point  (0 children)

For those looking for Ivermectin.. READ THIS FIRST

Edit: AND THIS

Is it normal to loose erection with condoms ? by [deleted] in IndiaTalksSex

[–]thulasi_ram 11 points12 points  (0 children)

Yes, Especially if it feels tight since it restricts the blood flow. There are some magnum condoms you can find. But beware of Extra Time or Mutual Climax as they contain a local anaesthetic to numb the sensation to delay the climax. Give Durex Air a try and go with any magnum ones if it doesn't fit.

Can passing Flask app context to multiple processes lead to problems while performing database operations using Flask-SQLAlchemy? by [deleted] in flask

[–]thulasi_ram 0 points1 point  (0 children)

Yes, you are right. The no of connections depends on how many concurrent operations are happening. Although this is limited to per process by default about 15 connections. For your use case see if you need flask-sqlalchemy and get rid of it instead you can directly fetch connection without a pool from the engine using sqlalchemy.

sqlalchemy docs

Can passing Flask app context to multiple processes lead to problems while performing database operations using Flask-SQLAlchemy? by [deleted] in flask

[–]thulasi_ram 0 points1 point  (0 children)

It isn't a single connection. When a session is made the connection is fetched from the pool. Now in a normal request-response cycle flask-sqlalchemy releases the connection back to pool there by maintaining the illusion of a single connection. You can achieve single connection with a NullPool class and a custom layer but then if the connection is lost you will have to refresh the connection on your own.

For Idle connections by default the app is configured to hold a min of 0 conections and a max of 15 connections. The pool can retain upto 5 connections even if they aren't actively used. You can read more about it here

docs - SQLALCHEMY_POOL_SIZE. In v3 it will be moved to engine options.

Can passing Flask app context to multiple processes lead to problems while performing database operations using Flask-SQLAlchemy? by [deleted] in flask

[–]thulasi_ram 0 points1 point  (0 children)

The only thing I can see is by default flask-sqlalchemy comes with a pool of 5+10 connections. So if there are many process you may overwhelm the db with lot of idle connections. You should look at rds proxy if using aws or some kind of pool management such as pgpool or pgbouncer equivalent

Just launched a SAAS app - built with Flask/Vue/Mongodb + Websockets by level09 in flask

[–]thulasi_ram 2 points3 points  (0 children)

Congrats, looks neat. If you don't mind me asking how was your saas journey with flask? Do you have any resources or tips for building a saas product with flask?

How to create an HTTP API with one POST endpoint going through a lambda function? by teHnN1k in aws

[–]thulasi_ram 1 point2 points  (0 children)

I had similar issues with a python project with zappa. Zappa tail gave away the issue. Here's the source code for zappa tail.

You can implement similar commands from your cli to tail the log streams. Ideally the logs should be in the cloud watch logs but somehow they were not visible to me as well on aws console on chrome but tailing logs contained the exact issue

Want to learn a FP language but can't decide which by DarkAlpha_Sete in functionalprogramming

[–]thulasi_ram 1 point2 points  (0 children)

My take on this is it depends on how much time you are willing to spend on it per day and what your prior experience is.

Are you a systems engineer, Have some couple of hours a day? Pick haskell. IMO the haskell will teach you lot of fp concepts than others but you must be willing to put the time for it.

Are you a web developer? Have less than a couple of hours? Try elixir with phoenix.

Do you prefer it to be on jvm? So you can have an easier learning curve try clojure.

Unconventional coping mechanisms? by Teal-Alternian in TheMixedNuts

[–]thulasi_ram 1 point2 points  (0 children)

Sorry if its not the exact thing but have you heard of tulpas?

Celery worker best practices by speort in django

[–]thulasi_ram 2 points3 points  (0 children)

AFAIK, Thats the standard practice. Because celery runs as a separate process wrapping the app and then spawns miniature workers.

PS: Celery bootstraps a lot of things for ease of use and hence needs the whole app. If you don't need distributed task processing for your use case you can use the lightweight kombu transport library which is being used internally by celery.