News:

SMF - Just Installed!

Main Menu

Recent posts

#21
Java / Re: Javascript replace
Last post by Rehan - October 27, 2018, 07:17:44 PM
No, JavaScript is an interpreted language. That is to say, the source code of the script is the one that will be used to execute it. The browser reads the source code embedded in the pages, in the HTML language, and interprets this code to give an execution. Each browser has its own interpretation of the script.
Java is a compiled language. This is the case for most programming languages. The developer designs a program and code. The source code is then compiled in illegible language for us, but that will be executed by the Java virtual machine. The virtual machine is integrated into your browser. In the HTML code of the pages, is coded a call to a Java applet. The Java applet, compiled by the developer, is downloaded and executed.
#22
General Discussion / Re: Server ram work in desktop
Last post by Kyan - July 22, 2018, 12:08:09 PM
Check your bios or manual to see if your computer will accept ECC ram. This has some sort if buffer check built in.
#23
General Discussion / Re: Server memory work in a de...
Last post by Hudson - July 22, 2018, 12:07:38 PM
Assuming your motherboard and CPU supports it, then yes. But it should be said that server RAM works a little different from typical desktop RAM
#24
General Discussion / Re: Is haskell practical
Last post by Haider - July 21, 2018, 12:28:04 PM
Haskell is a general purpose programming language, and many, many applications have been written in it. The following free Haskell programs may serve as examples for constructing large applications in Haskell.
#25
General Discussion / Re: Haskell be of form variabl...
Last post by Dante - July 21, 2018, 12:26:05 PM
You have an extra l in the definition. If you remove it, the problem should go away.
#26
C++ / Re: firebase auth for my proje...
Last post by Cruz - July 04, 2018, 08:38:19 PM
You can set the rule as follows:

"Node": {
    "$field": {
        ".read": root.child('Projects/' + data.child('project').val() + '/Members/' + auth.uid).exists()",
        ".write": //same here
    }
}
#27
Python / Re: Python created
Last post by Otis - June 22, 2018, 08:09:18 PM
First released in 1991
#28
Python / Re: When Python
Last post by Mylo - June 22, 2018, 08:06:05 PM
When Working With File I/O in Python
#29
Python / Re: Python language
Last post by Mikolaj - June 22, 2018, 07:53:57 PM
An ideal programming language for the financial industry
#30
Java / Re: Java main
Last post by Maximillian - June 07, 2018, 10:11:13 PM
The main() method in C++, C# and Java are static because they can then be invoked by the runtime engine without having to instantiate an instance.