Have a suggestion?
Click here to suggest a blog item.
Newsletters Archive
Catch up with DonationCoder by browsing our past newsletters, which collect the most interesting discussions on our site: here.
Editorial Integrity
DonationCoder does not accept paid promotions. We have a strict policy of not accepting gifts of any kind in exchange for placing content in our blogs or newsletters, or on our forum. The content and recommendations you see on our site reflect our genuine personal interests and nothing more.
Latest News
July 2, 2024
Server Migrations Coming
- Donationcoder server migration is slowly proceeding, expect some hiccups as we get all our ducks in a row..
July 19, 2022
Software Update
Jan 3, 2022
Event Results
May 13, 2020
Software Updates
Mar 24, 2020
Mini Newsletter
Dec 30, 2019
Software Updates
Jan 22, 2020
Software Updates
Jan 12, 2020
Newsletter
Jan 3, 2020
Event Results
Jan 2, 2020
Software Updates
Dec 30, 2019
Software Updates
- Automatic Screenshotter v1.16
- Screenshot Captor v4.35 beta
- Find and Run Robot v2.238 beta
- Clipboard Help and Spell v2.46.01
- LaunchBar Commander v1.157
- Mousers Media Browser v2.0
- MultiPhoto Quotes v2.09.1
- DiscussionList for Android v1.08
April 27, 2019
Software Updates
Feb 26, 2019
Software Updates
Feb 23, 2019
Software Updates
Feb 14, 2019
Software Updates
Jan 6, 2019
Event Results
Dec 2, 2018
Software Updates
Nov 13, 2018
Software Releases
July 30, 2018
Software Updates
June 24, 2018
Software Updates
June 6, 2018
Software Updates
Apr 2, 2018
Fundraiser Celebration
Apr 2, 2018
Software Updates
Feb 24, 2018
Software Updates
Jan 14, 2018
Major Site News
Jan 10, 2018
Event Results
Latest Forum Posts
May we recommend..
Ath's Software is where DC Member Ath keeps the software he has written and shared.
- Number of programs available: 10+
- Last updated: 2018
- Visit Ath's Software page: http://www.dcmembers.com/ath.
Our daily Blog
This page spotlights the most interesting posts collected from our forum every day.
"Standard Deviations" of the Average System AdministratorRichard Bejtlich highlights many interesting points from the recent ;login: article "Standard Deviations of the Average System Administrator". System administrators have a surprising amount in common with electricians. Both professions require intensive training. Both professions are plagued by amateurs who believe (erroneously) that they can do a good job as a professional. Both professions are based upon a shared body of knowledge. Full Story Full Article (pdf) |
||
Google Chrome -- A new browser and my conspiratorial anti-capitalist fearsfrom www.webware.com: Mozilla CEO John Lilly on Tuesday waxed philosophical about the release of Google's new Web browser, Chrome, despite it signaling an attempt by the search giant--and Mozilla's major financier--to become its biggest competitor. I think it's quite possible what we are looking at here, from a business standpoint, is google covering its bases in the way that only a giant corporation with money to burn can. Recently we heard that google and mozilla agreed to continue for the time being their business arrangement where google massively funds firefox and firefox makes google the default search engine in the firefox browser. It seems plausible that what google is doing with Chrome is basically saying to firefox: we have an alternative browser we can market and spend the money on. i.e. they are covering their bases -- their goal is to dominate the search space so they make their advertising money -- if that means buying their way into the top browser then they will do that, but what if firefox demands too much money or changes their mind and decides to use a different search engine as their default (they can't really change search engines even if they wanted to now because they need the google money). Chrome may be the shot across the bow from google warning firefox not to think about trying to mess with having google as the default search engine. So basically my guess is google won't push/market the new browser too hard as long as firefox stays in line.. But the threat will be that if firefox ever tries to stop partnering with google then google will go all out against firefox. If true it's not exactly happy news. Or maybe i am just being paranoid and conspiratorial.
Lots of contrary opinions on the forum thread: click here to read more and comment.. |
|||
College Alarm Clock - Freeware Alarm with Different settings for each dayBasically a simple alarm clock with a different tab/alarm for each day. Looks like a simple solution that could be just the thing some people might need. College Alarm Clock 1.06 is a personal Alarm Clock for your PC. Features a 7-Day Format so that you can wake up earlier/later on different days of the week. Save/Load your weekly schedule to your hard drive. It will play any media file stored on your PC or LAN. You must have a player installed for each media file you wish to play (e.g., Winamp for mp3's or CD's, media player for avi's, Real Player for .rm's) Created by a college student for college students... in other words, freeware. http://www.geocities...cac/screenshots.html |
||
Re: Alarm When Power Cord Falls Out of NotebookHere a simple command line utility. BatteryRun - Run commands when the power plug is connected or disconnected. Command line: BatteryRun.exe "<connect command>" "<disconnect command>" Example: BatteryRun.exe "ding.wav" "calc.exe" You'll find the downloads and more info at 1 Hour Software by Skrommel. For multiple actions, I suggest making an AutoHotkey script. Skrommel |
||
Game Mini-Review: ToribashRight now, what you're probably thinking is something along the lines of "What the heck is Toribash?"
Well, it's actually pretty hard to explain, but i shall try. Toribash is a turn-based fighting game, where you control a ragdolls joints and set them to do whatever when you press space, or in case of on-line play, when the time runs out. One thing that really makes Toribash stand out among others isn't only that it's an indie game, but that it's also entirely physics based, with no pre-rendered moves or anything. Everything is rendered real-time. One should think that this would be enormously taxing for ones CPU, right? But this isn't true. While the early versions of Toribash was very unoptimized, the new versions run incredibly smooth, considering the amount of calculations done. And you know how people say that the best things in the world are free, right? Well, guess what? Toribash is free! Ever since version 3.0, Nabi Studios, the creators of the game, has removed the 20$ price tag from the game, and now they earn their money by charging for many kinds of optional services. Toribash even features its own little economy system, using a virtual currency called ToriCredits. These ToriCredits (Or TC as they're usually called) can be used to buy many different things in the ToriShop, like colors for your ragdoll (Or Tori), custom textures, colored trails and so on. |
||
The New line character \n\nI stumbled on the NewLine article on wikipedia today during some random browsing, and I never expected it to be so fascinating. It shows some interesting history, and how many different Operating Systems have different control characters to represent a new line, and for different reasons. There is also some confusion as to whether newlines terminate or separate lines. If a newline is considered a separator, there will be no newline after the last line of a file. The general convention on most systems is to add a newline even after the last line, i.e., to treat newline as a line terminator. Some programs have problems processing the last line of a file if it isn't newline terminated. Conversely, programs that expect newline to be used as a separator will interpret a final newline as starting a new (empty) line. This can result in a different line count being reported for the file, but is otherwise generally harmless. wow... I never even thought about it that way. I guess it can be interpreted both as a separator and as a terminator. I can see how some interoperability problems could occur. This is one of those things that, when I really think about it, makes me realize that it's a small miracle that software as we have it today works at all! - When programs can't even agree on what a new line is, or even how to treat it. It doesn't stop there, the problem persists on our internets: Most textual Internet protocols (including HTTP, SMTP, FTP, IRC and many others) mandate the use of ASCII CR+LF (0x0D 0x0A) on the protocol level, but recommend that tolerant applications recognize lone LF as well. In practice, there are many applications that erroneously use the C newline character '\n' instead (see section Newline in programming languages below). This leads to problems when trying to communicate with systems adhering to a stricter interpretation of the standards; one such system is the qmail MTA that actively refuses to accept messages from systems that send bare LF instead of the required CR+LF. |
||






