Everything posted by Sensei
-
Should I Learn C, C++, Go, or Rust?
..are used to simulate bots/AI.. not for rendering graphics or anything like that (extensive processor)..
-
Should I Learn C, C++, Go, or Rust?
People use Unity and Unreal engines to develop games. They are indeed written in C/C++. But do you ("beginner") really want to make your own game engine? I don't think so.. Having such heavy projects at the beginning of the journey would most likely put you down.. Scripts that extend game engines are usually written in C# and Python. These days, to make a game you need 3D assets and/or 3D gfx artists, and almost no programming skills. C/C++/C#/Java is 75-90% the same stuff. Unless by "learning language" you meant "learning built-in and 3rd party libraries/modules/extensions". Really, you find out what libraries are available when you create a project. For example, you need to open a file, you search the web for "how to open a file in [the language you are writing the project in today].". You can't learn all the methods/functions from all the libraries in advance, because programmers (counted in the tens of thousands) create these libraries faster than you can read them. Really, start writing program, instead of talking about it. For example, follow this tutorial ("how to create a calculator in C#"): There are many such tutorials: https://www.youtube.com/results?search_query=how+to+create+a+calculator+in+C%23 The difference between this C# code and C++ Managed (C++ which uses .NET Framework) is marginal (99% the same).
-
Reproductive organs shape
This thread could be in the physics section.. One could also ask: Why do submarines look the way they do? Why do airplanes look the way they do?
-
Should I Learn C, C++, Go, or Rust?
Use the right tool for the right type of work you intend to do. If you want to write end-client Windows applications (freeware,shareware,commercial, sold to individuals or companies) then you should consider using C/C++/C#/C++ Managed If you want to develop front-end web-server applications (installed on a virtual hosting service) then you should consider using PHP (it will generate HTML, eventually CSS, eventually JavaScript, eventually other file-formats). PHP is installed on all/most virtual hosting services (other technologies are not) If you want to develop back-end web-server applications (installed on a dedicated server) then you should consider using Bash, Python, Perl, CGI (obsolete, it's compiled C/C++), jNode (server-side JavaScript) and endless list of new technologies. Actually, you can use any language to generate HTML/CSS/JS for users (visiting WWW), because you own the dedicated server and can install anything (unlike virtual hosting, where you are limited to the software installed by the IT company where you bought the hosting). If you want to develop applications for smartphones then you should learn (Android) Java, Kotlin, (iPhone) Swift. To start, install Visual Studio Community https://visualstudio.microsoft.com/pl/vs/community/ and use one of many template projects. Nowadays, people use GPUs (OpenCL,CUDA) to accelerate applications.
-
HTML
..only if you have a dedicated server.. but on a dedicated server, you can use any language to dynamically generate HTML/CSS/JS on the fly.. Java applets are no longer supported by web browsers (client-side).
-
The 10,000 hour rule? This is strange when looking at the math
Banksy..
-
Perihelion has the SLOWEST orbit_speed, (but fastest angle_speed).(?)
Don't you see your error? Did you see and read articles from my links? (below attached 2nd time)
-
How does Jack Sweeney track Musk’s aircraft?
..you must be smart.. Programmers solve problems such as these every day.. Check how Flight Radar works: https://www.flightradar24.com It does the same thing, but for all aircraft. If you know the aircraft's unique identifier, you can even use Flight Radar data. How to get a unique aircraft identifier? Find out from social media what a person is doing, where is in a few days, weeks, and analyze Flight Radar history..
-
My analysis of Brexit: BRUS is the next big thing on the blocks.
"We are all Scots." - To paraphrase Kennedy.. or "We are all Ukrainians."..
-
Stochastic mathematics in application to finance
R? Octave? Never heard of.. Write it in C/C++/Java/JavaScript or so.. Write in a computer language you know. Where is the problem? The homework section of this forum is not for answering questions.. it is meant to help you figure things out on your own..
-
My analysis of Brexit: BRUS is the next big thing on the blocks.
..but US is not the nation.. Find a person on the street in New York, you'll get "I'm Jewish," "I'm Italian," "I'm Chinese," etc. In Chicago, they will say "I'm Polish".. The only ones who have no idea where they came from are the descendants of slaves who were captured by force or trickery and enslaved..
-
Perihelion has the SLOWEST orbit_speed, (but fastest angle_speed).(?)
@Capiert https://www.google.com/search?q=earth+orbital+speed+at+perihelion https://www.google.com/search?q=earth+orbital+speed+at+aphelion Have you ever seen a pendulum ? Is its speed highest at the highest point (=far from the center of the Earth) ?
-
T/F? windows 10 does not support guest account.
A false sense of security.. Windows 10 has a serious security bug that no one knows about (because if they knew, they would have fixed it; every time I download a new Win10 ISO, I check if they fixed it or not)..
-
2+ DNA tests on same individual ?
Physically, the molecules are practically unique. i.e. if there is not a single change in the atoms arrangement, there are still differences at nuclear level, Hydrogen occurs with several different isotopes (H-1, H-2, H-3), Carbon (C-12, C-13, C-14), Oxygen (O-16, O-17, O-18), Nitrogen (N-14, N-15).. The number of permutations in DNA is astronomical.. Of course, basic DNA test won't show this.. Targeted enrichment can be used in research: https://www.nature.com/articles/s41598-017-04404-2 https://www.google.com/search?q=targeted+enrichment
-
Any browsers still support ActiveX?
If you really need it badly, you can install VirtualBox, download an older Windows ISO image file and install it on the virtual machine. Older Windows has older web browser e.g. Win7 has some IE.
-
Address changes the typical www...
Some scripts check if you are entering from the correct referrer and if not, do not allow you to view the content. Some scripts check whether the user is logged in (i.e. typically proper cookies must be sent).
-
Planet internal gravity
https://www.google.com/search?q=gravity+anomaly+map https://en.wikipedia.org/wiki/Gravity_anomaly "The gravity anomaly at a location on the Earth's surface is the difference between the observed value of gravity and the value predicted by a theoretical model. If the Earth were an ideal oblate spheroid of uniform density, then the gravity measured at every point on its surface would be given precisely by a simple algebraic expression. However, the Earth has a rugged surface and non-uniform composition, which distorts its gravitational field." ps. Gravity anomaly is widely used in e.g. mining industry.
-
Intramolecular Sn2
Where on the right side do you have Chlorine and Nitrogen atoms?
-
Do you think it is possible to convert 2D to linear perspective to perfection using physics? Because I already did it 😎
The CRT monitor has two deflection systems, horizontal and vertical. If the horizontal deflection system is faulty, you have a straight vertical line. If the vertical deflection system is faulty, you have a straight horizontal line. If both deflection systems are malfunctioning, you have dot in the center. https://www.google.com/search?q=vertical+deflecting+system
-
The Official JOKES SECTION :)
- In Java, what causes an IOException to be thrown?
If you are not sure what really happened, but it is on your machine, i.e. you can reproduce the error, use the debugger, in step-by-step mode, until you find the faulty instruction (its name and line number). If it happens on a third-party machine and you can't reproduce it, you can log things to a temporary file, write something like 1,2,3..100 on each line, and ask the user to upload this file. You will find out which instruction caused the exception that you or the user saw. Then read the instruction manual. Include the source code so we can analyze the code. You should not read the IOException page, but the page of the instruction that caused the exception. Don't have try {} catch {} for the whole code/function. Have one try-catch per single instruction. Then you will know which line and which instruction caused the exception. Exceptions are thrown to indicate some failure. Inability to access an existing file to read it. Inability to access an existing file for writing. Because of insufficient privileges (lack of admin status). Inability to access a file for reading because the file does not exist. Inability to access a non-existent file for writing due to lack of disk space. Inability to write data due to lack of disk space. The file cannot be read because some other application has gained exclusive access to it. ..this is just the beginning..- Ancient Rome teaches us about self healing concrete
When I read the title, I thought, this must be in the politics section.. Oh, well.. Optimates have been, after all, conquered.. So, no, "concrete" has been conquered by populares.. ..Mar-a-Lago is the center of "concrete" in the U.S. ATM..- Wheels in animals
@Moontanman The problem is google has become almost useless these days.. I tried to find several times (to be shown in the first post).. gives more interesting "dancing lizard" videos instead.. It was (quite obviously) a lizard, living in the desert.. He/she climbed to the top of the sand and instead of descending, rolled down it..- Emptiness.
No. This is not the Internet.. When you grow up with other students and continue life at a higher intellectual level, with similar to you, you forget about everything else.. ..try to talk to an ordinary person and you will have in 5 seconds, WTF?! The Internet just revealed what you didn't know..- Wheels in animals
Energy is the problem. The wheel can only get from the top of mountain to the bottom of the valley just once. It must somehow get back to the top to roll again. ..and there are animals that put their tail in their mouths and roll swiftly through the desert.. - In Java, what causes an IOException to be thrown?
Important Information
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.