Posts by lorduakiti • 127 points
8 posts
-
2
votes0
answers513
viewsQ: How to run webpack + Reactjs without Node.js in the client-side?
It is possible to run the webpack transpilator in the client-side without installing and running it on a Node.js server ? I am currently trying to implement a SPA application using React 15.1.0…
-
1
votes1
answer529
viewsA: how to open events in fullcalendar
One option is to use the settings "eventClick" and call a popup or navbar forwarding the event information. $('#calendar').fullCalendar({ eventClick: function(calEvent, jsEvent, view) {…
-
0
votes4
answers318
viewsA: How to return an object from a dynamic reference in Javascript?
I discovered a way to call a javascript object by its id dynamically: window["objTest_" + 1]…
-
2
votes4
answers318
viewsQ: How to return an object from a dynamic reference in Javascript?
I need to create a Javascript code that returns an object already created with a dynamic reference by its name/id. Basically this: // Define class function Test(num) { this.msg = "Message"; this.num…
-
0
votes1
answer73
viewsQ: Function reference in Ruby Array
I couldn’t understand what the Ruby relation of the reference of an array variable is like (best and vector) with the return of a function (fitness or bitstring for example). Consider the next case:…
-
1
votes2
answers526
viewsQ: Python 3.5 + Django + Postgresql on Windows
I am currently starting a web system project using Python 3.5 and the Django 1.9.1 framework, aiming to integrate them with a database Postgresql 9.5, all installed on a Windows 10 x64 OS machine.…
-
1
votes3
answers5839
viewsQ: Namespace declaration statement has to be the very first statement or after any declare call in the script
I wonder what caused this problem that I solved "kind of without knowing how". I created the file mysql.php using Pspad editor to debug some queryes and mysteriously started to look like the bug:…
-
5
votes2
answers718
viewsQ: What is the most threads supported by Java EE?
I’m analyzing how to rewrite the architecture of a Java program I’d like to know how many threads the scheduler (Scheduler) supports? or how can I infer this amount based on the processing power of…