All Questions
0
votes
0answers
4 views
0
votes
0answers
5 views
Adjacency list from scratch C
Here is my code for implementing adjacency list from scratch. I would like to get feedback from the experts for optimization.
Thanks in advance. Code:
...
0
votes
0answers
10 views
My first c++ based console program [on hold]
I've recently started studying C++ (from internet) Made my very first program, calculator. It works, but i'd like to know how could i make this more "advanced"?
...
1
vote
1answer
24 views
Keep NumLock always on in C on Linux
I intend to replace my bash script executing these two very same commands infinitely, for the bash script seems rather ineffective:
/usr/bin/numlockx on
...
1
vote
0answers
16 views
Login MVC without Entity Framework [on hold]
I'm working a system in ASP.NET with MVC 5 and I'm new at this, so I need help with the login part in my system, the thing here is that I need to work the login without entity framework and using a ...
7
votes
0answers
27 views
Brainfuck to x86 Assembly Compiler
After my Brainfuck Interpreter written in x86 Assembly I decided that it was time to get to the next step, writing a Brainfuck Compiler in Java that generates x86 Assembly and compiles that to an ...
1
vote
0answers
17 views
Find Row Pairs that are never both 1
Given sample_size many arrays of length dim. For each index from 1 to dim, i want to give a list of indices, where no sample ...
0
votes
0answers
18 views
Implementing bulk big data insertion in async EF
I am trying to parse a large data file (say 450MB of 380-bytes long lines) and insert corresponding records into MySQL database as fastest as possible, using Entity Framework.
Normally, in Java/...
0
votes
0answers
18 views
Extract strings from Deterministic finite automaton
I have created a class which one can build a Deterministic Finite Automaton, with different states - including a start state and one or several accepting states. Also, every transitions has at least ...
2
votes
1answer
16 views
Multiplication Exercise Generator
I'm new to programming in Python, and I am trying to create a multiplication exercise generator. I've got the following code for the solution, but I'm wondering if there is any more elegant solutions ...
2
votes
2answers
27 views
Linear quation system solver
I've done an equation system that takes as input the equations (you choose the number of equations), and gives as output the values of the unknowns.
I splitted the code in four files:
-equation ...
0
votes
0answers
20 views
Instantiate repository classes dynamically
I'm curious about the best way to instantiate my repositories. Currently they're in the main controllers constructor method.
I was thinking making separate controllers for inbounds, outbounds, ...
2
votes
0answers
20 views
Converting an integer to Greek and Roman numerals
Yesterday I posted a question about converting an integer to it's Roman Numeral equivalent. Apparently you guys liked it and gave me some good advice, so I decided to take all your advice, and go a ...
-2
votes
0answers
7 views
Adding/Taking away/Dividing/Multiplying two text boxes then displaying it in another text box [on hold]
function doMath(sum)
{
if ('operator_1'== '+');
{
var a = document.getElementById('textbox_1').value;
var b = document.getElementById('textbox_5').value;
...
0
votes
0answers
13 views