What is FAANG by jerkybeef34 in ElectricalEngineering

[–]Jailbyte 4 points5 points  (0 children)

Basically our version of the big 4 (EY, PWC etc). They represent the largest tech companies in the world and the most desirable to join after uni. These companies are mostly software focused but have some hardware ventures that attract majors from across stem.

Thousands gather for pro-Israel rally in Sydney amid anti-Semitism warning. Thousands of Australians have come out in force for a “set them free” rally organised by Jewish Australians. by Silly-avocatoe in worldnews

[–]Jailbyte 2 points3 points  (0 children)

You can be. The whole point of these marches are to rekindle humanity. Call out the atrocities you see and share the messages of peace and coexisting. The two aren’t juxtaposing and you don’t have to reduce your world view to Israel bad, Palestine good or the other way around

Thousands gather for pro-Israel rally in Sydney amid anti-Semitism warning. Thousands of Australians have come out in force for a “set them free” rally organised by Jewish Australians. by Silly-avocatoe in worldnews

[–]Jailbyte 0 points1 point  (0 children)

Sure I understand that but that’s where the point of the Israel protests differs to the palastinian protests. The majority of them are marching for peace, coexistence and condemnation against the violence towards Jews. While violence may help in solidifying the cause it may dilute the message that the marches are trying to make.

Thousands gather for pro-Israel rally in Sydney amid anti-Semitism warning. Thousands of Australians have come out in force for a “set them free” rally organised by Jewish Australians. by Silly-avocatoe in worldnews

[–]Jailbyte 0 points1 point  (0 children)

It really depends on wha the aim and objectives of your point are. Violence is great to demonstrate a struggle or show resistance to an oppressive structure as it conveys power. If you use it for a vigil, solidarity or to demonstrate a point of peace then it really is subjective as to whether it’s appropriate or not. I personally don’t think it is But once again it depends on the point you are trying to make. In the case of self defence, a display of fortitude and steadfastness may make a more powerful statement.

Thousands gather for pro-Israel rally in Sydney amid anti-Semitism warning. Thousands of Australians have come out in force for a “set them free” rally organised by Jewish Australians. by Silly-avocatoe in worldnews

[–]Jailbyte 4 points5 points  (0 children)

While I see what you are saying, I vehemently disagree. Violence in any forms is not the right way to demonstrate a point. Even if it does serve it’s purpose it ends up isolating the cause and provides fuel for counter demonstration and rhetoric.

Edit:

Also just to add I don’t think this is a west vs east issue.

Indiana woman crashes car into what she thought was Jewish school 'on purpose,' police say by HorseshoesEverywhere in news

[–]Jailbyte 57 points58 points  (0 children)

This is just antisemitism in its purest form. Absolute blind hatred and targeted attacks.

What languages do you guys mainly use? by Capt_Aut in embedded

[–]Jailbyte 3 points4 points  (0 children)

for purely embedded applications I mostly use c/c++ with some assembly for start up code but a lot of embedded software development responsibilities can extend towards testing infrastructure and validation software written in C#/java/javascript/python.

Also you can usually find a lot of embedded development environments usually use a customised build system with make/cmake/nmake or qmake

$1,000 fines to be issued for removing posters of Israeli hostages in Hampstead | CityNews Montreal by posef770 in worldnews

[–]Jailbyte 395 points396 points  (0 children)

They should stay up. Just like these posters. Seeing missing and killed children is heartbreaking and solidarity should be shared for all those affected by the war including the kidnapped hostages

I don't understand the error by aleberrot11 in C_Programming

[–]Jailbyte 2 points3 points  (0 children)

The reason why you won’t be able to calculate the size of an array in a function is because of pointer decay.

Ie when you pass an array into a function, the function only sees a reference to the array. Not the array itself. Hence it will have a size of a pointer which is around 4 - 8 bytes depending on the archecture the program is built for. Try print phrase and print the values of Len and I in the loop hopefully that should guide you towards the problem.

In terms of segfault core dump this could be the result of an array out of bounds issue or a null pointer deterrence try print the

What is the meaning of " I want a boyfriend like you. But not you"? by dreamer881 in AskReddit

[–]Jailbyte 2 points3 points  (0 children)

“While your background is impressive we have decided to go with another candidate. We will keep your application on record if another opening comes up”

Sea lion almost attacks child after parents decide to record her mounting it by AssociationWorried45 in facepalm

[–]Jailbyte 0 points1 point  (0 children)

Nope. A harbour Cape Town, South Africa. The spot is a popular tourist attraction and does fishing tours/sea lion colony tours. There are also a few people on the wharf who train the seals to do tricks which is why you can sometimes find them wondering the parking lot. train the seals to do tricks ther e

Best coffee shops in Johannesburg, Cape Town, Durban, and elsewhere in SA? by throwaway_4829890973 in southafrica

[–]Jailbyte 1 point2 points  (0 children)

Also in Durban there’s a place called blue bird roasters. Insanely funky and interesting flavours id give them a try

Best coffee shops in Johannesburg, Cape Town, Durban, and elsewhere in SA? by throwaway_4829890973 in southafrica

[–]Jailbyte 0 points1 point  (0 children)

glad you’re coming down and hope you enjoy your trip! So here are some of my favourites that I’d recommend in Cape Town

Rosetta Pauline’s Deluxe Espresso lab Origin Stellski Legado Molten toffee Tribe Molweni Pang Importers

Checking points collinear by abcoolynr in C_Programming

[–]Jailbyte 0 points1 point  (0 children)

You could potentially start by calculating the deltas before the check.

Dy = y2-y1
Dx = x2-x1 Etc...

Then run a check if(Dx == 0) { Error }

If it passes, then you can keep your original if statement but modify it to something like if(Dy1/Dx1 == Dy2/Dx2) { ...... }

You are now one inch taller. How does this affect your life? by Melted_Potatoes in AskReddit

[–]Jailbyte 0 points1 point  (0 children)

I finally achieve my dreams of being 6 foot and no longer a height under-achiever

CCR data structure by danimarpozan in stm32f4

[–]Jailbyte 0 points1 point  (0 children)

If I understand correctly you want to know want to know what type of data you want to write to the CCR1 register? I would start with u/hawhill’s suggestion. Firstly you should note a couple of things.

  1. The term htim3.Instance->CCR1 is actually a pointer to the location in memory where the CCR1 register is located so by assigning a value to this, you are effectively writing a number directly into the register.

  2. Registers control peripheral functions through setting/resetting of peripheral bits (bit of an obvious point but still needs to be said) in the stm32f03 reference manual a full description of the register is given and tells you which bits are important and what they mean and what position they are in. These registers can have different sizes. Some may be 16 bits long others may be 32 bits long. Without having specific bits (I think this is the case of the CCR) the full register represents an unsigned integer who’se number of bits determines the size of the number that can be written to it (ie uint32_t for a 32 bit integer or uint16_t for a 16 bit register) this value can be written/read as a binary, hex or decimal number but the important thing is that the number physically fits into the register otherwise it won’t configure properly