I like `<editor> <ctrl-t>`; ctrl-t opens fzf and pastes any selected files onto the command line. If you choose to abort you end up back at the prompt after `<editor> `.
You might enjoy Semantle: https://semantle.novalis.org/
I use a strip of electrical tape.
What's the reason for 'asm("");' in 002.c (and other c codes)? All I can see that doing is intentionally breaking the compiler's ability to optimize over loop iterations, which puts rust a huge advantage over c.
Shouldn't it be 'float * restrict a'? When could one get into trouble thinking that "restrict == this will not alias"? If X is never modified during B it seems like aliasing wouldn't cause any problems. Since restrict…
Nah, I'd just like to take a look at it, but you might be able to get someone else to use it on ARM compilers if you release it.
Have you or will you be releasing code for Orion?
It should be alternating lines with red, black and blue not greys, it's to increase reading speed: http://www.beelinereader.com/
Aliasing information is one place the programmer can help the compiler. The 'restrict' keyword in C/C++ is a great example of this. Also information provided by 'const' can be very helpful for the compiler. While both…
It's visible in view source: "The requested document is no more.", 'No file found.', "Even tried multi.", "Nothing helped.", "I'm really depressed about this.", "You see, I'm just a web server...", "-- here I am, brain…
In level 9 rank (among contacts and global) is shown, but percentile would be more interesting.
Here's how I did it: https://bitbucket.org/teoryn/image-approximation For converting the polys to pixels I render it with OpenGL and then extract the resulting image. I use ppm for both input and output, they're just a…
The faster version looks like it might not be numerically stable; if sum(l_quantity) is greater than the maximum value that can be represented it would overflow and give meaningless results. Given the arrays mentioned…
Naive fibonacci is a much more interesting example for memoize than factorial: fib = +lambda {|n| return 1 if n <= 1; fib[n-2] + fib[n-1]}
I fully agree it's satire or a really bad survey, but that doesn't disqualify Ubuntu from being an operating system.
How is Ubuntu not an operating system?
From the problem definition: Q: What if there are multiple valid segmentations? A: Just return any valid segmentation if there is one.
I like `<editor> <ctrl-t>`; ctrl-t opens fzf and pastes any selected files onto the command line. If you choose to abort you end up back at the prompt after `<editor> `.
You might enjoy Semantle: https://semantle.novalis.org/
I use a strip of electrical tape.
What's the reason for 'asm("");' in 002.c (and other c codes)? All I can see that doing is intentionally breaking the compiler's ability to optimize over loop iterations, which puts rust a huge advantage over c.
Shouldn't it be 'float * restrict a'? When could one get into trouble thinking that "restrict == this will not alias"? If X is never modified during B it seems like aliasing wouldn't cause any problems. Since restrict…
Nah, I'd just like to take a look at it, but you might be able to get someone else to use it on ARM compilers if you release it.
Have you or will you be releasing code for Orion?
It should be alternating lines with red, black and blue not greys, it's to increase reading speed: http://www.beelinereader.com/
Aliasing information is one place the programmer can help the compiler. The 'restrict' keyword in C/C++ is a great example of this. Also information provided by 'const' can be very helpful for the compiler. While both…
It's visible in view source: "The requested document is no more.", 'No file found.', "Even tried multi.", "Nothing helped.", "I'm really depressed about this.", "You see, I'm just a web server...", "-- here I am, brain…
In level 9 rank (among contacts and global) is shown, but percentile would be more interesting.
Here's how I did it: https://bitbucket.org/teoryn/image-approximation For converting the polys to pixels I render it with OpenGL and then extract the resulting image. I use ppm for both input and output, they're just a…
The faster version looks like it might not be numerically stable; if sum(l_quantity) is greater than the maximum value that can be represented it would overflow and give meaningless results. Given the arrays mentioned…
Naive fibonacci is a much more interesting example for memoize than factorial: fib = +lambda {|n| return 1 if n <= 1; fib[n-2] + fib[n-1]}
I fully agree it's satire or a really bad survey, but that doesn't disqualify Ubuntu from being an operating system.
How is Ubuntu not an operating system?
From the problem definition: Q: What if there are multiple valid segmentations? A: Just return any valid segmentation if there is one.