Unanswered Questions
225 questions with no upvoted or accepted answers
8
votes
0
answers
805
views
Battleship MVC Architecture
The entry point is the Macros module, which - for now - includes only a single procedure, at a very high abstraction level - I'm quite happy with this:
...
6
votes
0
answers
453
views
Implementing recursive filters with Haskell/Repa
I recently learned Haskell, and I am trying to apply it to the code I use in order to get a feeling for the language.
I really like the Repa library since I manipulate a lot of multi-dimensional data....
5
votes
0
answers
283
views
ATB strategy MVC architecture refactoring
NOTE: this question isn't as long as it appears to be. I added the comments to the code only to answer some possible questions that may appear.
I'm making an active time battle strategy. Its mechanics ...
5
votes
0
answers
141
views
Writing service/network layer for mobile apps
I have an app that gets and posts blog posts to and from a server.
Right now I have a network client object which is passed into a service object. The service object is created and called from an ...
4
votes
0
answers
287
views
Creating Multiple Carousels by storing them in an Array with JavaScript
I created a code where I can add multiple carousels to a page. I did this by storing the carousel in an array and accessing it by clicking on the previous/next arrows.
I was trying to prevent any ...
4
votes
0
answers
130
views
Wrapper for Google_Service_Calendar as a Symfony service
My app interacts with Google Calendar. This Service wraps Google_Service_Calendar:
...
4
votes
0
answers
222
views
Finding where column slices of elements in multi-dimensional array are equal
Skippable Intro:
I have a dataset that corresponds to an observed time-series. The dataset is organized into a dictionary - which contains an array of years, an array of months, an array of days, an ...
4
votes
0
answers
9k
views
Simple MVC CRUD with JDBC
I would like to review my simple piece of code. I am beginner (I learn java for 1 year) and I would like to find out whether I am on good way.
I have created simple MVC CRUD java app "ProductManager"....
4
votes
0
answers
816
views
PyQt GUI to add and remove dots
Initially I got this code:
...
4
votes
0
answers
699
views
MVC and Subject-Observer pattern in C++ & QT
I am trying to implement the MVC pattern in C++ & QT, similar to the question here:
Other MVC Questions
The program has 2 line edits:
mHexLineEdit
mDecLineEdit
3 buttons
mConvertToHexButton
...
4
votes
0
answers
273
views
In-memory file system context for the behat PHP BDD testing framework
I wanted to come up with a 'utility' context to enable testing of the file system with behat. Specifically this is aimed at helping with the behavioral testing of php command line applications that ...
4
votes
0
answers
189
views
any that can hold arrays
I've tried to make a better any than before:
...
4
votes
0
answers
117
views
Heterogenous tree in the application domain: How do I represent them?
The Domain
I have three types of items in my domain: ItemA, ItemB, ItemC. (I can't use their real names.) ItemA has one attribute: thing_id. ItemB has 6 attributes: thing_id, name, description, ...
3
votes
0
answers
44
views
SPA in Symfony UX Turbo
I am currently learning Symfony UX. My focus today was on UX Turbo. I basically wanted to create a very basic Single Page Application.
User can 'login' using a form, submitting the form should render ...
3
votes
0
answers
98
views
Comparing two Tree sort algorithm variations implemented in Java
I have this repository. It contains three variations of a simple sorting algorithm for integer keys.
The idea is that we keep a balanced BST in which each node holds the integer key and its frequency. ...