Once upon a time...forget it. I'll tell it my way. This started around July 2018, I usually keeps collection of games, movies and shows,( I liked keeping every folder managed ), but the folders you see, are boring, plain, so what I used to do was, like many other, I would search for folder icon … Continue reading Behind the scenes of “FoliCon – Folder Icon customizer”
Category: Coding Ground
Here i Write Code, About everything from the problem my Professors Gave to the Problems i come across, or when i code just for fun
[HOW-To][Solved]The Microsoft.ACE.OLEDB.12.0 provider is not registered on the local machine
After Trying all solutions Here's what worked for me, even though I had...
[VB.NET]Update GUI from different Thread
This code snnipet shows how to update gui controls from a different thread.
[JAVA] [Solved]>Malformed expression: “(ERROR)”<
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-
[Java]Custom Hash Table class using LinkedList
This Code illustrates a Custom HashTable class in java using chaining (LinkedList)
[C++] Palindrome using Recursion
#include <iostream> using namespace std; bool Palindrome(string s,int start,int end){ if(s[start]!=s[end]) return false; if(start!=end) return (s,start+1,end-1); return true; } int main() { string s; cin>>s; cout<<(Palindrome(s,0,s.length()-1)?"yes":"No"); return 0; }
[C++]Calling main() Recursively
#include <iostream> using namespace std; static int i=5; int main() { cout<<i--<<endl; if (i!=0) main(); return 0; }
[C++][Problem] Find 2 Missing Numbers in a Range
// Created by Dinesh Solanki on 04-02-2019. #include <iostream> using namespace std; int firstNo,secondNo; int sum=0,missSum = 0,sumLessAvg = 0,sumGreatAvg = 0,avg,sumTillAvg = 0; void read(int n,int length) { int c; cin>>c; sum=sum+c; if (length > 1) { read(n,length-1); } missSum = (n*(n+1)/2)-sum; avg = missSum/2; if(c <= avg) sumLessAvg += c; else sumGreatAvg+=c; sumTillAvg … Continue reading [C++][Problem] Find 2 Missing Numbers in a Range
[C++]Print A line in reverse with recursion and without an array
/* Name: Print A line in reverse with recursion and without array Author: Dinesh Solanki Date: 27-09-18 19:02 */ #include<iostream> using namespace std; void reverse() { char c; c = getchar(); if (c != EOF) { reverse(); cout << c; } } int main() { reverse(); return 0; }

