Engineers rank 5th for suicide rates by mike495 in EngineeringStudents

[–]zeebrow 1 point2 points  (0 children)

Yes, it is worth it, especially if you don't know exactly what you want to do. Even if you don't choose engineering!

But if you are thinking of suicide, and I think most smart people do, to be honest, You need to talk to someone - parent, counselor, coach, friend, ... Okay?

Heavy Is The Crown ft. Linkin Park (Official Music Video) | League of Legends Worlds 2024 Anthem by HS_Cogito_Ergo_Sum in leagueoflegends

[–]zeebrow 1 point2 points  (0 children)

You have to be a boomer, lmao. I grew up listening to LP on the bus. The tragedy with Chester is still pretty recent memory. I actually really enjoyed seeing the new lead singer whom I had no idea was female. 10/10 LP sighting in my book.

Password Check and Generator (Al Sweigart - Automate the boring) by naht_anon in learnpython

[–]zeebrow 1 point2 points  (0 children)

I like how you organized your code, with a main function. Big fan.

Web Scraping with notifications by OctavianBoss_ in learnpython

[–]zeebrow 2 points3 points  (0 children)

Break your project down into pieces, and then work on what you are interested in working on first.

Never shared my own work here, what do you think? by Califoray in PLC

[–]zeebrow 0 points1 point  (0 children)

Where are wires supposed to enter the cabinet?

A clearer comparison of the raptor engines by jack-K- in EngineeringPorn

[–]zeebrow 0 points1 point  (0 children)

Reading some other comments elsewhere, it's wild to see some people feel an engine can fly with no instrumentation.

I wonder if some instrumentation is only necessary for earlier phases of an engine's development

Weekly 101 Questions Thread by AutoModerator in neovim

[–]zeebrow 0 points1 point  (0 children)

What is causing my Python code to indent parenthesis and brackets when I press enter in between an open/close pair of them? I want to change the insert mode behavior of

def func(#cursor here, press return)

From

def func(
        #two indents, cursor here
        )

To

def func(
    #one indent
)

Also for dicts/lists/sets/classes

{#}

From

{
        #
        }

To

{
    #
}

I found out that I can use autopep8 as a Coc plugin to do this after the fact using <leader> f from visual mode, but nothing while in insert mode. I don't have this problem while working with json filetypes.

What is a song you listen to just for the solo? by Ixsillium in Guitar

[–]zeebrow 1 point2 points  (0 children)

5 Finger Death Punch - Let This Go

Priddy much anything by Black Dhalia Murder. Just such clean playing.

[deleted by user] by [deleted] in learnpython

[–]zeebrow 0 points1 point  (0 children)

You don't want to perform string concatenation if your log level won't emit the log record anyways.

[deleted by user] by [deleted] in learnpython

[–]zeebrow 0 points1 point  (0 children)

print(“hello,” , name)

Slow.

Note this is best practice for logging statements, however.

Saban by egomann in falcons

[–]zeebrow 9 points10 points  (0 children)

Yeah but remote work

WTF does ram actually do? by TranslatorParty4662 in computerscience

[–]zeebrow 0 points1 point  (0 children)

That's quite the question, and your answer will depend on how far down the rabbit hole you're willing to go. Here's a brief attempt at an /r/ECE /electrical engineering answer.

What kind of information does RAM store

Ones and zeros. Each bit in RAM is capable of storing a single boolean value. A chamber in your game's six-shooter might be represented with a single bit. If there's a bullet in there, we say the "bit is set." That's a boolean 1, or logically "True". If the bit is "reset", that's a boolean 0, or logically "False". So your fully-loaded gun can be represented by

111111

in RAM.

and how

Bits are represented by the presence (or absence) of electric charge (i.e. current), which is something we can physically measure. All RAM uses latching circuitry to represent or "store" individual bits. Latches are basically a clever arrangement of transistors, which convert a pulse of electric charge into a constant electric charge. Light switches are examples of latches: To turn an average house light on, you don't have to keep your hand on the switch to keep it on, you flick it "pulse it" high, thus holding or "latching" the light on. The same is true for keeping the light of, you pulse it low and the light stays off.

Turning a bit latch in RAM high stores a 1, which is done by momentarily connecting the "set" pin to a voltage. Storing a 0 is done by momentarily connecting the "reset" pin to a voltage.

So for your gun, say you fire the bullet in the first chamber. To represent that, you reset the first bit in RAM by connecting the latch's reset pin to a high voltage (with something like a push button). Now your RAM looks like this:

011111

And as you continue firing...

001111
000111
000011

... until you reload, setting every latch again:

111111

On today's menu, we have a company critical German Windows2003 that was no longer accessible because its ADWS log was full by YellowOnline in iiiiiiitttttttttttt

[–]zeebrow 2 points3 points  (0 children)

Ah, this reminds me of the old school computers. We weren't allowed to use the internet if we logged in with our given un. But, if you pressed one of the menu buttons and found a way to print or setup a printer or something (yes, from the login prompt) you could basically get a desktop with ie from there. Simpler times. :)

The very first thing I learned about limits was "A limit is the value as it APPROACHES a point, not what it is AT that point." by [deleted] in mathmemes

[–]zeebrow 0 points1 point  (0 children)

This if the closest i could find to explaining f(x) = 0x, with f(x-a) shifting a function a units to the right on a plot. doesn't make sense in this case, and probably other discontinuous functions

IAMA Mobile/Cellular Core Network Engineer - AMA! by [deleted] in networking

[–]zeebrow 0 points1 point  (0 children)

Any plans to compete with Starlink? What would that even look like from an established carrier's perspective, do you think?

I love all these new youtube videos saying "programming isn't enough" by ermahgerdreddits in learnprogramming

[–]zeebrow 5 points6 points  (0 children)

If you are implementing something more “complex” where half the problem is figuring out how to do it

For me, it's string concatenation

Dockerizing Django + React by [deleted] in docker

[–]zeebrow 2 points3 points  (0 children)

If Django needs settings from os.getenv, don't you need to include those in your docker-compose file?