Expression orientation
HN user
leafario2
But TS has JS
Am I wrong in assuming that after achieving a reduction in emissions, the carbon in the atmosphere should be ideally absorbed again?
It's not about stronger flavour, it's about a replacement for sugar which does not cause diseases
There are quite some cars that do, actually :)
Not a big job market for sure, but for example the car industry on Germany is ramping up quite a bit!
If you are into autonomous sailboats, robotics, rust, or combinations thereof, let me know :)
I don't think a god of something exists. If it does, I don't care. It might, though.
What's more important to me: life emerged from chaos, entropy will get us all, let's give this opportunity all we've got. If we don't, it's fine too - there is no game plan I am aware of so we can make our own.
Can Rust import and use C header files?
Yes, after piping them through rust-bindgen, any binary can be statically of dynamically linked. I did this, it's nice that it's possible, but the PAC route others have described here is way better.
1) this is the same problem like controlling the angle of a quad copter, for which I have used PID. You can calculate the error of the position, which is in the range -180..179. Applying one PID stage to the error of the orientation yields a "desired rate of change" - it increases if the error is large or held for a long time and it's sign describes the direction of the rate of change of orientation. You can use another PID stage to give a step count power iteration (how much to turn the object). 2) integral windup is commonly prevented by just capping it. You can also use a smoother capping function which bounds the size of the integral, or lowers it on each iteration.
Very cool project!
Rust is already brown. I love it.
That's exactly what types are for dude
I am not sure this really has to do with callbacks - isn't this more due to the dangers and hassle of allowing a function with 3 arguments to be called with just one?
I am an embedded software dev and Rust would fit my job well, but I see what you are saying. However, embedded is not all for Rust and not all embedded is done by EEs. Systems programming goes from bare metal up to things like browsers and databases...
Eclipse. Killer feature being a live expressions viewer for my embedded target.
Jacob Collier has an album called 'In My Room'
Can't wait to control vim using my brain some day
What hardware is required for this?
FOD: Fear of Destruction?
Any time I see APL code, I feel slightly stupid.
Author of book is a Markov chain?
The wrong frequencies on the frequency axis really aren't necessary. It doesn't make it more complex if you put the real frequency values the and it is less confusing to people who know that sound below 20hz roughly is never audible.
Otherwise, great site! I think it is great that Fourier was basically explained without mentioning his name.
I have the choice between using a slower processor (96 MHz) without an FPU or a faster one(120MHz) with a 32 bit FPU. I might use the slower one but with a fixed-point implementation. Thanks for your tips!
Thanks for the explanation! I have only hardware with no FPU (teensy 3.2) or single precision FPU(teensy 3.5)... I suppose in that case it would be better to write a fixed point implementation?
What's the reason he insists on using double precision math? (If not using fixed point)