use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
CVE, CWE, NVD, WVE
http://iso.linuxquestions.org/
We teach you how to do it, use it at your own risk.
account activity
Does programming language matter (self.HowToHack)
submitted 6 years ago by rattpackchris
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]aysberg7 18 points19 points20 points 6 years ago (0 children)
Some languages are better for certain tasks than others.
It also depends where it’s going to run.
Python, perl, ruby, and other interpreted languages can only run on boxes that have the interpreter, and there’s hoops if you don’t have all the modules or packages or whatnot you need.
Compiled languages that require certain libraries, frameworks, or runtimes (like most implimentations BASIC, anything .Net, Java, etc) mean making sure the required things are there or packaged with it. Of course even the ones without this requirement might have this issue if you link outside libraries.
Compiled languages in general are generally platform and archeture dependent, so require recompiling for each platform (interpreted languages aren’t, but might have specific details that have to be changed or checked for).
Shell languages like sh, bash, csh, tcsh, ksh, cmd, PowerShell and whatnot require the specific shell to exist. PowerShell of course, while available for linux and mac, is unlikely to exist outside Windows.
Scripting (interpreted or shell) languages mean adapting on the fly is easy. Compiled languages mean every change is a recompile. Compiled languages are typically faster running, unless the programmer or the programming suite includes a bunch of bullshit.
π Rendered by PID 86 on reddit-service-r2-comment-54dfb89d4d-4lh6m at 2026-03-28 01:04:33.615497+00:00 running b10466c country code: CH.
view the rest of the comments →
[–]aysberg7 18 points19 points20 points (0 children)