Do you know about Audit Columns? These are additional database columns like inActive, createdOn, createdBy, modifiedOn, modifiedBy,..., these are maintained in master tables used to store audit data
#noNameChats
Converting texts from one language to another language is called translation, Then what is the thing used by many platform independent framework! It's transpilation converting a language code into equivalent version of other. It includes translation and compilation.
#noNameChats
Latency, Redundancy, Coupling and many things in software engineering can't be removed they can only be reduced. Comment any other things which can only be reduced and can't be removed.
#noNameChats
Do you know?, The web browser using Http2 or below opens a series of TCP connections at the initial stage to request all the required resources. making connections in the pipeline helps browsers increase speed
@mozilla, @googlechrome, @opera, @MicrosoftEdge, @brave#noNameChats
Small things can make a huge impact. A small misconception about CPU utilization that can lead to trashing or a small unhandled exception that can kill an application. On the other hand, a small memory called register can greatly improve performance.
#noNameChats
According to research 60% of the time, computers execute code repeatedly. computer scientists used this insight to develop a tech, improving execution which is "cache memory", based on locality of reference a concept derived from the research. Insights are beautiful!
Errors may be compile time or run time, but what are bugs? Generally it's not an error, but it's just not achieving what we want, exception might cause them or an unintended user action. All the softwares use user feedback or bug bounty to find and fix!
#noNameChats
Do you know Code Smell?, Let's have an analogy when a dish is spoiled it smells. When a code is not readable and maintainable it's a spoiled code, which smells aka Code Smell
#noNameChats
Heap data structure is different from the heap area used to store the instance variables in Java. But the stack used to store local variables is the same as the stack in data structures!
#noNameChats
C Language has a keyword called restrict, but CPP doesn't have an alternative for this keyword, As CPP was originally built as an extension of C, many keywords were renamed and restrict was dropped.
#noNameChats
Communicating things to the computer via voice, is the most underdeveloped and difficult thing in computers. Even today Voice assistants fail to work efficiently. 🤞 For the research on voice commanding.
#noNameChats
Have you ever tried to export Database queries to CSV, the catch here is that if your data contains a comma, that will treat that as a new column and entire data will be corrupted. we have solved this issue by using a new spectator instead of comma 💡
#noNameChats
In my opinion there are only two options to transfer data one is light and other is electricity, these two options shows several variations and helps us to transfer data from one place to other
#noNameChats
I was just thinking about spooling vs buffering, but realised both do the same task, but spooling does it in an effective way. What do you people say about that?
#noNameChats
A wired way of naming things is using their type in front of their names, float fTicketPrice, double dBottleCapacity etc, It helps in weakly typed programming languages to identify the data type easily. This is called Hungarian Notation.
#noNameChats
Do you know C++ takes O(n) time complexity to heapify a vector? Using make_heap(), it takes a vector and makes that a heap, Here to push or pop to this heap, it takes O(log n). Finally, for n elements, it would be O(nlogn).
#noNameChats
ALT key in the keyboard is used to alternate the functionality of the keys, it is used to access the main menu of the applications in windows. With ALT and other keys a lot of things can be done!
#noNameChats
Have you ever heard about TDP in processors, it's called Thermal Design Power, these three words are more important than the number of cores and frequency of the processor, TDP tells how much power the processor can accept and everything depends on this indeed.
#noNameChats
Can you guess what happens if you try to store a value greater than integer range in C, it tries to round the value around. But C++ gives an undefined behaviour error. It purely depends on the language and compiler, be careful about little things while writing code✌️
#noNameChats