The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
39 views

Boiler.js - A new JavaScript utility library. Room for improvement? [closed]

Boiler.js @ GitHub Boiler.js Homepage I wrote Boiler.js from the ground up for a few reasons: Underscore.js and other similar libraries do not have enough methods for working with object-literals ...
0
votes
0answers
25 views

Critique my RTCPeerConnection signaling library

I created a library/npm module to handle the signaling process for RTCPeerConnection. There is still a good bit of work that needs done (error handling, dealing with users disconnecting during the ...
0
votes
0answers
64 views

How to improve speed of this piece of CUDA code?

I'm trying to port my library to CUDA. I wrote first version, but it is slower than CPU version. How can I improve speed of this code? What mistakes did I do? Best regards, Nick This is a piece of ...
0
votes
0answers
97 views

Why this CUDA program slower than a CPU program? How can I improve it's speed?

I partially ported my lib (https://github.com/NicholasShatokhin/OpenNNL) in CUDA (https://github.com/NicholasShatokhin/OpenNNLCuda). But CUDA version slower than CPU version. Can anybody look function ...
0
votes
2answers
132 views

Is this code good? Is it convenient API? [closed]

Can somebody looks my code https://github.com/NicholasShatokhin/OpenNNL ? What can you say about it? Can you say something about API? Best regards, Nick
2
votes
2answers
105 views

Please review different approaches for writing plugins/widgets in javascript

I have written a js library (think, jQuery, but with much much less features, and targetted for newer browsers on mobile). This library provides a extension mechanism. One of the ways the extension ...
2
votes
1answer
76 views

Foo - Control | Naming conventions update

The code below is for modern browsers only. Naming conventions are as follows: m or M - Model v or V - View c or C - Controller ...
0
votes
0answers
80 views

XML to JavaScript library design

I created a small library to parse xml to javascript. Can anyone tell me if the design is correct for a library? or if there is a better technique. I wrote a small Usecase example here. ...
4
votes
1answer
272 views

Activeresource-response gem

I created my first gem for Rails today. https://github.com/Fivell/activeresource-response. This gem adds possibility to access http response object from result of activeresource call. I don't know ...
1
vote
1answer
284 views

ruby gem file structure [closed]

Am in the middle of implementing my first gem and I'm pretty sure the file structure I'm using is going to become problematic (particularly under "lib", I'm becoming worried about the amount of files ...