So this Error came up when I was trying to code an assembler, the line that caused this was- obFW.write(OPTAB.getRecord(Line[1]).value); I solved it by first storing the Record, Returned by 'getRecord()' method, and then using the value of that Record. Maybe the error was caused because the returned object might no longer be in memory, … Continue reading [JAVA] [Solved]>Malformed expression: “(ERROR)”<
[Pattern][C++] A pattern program
Happy to be here again, Recently i was given a Pattern Problem to solve by my friend, who attended an interview where they were asked to Write its solution. So it goes like this-
[CLion] C++ Template for CLion
Clion Custom template
[Java]Custom Hash Table class using LinkedList
This Code illustrates a Custom HashTable class in java using chaining (LinkedList)
Useful Links
Useful Coding and Programming Resources 💻 This post contains a curated list of helpful coding and programming websites, tools, and resources for software developers, computer science students, and programming enthusiasts. 🤓 Online Coding Tutorials 🖥 Programiz - Learn programming languages like C, C++, Python, Java, etc with examples Tutorials Point - Programming tutorials and references … Continue reading Useful Links
[error 0x8000000b] cannot add Google account to Windows 10/ Windows phone/PC
I assume you have already tried all solutions given at various forums and blogs, if yes and still the problem is not solved, then please make sure that you look for a update of Mail and Calendar in Microsoft store and update it.it will solve the problem for most people.
[HOW-TO] use Graphics with Dev C++
Download "Graphics.h", "WinBGIm.h", libbgi.a" from hereCopy "Graphics.h" and "WinBGIm.h" to Following locations Dev-Cpp\MinGW64\x86_64-w64-mingw32\include Dev-Cpp\MinGW64\include And copy "libbgi.a" to Following Locations Dev-Cpp\MinGW64\lib Dev-Cpp\MinGW64\x86_64-w64-mingw32\lib Then Go to 'Tools->Compiler Options->General->Linker Command Box' Paste the following -lbgi -lgdi32 -lcomdlg32 -luuid -loleaut32 -lole32 OR if you use project, paste these command into Project options->parameters->linker And then Chose '32-bit Profiling' You … Continue reading [HOW-TO] use Graphics with Dev C++
[.Net] The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
This Problem occurs if You don't have "less secure app access" on in your account. you can also try enabling IMAP.
Problem installing .Net Framework 4 (HRESULT 0xc8000222)
Click Start > Run. Type cmd and press Enter. Please run the following command in the opened window. net stop WuAuServ Click Start > Run Type %windir% and press Enter. In the opened folder, rename the folder SoftwareDistribution to SDold. Click Start> Run type cmd and press Enter. Please run the following command in the opened … Continue reading Problem installing .Net Framework 4 (HRESULT 0xc8000222)
[Oracle SQL] Change password of a user if you can’t log in as the system admin
I had this strange problem that i didn't change the password for SYS or system, still, i could not get in, i couldn't even connect to 'hr' database, so i searched on the web and found this solution, hope it helps.Enter the following command Command Prompt/shell/Terminal window as appropriate, to login without password: connect / … Continue reading [Oracle SQL] Change password of a user if you can’t log in as the system admin
