Details
-
AboutFounder and CEO of a consultancy and software development company.
-
SkillsC#,.net,java,PHP,JS,angular,TSQL,PL/SQL,SQLite, MySQL
Joined devRant on 7/15/2016
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
199$ for game maker studio
Naaa i will just use godot thx
1000$ for 3dx max
Naa will just use blender 3d
899$ for Fl studio
We have lmms
Sublime text 70$
Vscode is better.. i will just use that
Adobe illustrator 19$ a month
Nice try we have Gravit Designer25 -
Why does it seem everybody has a lot of ideas to code and I can never find any interesting idea to practice my coding?7
-
After months of tedious research, I finally feel like I understand machine learning.
All of my programmer buddies are in envy, but I keep trying to explain that what I finally get is that it's not as hard as it's presented to be.
I feel like a lot of the terminology in machine learning is really pretentious and unnecessary, and just keeps new people from the field.
For example: I could say: "Yeah, I'm training a classification model with two input neurons, a hidden activation layer, and an output neuron", and you might think I was hot shit. But that just gets translated into "I'm putting in two inputs, sorting them, and outputting one thing".
I feel like if there was a plain language guide to machine learning, the field would be a lot more attractive to a lot more people. I know that's why it was hard for me to get in. Maybe I'll write one.28 -
Today I come across something interresting in SQL Server.
I was optimizing a report query and in the SSMS windows runned in 10 seconds for 3000 rows.
Put it to a stored procedure took me 5 minutes for getting 100 rows.
I was like WTF?
After some research I found out that the problem was that I was using the Stored Procedure parameters in the query.
Created local variables for the parameters and poof... 10 seconds again.
So if you are creating Stored Procedures in SQL Server DO NOT USE THE PARAMETERS FROM THE PROCEDURE. CREATE LOCAL VARIABLES.5 -
I'm back !
Also with a question, what tv shows do you watch 🤔, silicon valley is a given , what about Mr robot?
But I find that alot of intelligent people hate big bang theory.25 -
!rant
Anybody here heard of Project Euler? It's a series of maths/programming puzzles, and I think it's great fun trying to solve them. 😁6 -
Tired of chasing an elusive architecture and finding good community that helps promote it. Basically:
- Not CRUD
- Not MVC
- More like CQRS; commands and queries represent use cases
- Event Sourced; event log is source of truth, everything else is a cached projection
- Functional Domain Design; not DDD; focus on immutability and simplicity
- Functional in general; less OO
- More focus on domain concepts rather than tech concepts
- Domain can be used through CLI, API, or SDK
- UI is just another client to the API
- Authorization is ABAC, graph-based access control
I'm looking for a fucking unicorn.10