Slashdot Mirror


User: K.+S.+Kyosuke

K.+S.+Kyosuke's activity in the archive.

Stories
0
Comments
15,736
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 15,736

  1. Re: Maybe not a bad idea... on Trump Directs Pentagon To Create Space Force Legislation for Congress (wsj.com) · · Score: 1

    "Zero-G.I.s"?

  2. Re: Maybe not a bad idea... on Trump Directs Pentagon To Create Space Force Legislation for Congress (wsj.com) · · Score: 1

    Make Astronauts Get Armaments?

  3. Re: kathy kennedy says on Trump Directs Pentagon To Create Space Force Legislation for Congress (wsj.com) · · Score: 1

    It is...if you are Russian!

  4. Re:sing for your supper on Programming Interview Questions Are Too Hard and Too Short (triplebyte.com) · · Score: 1

    I have asked a simple question about reversing characters in a string in place (no copying to a new string)

    But UTF-8 and Unicode make it a distinctly non-simple question. Or did you restrict the question to ISO-8859-1 only?

  5. Re: sing for your supper on Programming Interview Questions Are Too Hard and Too Short (triplebyte.com) · · Score: 1

    I guess the problem is that not all "characters" are actually characters these days.

  6. You're supposed to have already seen this a looong time ago. The fact that you haven't is not my problem.

  7. Re: 2015 paper seems very similar on Neuroscientists Say They've Found An Entirely New Form of Neural Communication (sciencealert.com) · · Score: 1

    So is a computer more than the sum of its transistors. Uhh...checkmate St Augustine, I guess?

  8. Re:So, cell phone radiation may cause cancer? on Neuroscientists Say They've Found An Entirely New Form of Neural Communication (sciencealert.com) · · Score: 1

    Non sequitur? How do you jump from potential communication to causing cancer?

  9. Different people have different definitions

    Buuuulshit. Words mean what they mean. *Especially* technical words.

  10. Re:sing for your supper on Programming Interview Questions Are Too Hard and Too Short (triplebyte.com) · · Score: 1

    Correctly reversing an UTF-8 string with combining diacritical marks and embedded RTL substrings and other features could be quite fun, though.

  11. Junk DNA is features like YES-OR-NO-P or the ~R/~:R/~@R/~:@R formatting directives.

  12. Only for standalone programs, though

    Maybe freestanding programs, but what about hosted programs? There is definitely an expectation of some basic facilities available to your code.

    There is a very useful kernel module which does nothing but allocate some memory. That's all it does. :)

    Yes, and in the case of kernel modules, there's a part of the kernel that acts as a substitute for a runtime you'd expect available for user-space programs. Surely the allocation, for example, is not performed by means of some magical CPU instruction that knows all the right things to do so that other modules know about the allocation.

  13. Runtime is the thing that your programs need to perform the most basic operations that most or all programs written in the language in question always need to do. By necessity, that involves things that form a part of the standard library.

  14. Self 91/93 did that long before LLVM, though.

  15. Julia has generic functions, which are pretty much the CLOS superset of the single dispatch model at heart of Smalltalk-inspired OO languages. Is that why you're confused?

  16. ...seriously?

  17. So the rest of the program is expected to bring its own runtime and OS interface?

  18. Nah, C# with they yield style of automatically doing multi-threading

    I know next to nothing about C#, but I was under the impression that this was a concurrency mechanism - basically a control flow construct - not a parallelism feature. Did something change?

  19. I have one character for you ")"

    That's not a character, that's a SIMPLE-STRING of length 1. ;)

  20. C++ doesn't have them by default either. Not much difference here.

  21. But for a 200,000+ line project written by a team, with coders coming and going during the project, Python is a very poor choice. "Quick and easy" doesn't scale. For big projects you need rigid type checking, complex data structures, fine tuned encapsulation, compile time error checking, static and dynamic analysis, verifiable memory allocation and release, etc. C++ has all of that, Python does not.

    C++ definitely lacks "rigid type checking" and "compile time error checking" in any practical sense, otherwise people would not be hunting (or exploiting) memory errors in C++ code all the time, since these features (actually present in languages like Ada or Modula or Oberon) would strictly prevent them. Whether Python lacks "complex data structures" is debatable; if you're referring to standard library deficiencies, you may be right, but nothing prevents you from implementing anything you want.

  22. Scripting languages, basically do not do threading, of any kind, at all. They're too slow to synchronize across threads, which makes invoking threads inside them fruitless

    Bullshit. You CAN do asynchronously loading of assets with JavaScript.

    Asynchronous and multithreaded programming are two different things. Concurrency is NOT the same thing as parallelism.

  23. The common meaning of the word "environment" implies that "runtime" includes "runtime envuronment", as in the *environment* (set of objects or bindings) available at program's *run time*. If the environment is null, then there's no runtime enviroment, but that is mostly not the case even with C programs.

  24. Norvig doesn't laugh.

  25. "Intelligence" may very well involve just using environments that can figure out themselves what to compile, and when. (And don't need to be spoon-fed like C compilers.)