dev blabla :)
Nothing here yet.
I am still working on my API and I did run into the issue where I wanted my handlers do just one thing use actix::prelude::*; use actix_web::*; use diesel; use diesel::prelude::*; use validator::{Validate}; use schema; use user; use user::models; us...
Join discussionI was wondering how you guys would solve the following problem I have an actix api the following thoughts about my response model. it's a document based response (not field based resposne filtering atm although I am thinking about it) code (for eas...
MMark commentedHey Girls/Guys today I have to test one of my web-applications I wrote. As a summary of things I did security wise: Every customer has its own database Every customer can encrypt his files / database entries with sensitive data via AES (libsodium)...
Join discussionI am currently implementing an API usually I use manager and service patterns to implement the layers and keep the internal API callable. But during my walk home I was wondering if it's maybe instead of having a service pattern to define certain beh...
MMark commentedOne of my current open source projects utilizes different crypto-libs. one of them is openssl. a openssl thing for the normal encrypt / decrypt api call is the options field. which basically just defines how the output should return. During writing...
CMMJason and 2 more commentedI am currently developing a new IoT-project and we decided to program it in rust since part of the embedded architecture can run the same code as the server side. mainly the COAP utilizing the 6lowpan for meshing and a classic NFC communication. I h...
MMarco commentedIn the last years I've seen new strategies to convert potential customers into actual ones. I am from austria (europe) and I have a particular view about not being pestered while I'm in my decision-making process. If I want help, I ask for it. But ...
JMMSHJoe and 4 more commentedI am thinking about this topic for 4 months+ now. I know different languages and different approaches the 3 mentioned are just the most obvious ones and can be combined. To me the question about error handling is about information, to the maintainin...
CMMSJason and 3 more commentedWhat kind of metric generator do you use in JS? cyclomatic complexity liniting static analysis dead code cohesion coupling halstead complexity Code coverage orthogonality (which can be seen as coupling) dependency graphs in PHP there is php-metri...
BC2TMaximilian and 3 more commented