Behind the scenes of “FoliCon – Folder Icon customizer”

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”

[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)”<

[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