Newest Questions
77,759 questions
0
votes
1
answer
7
views
Return breakdown of component from database into its constituent materials; correctly handle recursive scenarios
I’m working with a MySQL database that models product compositions and raw materials. There are two relevant tables with columns as shown:
product_recipes:
...
3
votes
2
answers
51
views
-1
votes
0
answers
52
views
Backend E-Commerce API using Laravel
I want to know if I am ready to apply for a JR Laravel Backend Developer Role, and if my code meets the expectations for a JR or maybe even a Mid-Level Role. My Project isn't done fully: I am planning ...
4
votes
2
answers
219
views
Strength of a Pyramid Top
I need to solve the following competitive programming problem from coderun.ru:
Strength of a Pyramid Top
The pyramid consists of n horizontal layers of blocks: the first layer contains n blocks, the ...
0
votes
0
answers
19
views
CodeView Custom JavaFX Node
I created this to learn about creating custom controls using Region. I did not do any testing of the Control, and it is limited to displaying Java only. I didn't need this for any reason other than ...
3
votes
1
answer
111
views
Reassignable reference_wrapper with empty state
I created a simple custom refernce_wrapper class template, which, in contrast to std::reference_wrapper, has some additional ...
1
vote
0
answers
19
views
ReadWrite Lock compatible with coroutines
A while ago I wrote for my own needs a (non-reentrant) read-write lock for kotlin's coroutines. I got no reactions on the relevant github thread. I think it's a nice code, so I thought I'd share it ...
5
votes
2
answers
761
views
Project Euler #909: L-Expressions I
I am trying to solve the 909th challenge of Project Euler. It is basically about replacing specific patterns in a string until no pattern is found. A given string like ...
9
votes
3
answers
1k
views
C++17: shared_mutex protected DNS cache (rare writes, many reads) return-by-value vs decltype(auto)?
I’d appreciate a review of this small DNS cache.
It stores pairs of domain and IP address
and uses a std::shared_mutex because reads are frequent and writes are ...
5
votes
1
answer
268
views
PathFinding.java: The grid view and model
Motivation
I am really fond of qiao/PathFinding.js, and, so, I decided to start to do something similar (PathFinding.java). Also, this time, I am wishing to practice some MVC-patterns. It would seem ...
8
votes
2
answers
530
views
Own HTTP server implementation in Java with a simple template engine
I would like to hear what you think about my simple HTTP Server implementation with a template engine in Java.
Have I overlooked any "pitfalls or caveats", or is there anything else to note?
...
6
votes
1
answer
265
views
Splitting a long introduction into collapsible elements easier to read and translate
Before I started, we had a few long introductory texts that were shown to users in different part of the editor window, depending on what type of object they are editing. The texts describe how to add ...
3
votes
0
answers
52
views
lanczos_resample Template Function Implementation for Image in C++
This is a follow-up question for Two dimensional bicubic interpolation implementation in C++. I am trying to implement Lanczos resampling for 2D image in this post.
The experimental implementation
<...
-3
votes
0
answers
47
views
Role-based Access Control Class code [closed]
I want to know if the sequencing of my code acknowledges coding conventions, and is easy and maintainable to follow through. Here is my code:
...
3
votes
1
answer
132
views
Java: counting letters FROM A fractal algorithm shows prime number patterning
This example finds all "letter" structures.
letter a = LMLMMM
letter b = LMMMMM
letter c = MMLMMM
letter d = MMMMMM
Symbol L = live = prime candidate number
Symbol M = multiple = composite ...