Unanswered Questions
6
votes
0answers
36 views
A reusable ProgressIndicator
There was a Tweet from @ExcelEasy earlier this week, that linked to this article, to which I replied with a little challenge:
@ExcelEasy well done! #Challenge: make a more #OOP one without using ...
5
votes
0answers
9 views
Routing for a Laravel 5 e-commerce site
Well, I am new here and learning laravel 5 on my own. I want to get reviewed on the following routes.php code.
My question are:
Have I made any mistake(s) by ...
5
votes
0answers
120 views
+50
LiveDate version 2
LiveDate has the ability to display the current date either by asynchronously fetching the time from a server or by just using the client system date. It's only as ...
5
votes
1answer
114 views
Security of login and register system
I need some help with my register and log in functions. I'm not sure if I have understood bcrypt correctly either. I'm doubting the security of it, what do you ...
4
votes
2answers
20 views
Verifying Intel.hex file records are valid, how are my bitwise operations (and the rest)?
I have a class called FirmwareFile which represents and Intel HEX format file. The file is constructed with the name, build time and build date, at a later point ...
4
votes
0answers
50 views
Chebyshev polynomial evaluation class using C++1z fold expressions
I've been messing around with templates in c++14 and c++1z recently, and since I have somewhat of an obsession with optimization ...
4
votes
1answer
798 views
Prepared Statements / MySQLi / PHP Registration/Login Form
I'm just looking for some feedback here. I'm fairly new to MySQLi & PHP, but I've been working at it for a bit now, and reading up on how to make secure login forms, avoid SQL injection etc. I'm a ...
3
votes
1answer
19 views
JSDoc for TCG game entity configuration
The Cardshifter team has been working at "translating" a very complex Java class into JavaScript, to make it more accessible to somebody who would want to fork the game and make their own ...
3
votes
1answer
29 views
Designing a circuit of gates in Clojure and doing forward and backpropagation
I am reading Hacker's guide to Neural Networks. Since I am also learning Clojure, I tried to implement them in Clojure.
I would like the feedback about what could be more idiomatic and better in the ...
3
votes
1answer
75 views
Optimize Python script for generating Point Cloud
I'm trying to produce a 3D point cloud from a depth image and some camera intrinsics. The image is 640x480, and is a NumPy array of bytes. The output is a (rows * columns) x 3 array of points.
I've ...
3
votes
0answers
156 views
Rails app that scrapes forum using Nokogiri gem
I've built a website that scrapes a guitar forum's pages and populates Rails model. I'm using rake task along with heroku scheduler to run background scrapes every hour.
On the homepage, the forum ads ...
2
votes
0answers
11 views
Copy table using Selenium and Python
I have some Python code that copies a table from a website using Selenium, but as I haven't used Selenium much, I have that irksome feeling in the back of my mind that there must be a better way. It's ...
2
votes
0answers
68 views
SecureString as SqlParameter value without GC concerns
The purpose here is to make it easy to use sensitive data that is already in the form of a SecureString (example) without converting it to a ...
2
votes
0answers
28 views
Correcting a quiz
I wrote this code that's supposed to correct quizzes on a webpage, but it feels bloated and I'm sure there's tons of ways to improve it. Any thoughts?
...
2
votes
0answers
537 views
Python urllib proxy access function - Coverage of possible proxy scenarios
Several of my Python 2.7 programs need to access server tasks via our server apache instance.
The 'client' programs will run on Windows in various environments. They may be run on systems that do not ...