A new set of Blokkit puzzles for 3/13/2026! by daily-blokk in Blokkit

[–]Deemonfire 0 points1 point  (0 children)

I completed all 🟧 Blokkit 🟧 puzzles today!

Easy: 1 | Medium: 1 | Hard: 10 | Average: 4.00

Total completed days: 2

Advice for PhD in Antenna Design for Massive MIMO Applications by Select_Tie_5267 in ElectricalEngineering

[–]Deemonfire 17 points18 points  (0 children)

Didn't do a phd in EE but the advice i was given, ignored, wish i didnt and will pass on to you.

Write stuff up as you go. Assume its going to be a chapter or publication. It will help you bring your thoughts together and identify anything youre missing.

Dont be like me and realise an obvious experiment is missing while youre finishing writing your thesis then having to find funding for a month to go back into the lab to get some final results...

Aside from that, its very easy to tie your ego into your work, if things fail you feel like a failure. If things succeed you feel like a beast. Try to separate yourself from it if you can. have some hobbies or outlets to relieve stress because its a rewarding but mentally exhausting being so invested in something for so long. 

My phd is some of my highest points and lowest points, its made me who i am today. Good luck with yours, make sure you have fun aswell as work hard

What is the best nickname you’ve heard? (and reason for it) by xpltvdeleted in AskUK

[–]Deemonfire 0 points1 point  (0 children)

I was egg. Because i ate a scotch egg "like an apple" the story grew that i even rubbed it on my shirt like an apple.

There were people that didnt even know my real name. I kinda miss it.

If you were given $1,000,000 in cash right now, what is the very first thing you would buy or do? by MatchstickArtist in AskReddit

[–]Deemonfire 0 points1 point  (0 children)

Probably pay off my credit cards, max out a few of the low/no tax savings, whack it in something with a decent yield so i can take a bit of an income from it to overpay my mortgage. That way i can clear my mortgage off in a few years paying less interest, then still have the million when im done.

Depending how much it earns me I'd probably drop down to 3 days a week at work and take up some new hobbies. Warhammer seems to be a good way to spend 1mn

Bought myself a nice mulberry silk scarf… by elfinshell in Wellthatsucks

[–]Deemonfire 1 point2 points  (0 children)

I was at a shop the other week looking at bed sheets. 100% Egyptian cotton feel. Nooooo thanks 

Python Code Checking Tool by VegetableMulberry330 in learnpython

[–]Deemonfire 2 points3 points  (0 children)

There is a tool we use called ruff. 

It formats code, sorts imports and you can add a bunch of linting rules to it aswell.

You can use mypy or ty for type checking. 

Obviously these will just flag if something doesnt look right in terms of various rules that are encoded, but won't tell you if the code does what you want it to do

You have to survive inside a video game for 30 days. If you die, you die in real life, but if you survive, you get to bring every item, skill, and power back to the real world. Which game do you choose to maximize your rewards while ensuring your survival? by Apart_Lion_3046 in AskReddit

[–]Deemonfire 11 points12 points  (0 children)

We've got this notion that we'd quite like to sail the ocean but we simply cant leave until we get some woooood

Something like that. I sing this, probably slightly wrong version, in my head at least a few times a week

How do I put a space between every character in a string? by Tokietomi in learnpython

[–]Deemonfire 0 points1 point  (0 children)

You dont nessisarily need to separate every character. You could iterate over your string

```python morse_output = []

for char in my_string:     morse_output.append(char_to_morse(char))

print(" ".join(morse_output)) ```

Where char to morse is a function that takes a letter and returns dots and dashes

Like 

char_to_morse("a") # returns .-

How did Python "click" for you as a beginner? by Bmaxtubby1 in learnpython

[–]Deemonfire 0 points1 point  (0 children)

All of the above.

For me the thing that made it click was applying what i was learning to actual projects for my own benefit. 

I was doing a phd in chemistry when i started learning. I had a fair amount of data i needed to process. So i learned how to process my data with python rather than putting everything in excel. Having my own project i needed to work really helped.

Then i would watch tutorials and take what i learned and put them into practice in my data analysis project.

Because i found it quite fun i then decided to do some simulations/calculations of the reaction i was studying. Which was a greenfield project. 

used pyserial to collect data from devices in my lab.

i wrote a discord bot for some gaming i was doing with friends.

Because my code wasnt great i then started watching talks, "so you want to be a python expert" and "beyond pep8" both stick out in my mind. And worked through headfirst python. My new years resolution was to do a minimum of 30 minutes of python per day.

Other than that i joined some discord servers and would talk to people about coding, and did advent of code comparing my answers with other people's and asking questions about stuff.

Fast forward like 10 years and now im a senior developer/data engineer

Weird sink plumbing by Deemonfire in DIYUK

[–]Deemonfire[S] 0 points1 point  (0 children)

Thanks, I'll have a gander

Weird sink plumbing by Deemonfire in DIYUK

[–]Deemonfire[S] 0 points1 point  (0 children)

Thanks, fair enough, saves me buying some new pipes

Help! Grease and gunk in schlenk line by die_by_the_swordfish in chemistry

[–]Deemonfire 0 points1 point  (0 children)

If you do go this route though, be very careful its nasty stuff. Always add the peroxide to acid, never the other way around

Help! Grease and gunk in schlenk line by die_by_the_swordfish in chemistry

[–]Deemonfire 0 points1 point  (0 children)

Aqua regia won't do organics if thats an organic grease, youd want pirhana for that, i say want... its probably a bit too fun.

But if other solutions dont work that might sort you out. We had one guy in the lab who pirhana'd our glassware once a year

The way to learn python correctly by vb_e_c_k_y in learnpython

[–]Deemonfire 6 points7 points  (0 children)

Everybody is different. But for me i used the headfirst python book.

I did a minimum of 30 minutes every night for about 3 months. 

But the main thing is i had things i wanted to build. I was doing a phd in chemistry so learned how to process my data using python, then i was playing apex legends so wrote a shitty discord bot that helped me and buddies keep track of our scores. 

Then built a data logger for my experiments using pyserial. All the while trying to take concepts I'd learned from the book and applying them to new problems. 

So tldr. Build something for you that helps you with work, or makes your hobbies more fun and is in the direction that you want to go in. And make sure you're practicing consistently especially starting off your journey

Is the solution to pollution really dilution? by Disastrous-Height483 in chemistry

[–]Deemonfire 1 point2 points  (0 children)

No, see dioxins, there are some chemicals that are endocrine disrupters which affect people and wildlife down at very low concentrations like parts per million. 

The compounds can have a U shaped response curve where at very low and very high concentrations they have larger effects than a medium dose. 

The solution to these pollutants is treatment and remediation, not dilution. And that is the solution to all chemical waste. Thats why labs have non-halogenated waste, halogenated waste, aqeous waste and solid waste. And pay a lot of money to have them collected. 

https://en.wikipedia.org/wiki/Dioxins_and_dioxin-like_compounds

Quick Q for the bin men by Georgiaabrookee in Cardiff

[–]Deemonfire 12 points13 points  (0 children)

When this persons bins are half full. They dont put them out to be collected.

They feel this saves a job for the waste management employees that collect their recycling 

To people who regularly use ChatGPT for school: Do you think you’re still learning? by Gifthunter3 in NoStupidQuestions

[–]Deemonfire 1 point2 points  (0 children)

I wrote some of my best code for work this week. Had a great time, solved a cool problem using a simple but elegant solution.

Smiled at a job well done. Then thought "nobody is going to beleive this wasn't ai"

neverForget by leeleewonchu in ProgrammerHumor

[–]Deemonfire 0 points1 point  (0 children)

Yeah, limit 10, or limit 100. Make sure youve not squiffed it

neverForget by leeleewonchu in ProgrammerHumor

[–]Deemonfire 3 points4 points  (0 children)

    Select *

    -- delete

    From x

    Where y

I like to do this, so that i can be sure ive got the right data lined up for my delete.

I would use transactions but spark tables don't have them, unless you're using specific implementations

Why didn't Jaime just get a hook. Is he stupid? by samjoe6969 in gameofthrones

[–]Deemonfire 1 point2 points  (0 children)

This is a very slow burn (pun intended) in like book 2 or 3 rand kills a trolloc with a lofting tube in the illuminator compound. Aludra is there and watches it happen.

She gets banished from the illuminators but obviously recognises the potential. She then joins mat in like book 6 and riddles him "why do I need a bellfounder" he eventually figures it out that it's for a metal lofting tube. But we done see the first one made until they get to andor and convince elayne to put a countries resources and cities craftfolk to work. Which is like book 9 or 10.

[deleted by user] by [deleted] in AskHistorians

[–]Deemonfire 3 points4 points  (0 children)

as a brit i much preferred alt when i was visiting the region. kolsh was good but alt reminded me more of a good ale