₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,042 members, 8,448,332 topics. Date: Monday, 20 July 2026 at 08:19 AM

Toggle theme

Micodon's Posts

Nairaland ForumMicodon's ProfileMicodon's Posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 (of 20 pages)

Science/TechnologyRe: The Look Of The Entire Universe In One Picture -awesome! by micodon(m): 7:47am On Feb 01, 2016
jornie:
Evidence suggest that the Big Bang actually happened...
if you care to know,you can read up www.schoolsobservatory.org.uk/astro/cosmos/bb_evid
There's no evidence that supports the Big Bang. All assumptions.....
May I ask: The energy that caused the Big Bang, where did it come from?
Science/TechnologyRe: The Look Of The Entire Universe In One Picture -awesome! by micodon(m): 10:01pm On Jan 31, 2016
jornie:
According to the Big Bang Cosmology,it has boundaries,if it has no boundary the Big Bang Theory would make no sense ...

the ball/balloon comparison is just an analogy
And I'm telling you that the Big Bang is a lie
Science/TechnologyRe: The Look Of The Entire Universe In One Picture -awesome! by micodon(m): 9:47pm On Jan 31, 2016
jornie:
according to the Big Bang Cosmology,it has boundaries...
Well, the big bang never happened. It raises more questions than answers
Science/TechnologyRe: The Look Of The Entire Universe In One Picture -awesome! by micodon(m): 9:31pm On Jan 31, 2016
micodon:
In simple terms, I dont know. But lemme say this: I don't think our Universe is like a ball that has boundaries... Or an object that can be felt. I always refer to the term "Universe" as a concept rather than an object. Our brain should understand it as a grouping in space of heavenly bodies, galaxies, planets and so on. How far reaching this grouping is, we don't know
And chances are that we'd never know...cos our universe is a 4 Dimensional continuum of space and time... 3 spatial dimensions and one for time.... And according to the relativity theories, the spacetime continuum is curved. So, exploration outside this continuum would be impossible cos if we were to embark on space travel, we would always arrive at our starting point
Science/TechnologyRe: The Look Of The Entire Universe In One Picture -awesome! by micodon(m): 9:21pm On Jan 31, 2016
jornie:
Yh... it is,although something led to it

let me ask u a question first, how far reaching is our universe?
In simple terms, I dont know. But lemme say this: I don't think our Universe is like a ball that has boundaries... Or an object that can be felt. I always refer to the term "Universe" as a concept rather than an object. Our brain should understand it as a grouping in space of heavenly bodies, galaxies, planets and so on. How far reaching this grouping is, we don't know
Science/TechnologyRe: The Look Of The Entire Universe In One Picture -awesome! by micodon(m): 9:08pm On Jan 31, 2016
jornie:
https://en.m.wikipedia.org/wiki/Multiverse
You know the idea of "A multiverse" is just hypothesis, right?

May I ask: assuming we are in a multiverse system, how far reaching will the system be? Infinity? Hope you know that outside the realm of mathematics, infinity is not real.... Just a concept
Science/TechnologyRe: Are We Alone In The Universe? by micodon(m): 8:53pm On Jan 31, 2016
tartar9:
very wrong sad
He's correct in a way. gravity is only a phenomenon. You don't compare gravity with light which is a real thing (particle and/or wave). To clear you, lemme ask: what is the unit of gravity
Science/TechnologyRe: The Look Of The Entire Universe In One Picture -awesome! by micodon(m): 8:46pm On Jan 31, 2016
3rdlegxxx:
I just wonder if we left science to the Africa better still Nigeria, would we have come this far? would we have been curious about stars. planets, the universe, because the average Nigeria only believes, he can't think or rather is too scared to create or imagine anything outside religion, thank goodness for those who put religion aside and go out to satisfy their curiosity so as to have us fully understand how we came about, where we are on the map of the world what we are capable of doing if we open our minds to science, curiosity, observations and more, it's looks scary but beautiful and earth is one small part of it and our country is even a smaller part of it and we, well as someone said we are smaller than dots, but we have learnt to connect the dots together to give us these and then we actually have other universes; at this point, i give up, i thought the universe was infinite and endless and now they are other universe just like ours, what and who could be living there? there is so much to know angry
There's nothing to prove that the Universe is NOT boundless. To me, the Universe is just a concept.... Not a real object...
Science/TechnologyRe: The Look Of The Entire Universe In One Picture -awesome! by micodon(m): 8:44pm On Jan 31, 2016
jornie:
other universes,each keep expanding and getting bigger .. it's a multiuniverse system
that's just an assumption. Science can't prove that
WebmastersRe: Web Developer Needed In Lagos by micodon(m): 6:28am On Nov 04, 2015
lekums:
Hello,

I need a developer for full time employment. The person would be able to use wordpress and Magento.
Ability to use Drupal and Joomla is an advantage but not required.
Also ability to do graphics is an added advantage but not required.
Ability to write basic HTML, CSS and PHP is also an advantage but also not required as this could be learnt on the job.

Office location is Ikeja and salary is fairly attractive.

PM me or drop your contact details here if you quality and if interested.
If he/she only knows WordPress and magento, without any knowledge of any language, what makes him/her a developer? That's like calling me a banker because I know how to use excel alone
WebmastersRe: I Want To Build An E Commerce Website by micodon(m): 9:29am On Nov 01, 2015
OLX is a Classified ads app not an ECommerce app. Client doesn't know, and all you who call yourselves Developers don't know.

09099010453
ProgrammingRe: 10 Best PHP Frameworks All PHP Developers Should Check Out by micodon(m): 6:53am On Oct 25, 2015
talk2hb1:
Its very easy to build a framework, but its not easy maintaining it.
You spend better part of time fixing bugs, patching securities, etc. undecided
That's no problem at all. Its better than using someone else' framework and it goes dead. e.g codeignjter, lithium, sonic, etc
WebmastersRe: Php Reply System. by micodon(m): 10:01am On Oct 23, 2015
The best way to go is to use to normalize ur tables. use three tables for this. one table for your users' info, One table to hold the conversation as a whole, the other table to hold the replies. e.g


users table

id
username
...........



conversations table

Id
user_one (should be an integer and an index referencing your user table)
user_two(same as above)
created_at
updated_at
deleted_at


replies table

Id
conversation_id (integer, index, references conversation.id)
user_id(integer, index, references your user table)
message
read(integer, default should be 0 (which is unread), 1 is read)
created_at
updated_at
deleted_at


So when ever Php starts a conversation with CSS, you create a new conversation with user_one as Php's ID and user_two as CSS's ID. then u make an entry into the replies table with the conversation Id on the conversation table, the user_Id is the person who sent the message.


Always normalize ur database where possible. I'm on WhatsApp 09099010453
ProgrammingRe: 10 Best PHP Frameworks All PHP Developers Should Check Out by micodon(m): 7:48am On Oct 19, 2015
There's nothing like 'best framework'. Its a matter of preference. E.g Laravel was my favorite until I built my own. but Laravel uses a lot of synfony components. so if symfony dies, it dies. But it is more popular than Symfony.
EducationRe: ABU: The Biggest University In Nigeria by micodon(m): 7:23am On Oct 19, 2015
ABU is the largest when you factor in Land mass plus student population plus structures. But Land Mass alone, Unilorin is the largest in Nigeria. No other university comes close
ProgrammingRe: Populating Select Menu From Model In User Registration Form In Laravel by micodon(m): 10:07pm On Aug 28, 2015
maekhel:
Am trying to pass data from a model to be used to populate a select menu in my user registration form. What is the easy way to achieve this?
The whole point of MVC is "separation of concerns". Your Model should fetch your data. Your views should display info to the users. The controller ties the model and the view together. It should control the process.

To answer you question: if your model is named User, call it in your controller like so

$this->data['users'] = User::get();

Then you can call your view like this

return View::make('user', $this->data);


Your data will be extracted and made available in the $users variable
WebmastersRe: Is This Strong Enough To Prevent SQL Injection? by micodon(m): 10:23pm On Aug 19, 2015
Raylight2:
$username = stripslashes($username);
$password = stripslashes($password);
$username = mysql_real_escape_string($username);
$password = mysql_real_escape_string($password);
1. Use prepared statements with PDO. takes care of query filtering
2. Encrypt your passwords with BCRYPT. its probably the safest, popular encryption algo out their. with it, there's no need for using a salt.
WebmastersRe: How To Get A Good Web Hosting In Nigeria by micodon(m): 4:18am On Aug 18, 2015
knight1ng:
first and foremost i will like to thank webmonitor for his piece about our host "www.cedarhostng.com"

now here is my reply for you

1.we said our price are affordable with a price tag of N3500/Yr with unlimited features what webmonitor fail to understand is offering unlimited features means a clients account is not restricted to the number of database,email account creation and lots more... now some host restrict you to 1or 2emails 20bandwidth 5database and so on now kindly ask mr web monitor is it a crime to give people true value that they deserve without restrictions?

2.we Dare web monitor to mention the company name that'sour provider and will prove him wrong that they offer unlimited features mr web monitor why do you seek to destroy a good company name because you havent for once asked us questions to explain to you if you dont understand the basis of our host services.

3.mr webmonitor of nairaland talked about 500+ script you should know that scripts are in softaculous and other like u said but besides that there are other scripts that can be provided if not in softaculous n others

4.247support we offer means you can interact on any of our available channels bbm etc for immediate response even while u working on your site alot of people can testify to that whom have hosted with us.

5.upgrade/downgrade mr web monitor since you have no idea means whether u are a reseller or otherwise e.g if you buy 30gb and want to upgrade to 50gb plan u only pay the the balance and we upgrade ur account frm 30gb to 50gb likewise if you downgrading we also provide such feature for our resellers

6.Our Server is US Based

7.we reward anyone who refer a client to us thats what is meant by affiliate mr webmonitor of nairaland have you ever refer anyone to us? so your claim are baseless if you refer and we didnt reward you then you can be bold enough to say its not true on nairaland but u have never used our services nor refer anyone.

8.what we mean by resellers can maximize profit means that when you sign up as a reseller you are entitled to split your disk size into chunks and give it your pricing

Finally mr web monitor i want to sincerely thank you for your hardwork/post on nairaland we have alot of your kind of person on nairaland who are just after discrediting a business/company without ever testing their service

you do not just post without concrete backing because mr webmonitor as never used our service he has no knowledge of how our hosting service works

trying to rub a company face in mud will do you no good.test a service before you conclude

fellow nairalanders becareful of people like web monitor who are purely attention seekers and underneath they have their hidden motives. use a service first then if its unrealistic your voice will be heard.

we say thank you to all our existing clients who has been with us for years and have never complained about our service.
give me the address of one of your data centres
ProgrammingRe: Javascript Is Very Very Powerful, It's Not Just Script. by micodon(m): 3:12am On Aug 18, 2015
And take note that compiling to Java Bytecode is not just a Java implementation. With Java's bytecode loader specifications, you can write a compiler to compile any language to java bytecode for the JVM. that's how languages like groovy, Scala and Clojure works.

Java can be compiled directly into native code by the developer if he so wishes. but compiled code may not be platform independent. hence, the JVM
ProgrammingRe: Javascript Is Very Very Powerful, It's Not Just Script. by micodon(m): 3:04am On Aug 18, 2015
Olumyco:
I can get u. Is like this is becoming more interesting and seriously I am really gaining. Thumbs up Micodon, dhtml18

I will like to react further on the issue of Compiler and Interpreter. Also Categories of Languages. I think where the problem still lies is the machine code issue/storage issue and will like to dwell much on them.

To me I can say We have the following Structure;

-Interpreter

-JIT/AOT Compiler

-Conventional Compiler

INTERPRETER
As for Interpreter it interprets/parses/converts the source code/intermediate code to machine code without storing it. That is why each time the code is run, it converts it again to machine code. The machine code are never stored anywhere on the system.


"I want to add this to the meaning of Compilation. Compilation significantly differs from interpretation or converting in the sense that when compilation is done machine codes are stored in a file or in memory. When interpretation is done machine codes are never stored. Interpreters just read the code line by line and parse it converting it to machine code but never store it.


JIT COMPILER
JIT Compiler compiles source code or intermediate code (like bytecode, MSIL) to machine code and store it in memory. That is it "cache" it. I believe we understand "Cache". In Computer Storage Technology, one of the least rudimentary computer storage is Cache. JIT does not only do compilation but also interpret the source code/intermediate code at runtime at first run to at least third run of the code.
In operation, JIT Compiler interprets the source code/intermediate code and at thesame time compiles the code. After two or three runs, JIT Compilers no longer interprets, it just straight away run the code in the machine code already cached.

Conventional Compilers
These Compilers compile all the source code/intermediate code and store them in a file on the system.
For example:
For C Language:
When you code in C you save as .c extension like app.c
When you give this file "app.c" to a C - Compiler it first create a file called app.o
Then it begins to read your codes and compiles them storing them into app.o
Note: Your .o extension means Object File.
Now that the compiler has stored the machine code (like x86 cpu code) into app.o then it can then run the code directly from app.o
About .exe files, a "linker" is used to connect the object file containing the machine code (app.o) with the .exe file like app.exe for execution.

For Java Language:
When you code in Java, you save as .java extension like app.java
When Java Compiler like "javac" the most used handles the app.java, it first create a file of .class extension like app.class
Then it reads the code and compiles it to byte-code by storing the byte-code inside app.class file.
The work of "javac" in Java Development Kit (JDK) ends as soon as it compiles Java Source Code to byte-code and stores them inside app.class.
Then Java Virtual Machine (JVM) in Java Runtime Environment (JRE) takes it from the point at which the Compiler stop and run the byte-code by interpreting/parsing/converting it to machine code just as explained above under Interpreters.
Therefore, app.class containing byte-code is run directly by JVM Interpreter.
Simply put, In Java Programming two things happen.
1. Java Source Code is compiled to byte-code
2. Byte-code is interpreted at runtime.

@ Micodon this is the area I was expecting you to hit when I asked you under which category will you classify Java and C#, because the two of them compiles to an intermediate code by storing them in a file system and also interprets the intermediate language. So when one talks about compiled languages the duo can fit in. When you talk about interpreted languages the duo too fit in.

The cunning way of JIT compilers comes in here as it also compiles and interprets. And the difference is clear that JIT stores in memory while conventional compilers stores inside a file system. Also, JIT storage technique is not done once like conventional complilers. JIT stores procedurally by getting the functions that is run and compile them to machine code. Just as Micodon said which is the basic principle behind JIT compiler, 'it is used to optimize the performance of interpreters, so that when the code is run more than once it can optimize it for the subsequent runs.
"Anyway at your discretion"

To be on the safer side, I believe we can say;
Compiled languages, Interpreted languages and Hybrid Languages (Compiled and Interpreted)

Finally, just as I have said any language can be compiled or interpreted. Anybody can work on JavaScript Programming to do compilation by storing in a file system. One can develop a compiler that will create a file to store machine code and run the JavaScript code directly from the file containing the cpu code. But without that for now our JIT/AOT Compilers have helped solved the issue of slow - slow.

Observation: JIT Compiler does not compile only byte-code. Like V8 Engine, its JIT Compiler compiles directly to machine code. JVM JITs, Rhino etc are the once I know that do that.

Thanks.
The key is: Precompilation. Languages that are precompiled by the developer are generally called compiled languages
ProgrammingRe: Javascript Is Very Very Powerful, It's Not Just Script. by micodon(m): 2:57pm On Aug 16, 2015
dhtml18:
Corecta! and JIT compilers stands for Just-In-time Compilers.
And to quote someone on stackoverflow:

A JIT compiler runs after the program has started and compiles the code (usually bytecode or some kind of VM instructions) on the fly (or just-in-time, as it's called) into a form that's usually faster, typically the host CPU's native instruction set. A JIT has access to dynamic runtime information whereas a standard compiler doesn't and can make better optimizations like inlining functions that are used frequently.

This is in contrast to a traditional compiler that compiles all the code to machine language before the program is first run.

To paraphrase, conventional compilers build the whole program as an EXE file BEFORE the first time you run it. For newer style programs, an assembly is generated with pseudocode (p-code). Only AFTER you execute the program on the OS (e.g., by double-clicking on its icon) will the (JIT) compiler kick in and generate machine code (m-code) that the Intel-based processor or whatever will understand.
Source: http://stackoverflow.com/questions/95635/what-does-a-just-in-time-jit-compiler-do
Nice
ProgrammingRe: Javascript Is Very Very Powerful, It's Not Just Script. by micodon(m): 8:45am On Aug 16, 2015
Olumyco:
Thanks for the response. Very Informative.
But I disagree with u on d following statements.

1. That all programming Languages compile to machine code at one point or the other.

2. That JIT Compiler interprets machine code.

3. That we av just Two categories of lang (Interpreted & Compiled).

.......... ................ .................
In today's programming I want you to know that any language can be compiled or Interpreted. Your compiler / interpreter dictates dis. Anyway by default specification by d creator of d language he may choose to implement the language by interpretation or compilation. But that does not stop anyone from building his own compiler or interpreter for the language. It may interest u to know dat C++ can compile to JavaScript. Infact there is even a compiler for it. U can check it out. Interpreter too can be developed for any language. Rhino compiles JavaScript to byte code which is then interpreted just as Java/JVM.

See, Programming World is so dynamic and sometimes might b confusing especially with choice of of words (Terminologies).

Now it seems I will av to clarify what is meant by compilation and Interpretation.
Compilation simply involves translation or changing of one code to another code. You can change a source code to machine code (Bit) or to byte code or to another's programming language source code.

Interpretation simply involves parsing of code without changing the code to another code or to machine code. You can parse (interpret) source code, byte code, threaded code but not machine code. Why would u need to parse a language that itself is the machine language? No.
Mind u I still agree that the source code is converted to machine language . That is, interpreted to machine code. But to put it beta I want to say an Interpreter reads/parses d instruction and then call native machine code to actualize the instructions. That is, it talks to the native machine code to execute the instruction (source code). It is Neva transformed.

Back to those statements
1. It is wrong to put it that way. If I don't compile the source code to machine lang wit a compiler, then hw can I av it in native code? Interpreter parses or d so called converts source code to machine code.
"to compile" is different from "to convert". Pls note.

2. JIT Compilers do not interpret machine code. Hw can u interpret native CPU code?
I agree that it does interpret but dat is still source code. JIT at runtime for the first time interprets the source code as a normal interpreter and at the same time compiles the functions of the code to native machine code. After 2, 3 , 4 times d compiler begins to run the functions from d already stored CPU code. You already said dis but note dat compiled code is different from interpreted code.

3. If u say we av Compiled Languages and Interpreted Languages, under which language would u classify Java and C#?
Also on d issue of JIT Compilers, are they Compilers or Interpreters?
I do not dispute d fact dat they are embedded inside Interpreters but based on how they operate are dey compilers or interpreters. Infact anything can b put inside an interpreter/compiler.

Ur answers to these questions should help maintain a balance on d contending subject.

Thanks
1. Never did I say that that JIT compilers interprets Machine code. don't misquote me. The Interpretation is done on your Script, your source code. The JavaScript JIT compiler translates your script into bytecode which is just a map of tokens (created by the lexical analyzer) to their equivalent Javascript's bytecode. At the end of The JavaScript's Jit compiler's process, It's bytecode's interpreter transpiles, or translates or compiles it to Native Code for the machine to understand. That's the point. At one point in time, your script has to be presented to your machine in its native code for it to run.

2. Java and C# are compiled languages. THEY ARE PRECOMPILED BY THE PROGRAMMER BROS. Take note of that point. Java to JavaByte code, which is understood by the JVM. C# to MSIL.

3. JIT compilers are just compilers. The Language runtime may have lexical analyzer, parser, interpreter, and the compiler. They work together. Much of your problems come from the fact that you think that interpreters are compilers. they are not.

4. I said languages are BROADLY CLASSIFIED INTO TWO. Understand that language.
ProgrammingRe: Javascript Is Very Very Powerful, It's Not Just Script. by micodon(m): 8:08pm On Aug 15, 2015
Another argument that some may give is that scripting languages are the ones that are domain specific and give instructions to their hosts within their domain.

This is reasonable. Javascript instructs its host (the web browser or web server what to do). it can't give a command outside of its domain, say access the windows registry cos that's outside its host's powers. thus, the need for a runtime.

PHP too...it instructs the web server.

But the other class of languages like c, c++, java etc...are not domain limited. They can do anything with your system.

It's more technical with Python and Ruby..trying to explain would start a world war.
ProgrammingRe: Javascript Is Very Very Powerful, It's Not Just Script. by micodon(m): 7:34pm On Aug 15, 2015
Olumyco:
JavaScript again! JavaScript again! The most misunderstood, very subtle programming language in d World.
As for Scripting lang. Micodon u r correct but alot av changed with hw JavaScript is implemented today.
For ur info JavaScript is now being compiled at runtime with a principle known as Just-In-Time(JIT) Compilation. Most JavaScript Engines in our browsers, servers and so on now do JIT Compilation. That is, JavaScript codes are compiled to native machine codes at runtime.
We av different JavaScript Engine - V8, Rhino, Spidermonkey, SquirrelFish Extreme (SFX), Chakra etc.

V8 JavaScript Engine
This engine runs inside Chrome browser, Nodejs. It does JIT Compilation. It executes JavaScript code by compiling it to native machine code at runtime. This is d reason why it is very fast and ur Google Chrome is rated high as d fastest browser though can be challenged by Safari which run SFX.

Rhino
Rhino runs in Rhino Shell and also used for server - side JavaScript. This Engine first compiles to bytecode an intermediate code just like Java Virtual Machine (JVM) after which d JIT part of d engine execute d bytecode by compiling it native machine code at runtime.

Spidermonkey
This which came from thesame source as Rhino, Mozilla also does JIT compilation. Same as Rhino. It runs inside Firefox browser, Adobe softwares etc.

SquirelFish Extreme (marketed as Nitro, formerly JavaScriptCore)
It runs in Safari and Apple products. It does JIT Compilation. It compiles JavaScript code to native machine code at runtime.

It all continues like that.......... you can research more on JIT Compilers. That is where life is now. Even Java, .net Framework lang etc av woken up to JIT compilation issue. JIT Compilation helps programming lang to still maintain that 'Java Paradigm' Write Once Run Anywhere (WORA)
Pls don't forget to implement ur Programming Language based on JIT Compilation if u eventually develop one.
Thanks.
i knew someone was gonna bring up JIT. JIT does not mean that the language is no longer a scripting language. You are still misunderstanding the concept of Interpretation.

First Know that technically speaking, every language has to be compiled to machine language at a particular point in time.

What is JIT for? JIT is to improve performance.

Imagine life without JIT. Imagine SCRIPT A. Imagine it is to be executed for every request to your server. Now, what if there are 10 million users in 5 seconds? Would it be efficient for the Javascript engine to interpret this same script 10 million times in 5 seconds? NOOOOOO? That's a performance bottleneck. THAT'S WHAT JIT IS MEANT TO REMOVE. Instead of interpreting this script 10 million times, the JIT compiler gets it and INTERPRETS IT ONCE and THEN STORES THE INTERPRETED CODE (call it the compiled code) IN SHARED MEMORY. Now, for other subsequent requests, the Language runtime checks if the requested script has been compiled and saved. if, yes, It executes the already compiled file. If NO, it fetches the script and sends to the JIT compiler to do its job, then it executes.

If you look under the hood. turn restart your system, you'll see that the script will be JIT compiled again.

The main point is: IT IS STILL INTERPRETED BY THE JIT COMPILER. As long as it is not precompiled like languages like Java, C++, etc....it is a SCRIPTING LANGUAGE.

PHP 7 has a JIT compiler..PHP is still a scripting language
HHVM has a JIT compiler...PHP is still a scripting language.
Python compiles its scripts to .pyc files and stores on disk...Python is still a scripting language.


same with javascript. JavaScript remains a scripting language

Languages can be broadly classified into two: Compiled and Interpreted.
JavaScript, PHP, Python, Ruby, etc fall under Interpreted Languages...That's why they are called scripting languages. They are not precompiled by the developer.
ProgrammingRe: Javascript Is Very Very Powerful, It's Not Just Script. by micodon(m): 12:14pm On Aug 15, 2015
Nickzom:
I agree with you mehn but you still do not understand what I am saying.
I am saying that JavaScript is not meant to be used to just help make a website dynamic but it can also be used in the development of intense softwares and web applications. That's all I am saying. I am not saying it is not a script. We all know it is a script. It is even on the name javaSCRIPT.
Take a look at the topic..and you'll understand why I'm still talking
ProgrammingRe: Javascript Is Very Very Powerful, It's Not Just Script. by micodon(m): 8:17am On Aug 15, 2015
Nickzom:
I understand you brother! But you must know this. When JavaScript was created it was created to be a script language but as of now it can be used to perform way more function than a script. For instance during its creation no one thought for ones it could be used to code up a relational database but now you can effectively make use of JavaScript to do that.
This is just one instance there are so many new features embedded into JavaScript every now and then.
Hope you understand brother
Like I have said, a scripting language is defined NOT by its functionalities, but by the way its executed. scripting Languages are called 'scripting' cos they are interpreted.

Python, PHP, Ruby can all connect to database systems....They Re scripting languages. It's the same
principle with javascript?.

For example, When you write a c++ app, you have to precompile it before you can run it. But when you write a JavaScript app, say a nodejs app, you just drop it in, call the script and nodejs with its V8 engine reads through the script and interprets the script to the machine.

AGAIN, SCRIPTING LANGUAGES ARE CALLED SO COS THEY ARE DESIGNED TO BE INTERPRETED.
ProgrammingRe: Javascript Is Very Very Powerful, It's Not Just Script. by micodon(m): 1:37am On Aug 15, 2015
maekhel:
So?
So, saying JavaScript is more than a scripting language is wrong
ProgrammingRe: Javascript Is Very Very Powerful, It's Not Just Script. by micodon(m): 10:20am On Aug 14, 2015
Nickzom:
When I learnt JavaScript back in 2013, Everybody were telling me it is just a script language - client sided and cannot be used to write heavy applications.

Guess what I proved all of them wrong and I am kinda rocking on it in building all my web applications. I built my website from scratch and believe me my website is totally a HEAVY application. Instead of using java to create applets to integrate into my php. I used JavaScript all through.

Not only did it make my web application more effective and reliable, it made it super fast.

My web application does calculations and shows the steps in a very unique way.

Thanks to JavaScript, I thought you programmers should know.

You can see my work at www.nickzom.com

Have a nice day!
No matter how powerful it is, it is still a scripting language like Perl, PHP, Python, Ruby, Lua and the likes.
Calling it a scripting language does not diminish its power, it just tells the world how it is executed -- BY BEING INTERPRETED.
ProgrammingRe: Javascript Is Very Very Powerful, It's Not Just Script. by micodon(m): 10:17am On Aug 14, 2015
Nickzom:
When I learnt JavaScript back in 2013, Everybody were telling me it is just a script language - client sided and cannot be used to write heavy applications.

Guess what I proved all of them wrong and I am kinda rocking on it in building all my web applications. I built my website from scratch and believe me my website is totally a HEAVY application. Instead of using java to create applets to integrate into my php. I used JavaScript all through.

Not only did it make my web application more effective and reliable, it made it super fast.

My web application does calculations and shows the steps in a very unique way.

Thanks to JavaScript, I thought you programmers should know.

You can see my work at www.nickzom.com

Have a nice day!
WebmastersRe: Mysql Deprecated Problems by micodon(m): 9:23am On Aug 13, 2015
Adesege:
Yah! Buh it's yet to be removed. So it can still be used. Just that he will be having cross platform issues
security issues as well

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 (of 20 pages)