|
2
|
Other Software / DC Gamer Club / Rogue likes for PC
|
on: February 19, 2013, 03:16:01 AM
|
I seem to have become a fan of the genre of "rogue like" games. I've heard this originated with Gauntlet, but I am only familiar with IOS games like " Sword of Fargoal", " Dungelot" and " Dungeon Raid". All of these are excellent. I really like the character progression, randomized dungeons etc. Could anyone point me to good rogue likes for PC?
|
|
|
|
|
6
|
Main Area and Open Discussion / General Software Discussion / Re: Separating features into Basic and Advanced
|
on: November 29, 2012, 01:01:36 PM
|
|
I really dislike options, both as a developer and a user. Of course im in the minority here. However, if you measure option usage somehow you could hide / remove those where nearly all users agree, and keep the focus on divisive options where many people disagree.
Worth thinking about. All the options are probably not needed and make it harder to understand the character of the program, introduce more bugs, and add a learning curve.
Also I would hide all divisive options you want to keep in a combo box and away from the interface.
|
|
|
|
|
9
|
DonationCoder.com Software / N.A.N.Y. 2013 / Re: NANY 2013: wordpress-basetheme
|
on: November 23, 2012, 08:35:39 AM
|
Compared to starting from scratch: This is faster than that plus gives you a better base than piecing together snippets from the wordpress documentation, I have some of the work. It's also (or will become with your help  ) a more reusable base to build off of than other themes and base themes I have seen around because I have left out functionality that is custom to your theme while sensibly implementing shared functionality.
|
|
|
|
|
10
|
DonationCoder.com Software / N.A.N.Y. 2013 / NANY 2013: wordpress-basetheme
|
on: November 23, 2012, 07:54:05 AM
|
I’ve released a first look at “WordPress Base Theme“, a bare bones base for your own themes: * DRY ( don't repeat yourself) * KISS ( keep it simple stupid) * easily customisable WordPress base theme. * uses post formats (standard and link have been implemented) You can build on this to speed up your own theme development. It's so minimal that I wouldn't recommend it as your final site theme. Instead it makes it trivial to apply your design to a wordpress blog, or to build out from this starting point.
There must be some wordpress users on DC, so feedback is welcome  Pull requests are also.
|
|
|
|
|
18
|
Main Area and Open Discussion / Living Room / Re: Files aren’t property, says US government
|
on: November 05, 2012, 08:52:07 AM
|
As long as the government hasn't signed my acceptable use agreement which retroactively applies rights to files I've uploaded, they can't do anything! Muhaha. But seriously, Apparently your property rights "become severely limited" if you allow someone else to host your data under standard cloud computing arrangements. This argument isn't limited in any way to Megaupload -- it would apply if the third party host was Amazon's S3 or Google Apps or or Apple iCloud. There's a difference between services that are aimed at sharing information with the public, like Megaupload, and services that have private information, such as iCloud. Just need a few appeals and case law before they'll realise, hopefully.
|
|
|
|
|
20
|
DonationCoder.com Software / N.A.N.Y. 2013 / Re: Carbon - my new hackable performant (semi) static blogging system.
|
on: November 01, 2012, 06:22:50 AM
|
Sure, let me explain how caching works first using Carbon. 1. You want to develop with caching off (fully process every request). Carbon doesn't use a database, loads in content files and processes them according to your custom setup. 2. In production you can run carbon with caching on: static html get written to disk on first request and loaded in immediately on subsequent requests (this is about 5-10 times faster than Step 1): [ copy or print] $this->Cache = new Cache($this); if ($this->Cache->has_existing_cachefile()) { exit(readfile($this->Cache->cache_file_from_url())); } 3. Instead of running it like step 2 in production, you can go to /admin/generate. This will call every page so your cache is a reflection of your complete site. 4. Now you can copy the contents of the cache folder as a complete static site, that way PHP is never used. (I've included a powershell script carbon.ps1 that will do this for you if you use sftp.
|
|
|
|
|
22
|
DonationCoder.com Software / N.A.N.Y. 2013 / Re: Carbon - my new hackable performant (semi) static blogging system.
|
on: October 30, 2012, 11:09:58 AM
|
|
Just tagged 0.2.1. I've rewritten the framework using instances instead of static classes, which will help to implement unit tests where required in the future. I've also managed to simplify the code in the process, it should be much easier to understand now:
Posts are listed in the index page. Pages contain a section of YAML followed by Markdown, by default. Pages just contain markdown content, by default. In the _basic_ theme, pages are linked from the footer. Configuration settings override the defaults. Manage your data models and theming logic using the MVC classes in the _public/application_ folder.
Request object:
- Cache - Log - Environment - Security - Controller - Records - Model - View
Controllers (based on path, created uniquely for site):
- Home (posts) default homepage - Admin (no model) administration section - Archive (posts) post archive - Errors (page) custom error pages - Feeds (posts) feed of posts - Images (file) content images - Pages (page) individual pages - Posts (post) individual posts
Model types:
- File (present bare file) - Page (structure for pages) - Post (structure for posts)
View types:
- Html (templated content) - Feed (xml representation) - File (download)
|
|
|
|
|