HackerTrans
TopNewTrendsCommentsPastAskShowJobs

fatcow

no profile record

Submissions

System-wide profiling for Linux and Android

perfetto.dev
1 points·by fatcow·3 वर्ष पहले·0 comments

comments

fatcow
·5 माह पहले·discuss
What an incredible idea! Love it, will spend some monopoly money on it!!
fatcow
·2 वर्ष पहले·discuss
Question: is the apple reboot seriously displaying a dmesg log?
fatcow
·2 वर्ष पहले·discuss
another perthian! w00t
fatcow
·2 वर्ष पहले·discuss
https://furius.ca/salsa-book/ is a previous attempt!
fatcow
·2 वर्ष पहले·discuss
Woot. JavaScript will be moot.
fatcow
·2 वर्ष पहले·discuss
You fight like a dairy farmer.
fatcow
·2 वर्ष पहले·discuss
also: Delphine software Another World.
fatcow
·2 वर्ष पहले·discuss
https://map.geo.admin.ch/

Herewith the map site.

I have to admit, the maps (at any zoom levels) are quite beautiful. Much much better than the likes of Apple or Google!
fatcow
·3 वर्ष पहले·discuss
Oh saw a lot of these when dabbling with fractint. Never could figure out how and why, but they were beautiful nonetheless on my mighty VGA!
fatcow
·3 वर्ष पहले·discuss
https://github.com/Gnucash/gnucash/blob/stable/gnucash/gnome...

This is something I'm familiar with! I refined the above algorithm to reconcile statements according to the statement end balance. It works well, and yes it's knapsack.
fatcow
·3 वर्ष पहले·discuss
You could and should discuss on the mailing lists. Agree scheduled transactions are not visible from bindings, and it could be a feature request. If you wanted to so depreciation of assets you could easily do your own calculations via scheme or python.
fatcow
·3 वर्ष पहले·discuss
https://github.com/Gnucash/gnucash/pull/1794

Note the full API may be accessible via a cli interface.

The above work will be merged hopefully soon.
fatcow
·3 वर्ष पहले·discuss
Stopford Building!
fatcow
·3 वर्ष पहले·discuss
while (t++ = s++) ;

You're assigning a char to another, relying on the return value being 0 to detect end of string.

You're performing the copy while also increasing the pointers with ++ in the same expression.

You're using the cryptic ; empty statement to signify nop, thereby confusing newbies.

Etc