Questions tagged [framework]
A framework is an existing library or set of libraries to help you complete a common task faster and more easily. Use this tag if you're writing a framework, not if you're just using one. When using a framework the specific framework should be used instead of this tag.
67 questions
3
votes
1
answer
126
views
CPU emulation library
I've started to work on a JavaScript library called vCPU with the purpose of providing a framework for emulators. vCPU is designed to be able to emulate multiple types of CPUs, with setup only ...
11
votes
2
answers
2k
views
CAT: Cat Approved TUIs
Cat
Hello everyone! I am working on this TUI framework which aims to abstract the ncurses library. I was wondering how understandable it is, and what I can improve! Any feedback is welcome!!
My ...
2
votes
1
answer
416
views
Android: Navigation with Hilt + Jetpack Compose
The project is simple:
Login screen and a forgot password screen. You can navigate from Login to ForgotPassword.
I feel like I overcomplicated things, but I don't know if (and how) it can be ...
1
vote
1
answer
181
views
Simple networking framework in C++
Question: What do you think about this design and the implementation? This is a simple networking framework for IPv4, IPv6 TCP client and TCP server for Linux and MS-Windows in C++14. It uses a single-...
3
votes
1
answer
175
views
Simple networking framework in C
Question: What do you think about this design and the implementation?
This is a simple networking framework for IPv4, IPv6 TCP client and TCP server for Linux and MS-Windows in C. It uses a single-...
1
vote
1
answer
120
views
Apply a funtion to each element of a dataframe according to other elements values in the corresponding row in pandas and python
I am a little new in the Pandas and Python framework. I would like to understand if my code is more or less fine or it too related to my old program framework way of thinking.
I have this is the input ...
3
votes
0
answers
113
views
Handling boilerplate tasks via service pipelines
Here's a small experiment about handling boilerplate tasks via service pipelines. It's similar to the HTML pipeline but simpler and multipurpose.
I've updated the question and this is the 2nd version ...
0
votes
1
answer
122
views
How do I divide Dao and Dao-Cache into different modules? [closed]
I want to improve performance for api. I design cache in dao layer. I use caffine cache. Basic code is:
CacheConfig.java
...
2
votes
1
answer
358
views
Mockingbird c++ mocking framework
I have developed Mockingbird a mocking framework for c++, it depends on function injection, here is the code from the repository:
...
10
votes
2
answers
392
views
Manifest.JS: A lightweight front-end structural framework
Code review scope
My goal with this review is to receive big-picture observations and suggestions for improving the efficiency / ease of writing the front end of a web application with this basic ...
3
votes
0
answers
302
views
Combine asynchronous return values in SwiftUI
I have 2 asynchronous return values from 2 different classes, one from HealthKit, the other from MotionManager. I combine the outcome of these classes through a combinedViewModel. The code works, but ...
1
vote
1
answer
74
views
Selenium - Java data driven Framework suggestion
Dropdown Screenshot
I have 3 dropdowns with multiple components in the UI.
Have incorporated data driven java selenium framework, data is fetched from excel sheet:
Excel sheet- where data is fetched
...
2
votes
1
answer
261
views
Adding more functionality to tkinter for projects (Revised)
After taking advice from Reinderien, I have completely rewritten the code for my Window() subclass.
EDIT *reason for posting was unclear:
I would like for someone ...
3
votes
1
answer
173
views
Adding more functionality to tkinter for projects
This code adds the following functionality to the basic tkinter.Tk() class...
settings-file interaction for persistent application settings
fullscreen functionality ...
4
votes
0
answers
160
views
Toggle any application feature ON or OFF - follow-up (v2)
This is the second version of my FeatureToggle service (see previous question). It still has the same purpose which is to help control whether a feature is ...