Welcome Guest.   Make a donation to an author on the site May 20, 2013, 10:57:00 AM  *

Please login or register.
Or did you miss your validation email?


Login with username and password (forgot your password?)
Why not become a lifetime supporting member of the site with a one-time donation of any amount? Your donation entitles you to a ton of additional benefits, including access to exclusive discounts and downloads, the ability to enter monthly free software drawings, and a single non-expiring license key for all of our programs.


You must sign up here before you can post and access some areas of the site. Registration is totally free and confidential.
 
Free DonationCoder.com Member Kit: Submit Request.
   
  Forum Home Thread Marks Chat! Downloads Search Login Register  
  Show Posts
      View this member's profile 
      donate to someone Donate to this member 
Pages: Prev 1 [2] 3 4 5 6 7 ... 75 Next
26  DonationCoder.com Software / N.A.N.Y. 2013 / Re: Carbon - my new hackable performant (semi) static blogging system. on: October 04, 2012, 10:29:08 AM
Yes the MVC work is from scratch but inspired by CodeIgniter, I have used that in the past and can recommend it.
In the past I have found it difficult to neatly organise a project like this in the CI MVC model so I thought if I start from scratch I understand the foundations better.

It's won't be as robust as CI but then it won't have several years of little tweaks that make it harder to understand what's going on. smiley

I'm trying to keep a separation between the mvc code and the system behind it so that people can just focus on their site structure and how it is generated.

Basically a request gets routed by Carbon::router to an appropriate
Application controller (based on content types).
The content gets filled in by the system's DataModel class which is passed through the application's Model (defines sections of content mostly). Once we have the content in the right structure it's sent to the application's View class that uses a very simple templater to generate the page.

Only using two models at the moment:
[copy or print]
public static $page_model = array(
'markdown|html' => 'content',
);

public static $post_model = array(
'yaml' => 'metadata',
'markdown|html' => 'content',
);

I'm taking the controller and model that is used and then use that to choose the right template file (pages.php for pages, archive.php for archive etc).

But for example you might add a Portfolio controller and model that sends things through to a portfolio.php template.
27  DonationCoder.com Software / N.A.N.Y. 2013 / Re: Carbon - my web framework on: October 04, 2012, 09:44:29 AM
Did you read the https://github.com/svandragt/carbon page? I made a "basic configuration" and "getting started" section with this in mind?

Hope this helps:

Installing Carbon in developer mode on a shared host
http://screencast.com/t/QgDYtKUFpG

Enable caching for production use
http://screencast.com/t/bRs6taeYUEQl

Generate a static site
http://screencast.com/t/KqP1GRhNTf

After the functionality is there, I will focus on making it easier to deploy content  / static site.
28  DonationCoder.com Software / N.A.N.Y. 2013 / Re: Carbon - my new hackable performant (semi) static blogging system. on: October 04, 2012, 07:24:43 AM
Today you can post with images plus there's improvments to yesterday's work.
29  DonationCoder.com Software / N.A.N.Y. 2013 / Re: Carbon - my new hackable performant (semi) static blogging system. on: October 02, 2012, 12:26:40 PM
New today: admin panel; static site generation; relative links; model & controller templates; bug fixes!
30  DonationCoder.com Software / N.A.N.Y. 2013 / Re: Carbon - my new hackable performant (semi) static blogging system. on: October 01, 2012, 10:13:00 AM
You can now link to individual posts,  articles can contain yaml (key value pairs), and we have a post loop (show last 10 on frontpage). Things are progressing.
31  DonationCoder.com Software / N.A.N.Y. 2013 / NANY 2013: Carbon - website / blogging framework [alpha] on: September 28, 2012, 09:54:41 AM
Carbon is a hackable performant (semi) static blogging system.. I intend this to be my NANY 2013 entry, however I'm getting too excited smiley I've never build such a system from scratch but am familiar with PHP frameworks like CodeIgniter, SilverStripe etc so Carbon is class based, somewhat MVC and clearly written (I hope).

It should be considered early alpha, a first-look. There is no point using it in production yet, but you might want to have a sneak peak and give initial feedback.

Aims
* Easy to learn
* Easy to hack & extend
* Performant

There are many others. I find most of them too complex to extend, too fiddly to get running, or too hard to use. Because I wrote this one, I don't have these problems.


Source and information, issues etc on GitHub. Enthusiastic feedback welcome. Best way to start is to look at the index.php and follow the execution pipeline.
32  Main Area and Open Discussion / Living Room / Xbox Windows Microsoft Minesweeper for Games for Windows Live on: August 07, 2012, 08:52:30 AM
"Xbox Windows" branded games coming to Windows 8 desktops, Surface
http://www.eurogamer.net/...indows-8-desktops-surface

Quote
Classic Windows freebies Minesweeper and Solitaire are among the first games to fall under Microsoft's new Xbox Windows banner.
The new game range, outed on X360A.org, appears separate to the current Games for Windows Live service.

[attach=#]
Oh, Microsoft.  embarassed You haven't learned a thing since Microsoft Office Sharepoint Designer 2007 for Microsoft Office Sharepoint Server.
33  Main Area and Open Discussion / Living Room / Office Chair Curling - a new olympic sport? on: July 27, 2012, 06:58:53 AM
Quote
Get into the spirit of the Olympics whilst at work, with Office Chair Curling. Here's how it works:

REQUIREMENTS
1 Office chair per player "CHAIR"
1 narrow, long hallway "RINK"
1 floortile "HOUSE" with hole offcenter "BULL"

34  Main Area and Open Discussion / General Software Discussion / Re: SilverStripe - Easy to use open source CMS + Framework on: July 21, 2012, 03:19:02 PM
Yeah so SilverStripe is not for everyone. If you like your features already available in your CMS, you will want to use another product, and loathe it for it. However this thing is great when you want a 90% there CMS with extensibility and make it so easy to add the rest. This is great when:

- You are setting up a CMS for a client and will need to deal with specific requirements anyway.
- You have a specific requirement for yourself and have php programming knowledge.
- You find that all the functionality you require is already available in SilverStripe modules. Many things are, but not as much as drupal modules haha (I remember having to download up to 22 modules to setup HTML email templates for system mails - with drupal).

However when you create your own page types, silverstripe rebuilds the data base schema for you. You can create a new administration section for your products in several dozen lines of php, without having to write UI code (take that wordpress plugin authors). When you can leverage functionality already built in to create a static version of your site, and boost the performance of your site, or ssh it automatically to remote servers.

However if that paragraph doesn't make much sense then you are probably better off with a blogger account or Website Baker smiley

BTW insteaod of using a WAMP stack I am now using a virutal machine with ubuntu which works very well (tutorials elsewhere on this site).

Things I would now use it for:
- replace my dcmembers site with something that looks 21st century and unifies news, software, blog and other features.
[attachthumb=#][attachthumb=#][attachthumb=#]
- build the getbard.com website and make it trivial to maintain
- a personal portfolio so that you can enter a gallery of screenshots, description, urls of projects. I tried to make a WordPress plugin to make it easier to make custom content types by making it a single line of code to add an image field etc. Well Silverstripe already allows this way more flexible.
-a cv builder website (keep my cv versioned in a database, and integrate some kind of PDF export option. Quick to build when adding fields is so easy.

35  Main Area and Open Discussion / General Software Discussion / Re: SilverStripe - Easy to use open source CMS + Framework on: July 21, 2012, 05:12:45 AM
if you use Microsoft's web platform installer to install SilverStripe CMS be aware it installs as of today, still the older 2.4 version which am sure works fine but things have improved since then. WPI doesn't tell you this in advance :O)
36  Main Area and Open Discussion / General Software Discussion / SilverStripe - Easy to use open source CMS + Framework on: July 20, 2012, 09:33:52 AM
Just wanted to recommend SilverStripe CMS and the SilverStripe Framework (previously saphire).  I've tried to bend Wordpress to a CMS role, and have experience developing and maintaining a Drupal, Joomla CMS site and made some sites using CodeIgniter PHP framework (and rolled many from scratch). I tried Squarespace (if you want to spend money).

However SilverStripe is so easy to manage content with. Designers can take an existing template with stylesheets and get a basic working site going within the hour. Developers can use the extensive framework and feature set and expand from there, it's very elegant.

Negatives
At the moment the documentation is not yet up completely up to date with SS 3.0 (released end of june), and you will be googling the API and documentation sites quite a bit in order to piece the various components together. Also I've asked two questions on the forums without reply (although most questions seem to get good responses generally).

Positives
That said, it's used by it's commercial developer to create and maintain sites for major New Zealand's major companies and organisations.
You can drag and drop images into an image field. You can then use Image.SetWidth(300) in your template and it will generate appropriate derivatives. You install one module and it will generate a full REST webservice based on your data. You add a few lines and your list of news items are now also exposed as an RSS feed. etc.

You will see many more sites from me in the future based on this.  Thmbsup Is there anyone here that have used it for any projects?

37  Main Area and Open Discussion / General Software Discussion / Re: recommend audio editor to cut out middle part and still keep pitch on: July 05, 2012, 08:33:00 AM
Any audio editor can do it, the key is to set a start and end marker (or loop points). Then do a continious playback, zoom in and move the markers slightly left or right until it sounds right. Now you can select and cut out the loop and the rest of the song will sound fine.

Always position the marker on a point exactly on the x axis (centre of the waveform) to avoid clicks appearing due to breaks in the waveform.
38  Main Area and Open Discussion / General Software Discussion / Re: Unity Desktop (Ubuntu) on: July 05, 2012, 08:17:21 AM
Here's how to want to start start the terminal:
* hit the Windows / Super key
* type: term
* press enter or click the icon

http://screencast.com/t/59VagZMPPL

It's not any different than Windows 7 really?
39  Main Area and Open Discussion / General Software Discussion / Re: Unity Desktop (Ubuntu) on: July 05, 2012, 08:11:16 AM
There is no button... Nothing is obvious. I'd looked for bash - nada. And you can't browse any of the installed software - or at least not to run it. Sad
I meant the windows key on your keyboard, or super key if you're using mac I think
[attach]
http://askubuntu.com/ques...ey-which-runs-unitys-dash
40  Main Area and Open Discussion / General Software Discussion / Re: Unity Desktop (Ubuntu) on: July 05, 2012, 07:19:59 AM
You had trouble pressing the windows button and typing 'term'?
41  Other Software / Found Deals and Discounts / Re: KLM Custom luggage tags **FREE** - (Non-USA only) on: July 02, 2012, 07:07:06 AM
sold out, but you can register for future campaigns.
42  Main Area and Open Discussion / Living Room / Re: Facebook Changed Everyone’s Email to @Facebook.com; Here’s How to Fix It on: June 28, 2012, 03:49:25 AM
From Gervase Markham's story:
Quote
The email instead goes to my Facebook inbox, and I don't get a notification email to say it's there.
So this is why Facebook introduced it: They want you to go to their site to check for email. They don't want to send the messages to your email and have you interact there, they don't want you to use a search engine to find content, and they don't want you to use forums and instant messages to talk to people. They don't want you ever to get the idea to leave the site.
43  Main Area and Open Discussion / General Software Discussion / Re: Sublime Text 2.0 final on: June 28, 2012, 03:11:21 AM
leftovers from uninstall: 54 folders and 1534 files!!!
That's al the packages and preferences that you will want to reuse when you decide to reinstall this amazing program.
44  Main Area and Open Discussion / General Software Discussion / Re: Sublime Text 2.0 final on: June 28, 2012, 03:10:28 AM
Sublime Text is such a wonderful text editor, best $59 I ever spent on software Kiss
hear.
45  DonationCoder.com Software / Finished Programs / Re: SOLVED: Script to send email, but .... on: June 28, 2012, 03:09:14 AM
According to the SendEmail site,
Quote
Q: I'm using the Windows version of sendEmail, and I get the error message "the ordinal 2586 could not be located in the dynamic link libraby LIBEAY32.dll", what do I do?
A: I don't know why this happens, but you can fix it by downloading the "No TLS Support" version of sendEmail. You won't be able to send email through an SMTP server that requires encryption, but it won't give you that error message.

You will have to open the zip, then overwrite the sendEmail.exe file in the NoteMe folder with the one in the zip.

Hope that helps if not, send me an message and I'll help.
46  DonationCoder.com Software / Finished Programs / Re: SOLVED: Script to send email, but .... on: June 26, 2012, 07:26:06 AM
You could try my software NoteMe
47  DonationCoder.com Software / Finished Programs / Re: Unc to Web link converter on: June 26, 2012, 07:17:12 AM
If you want to play with the latest source, you can now fork from Bitbucket:
https://bitbucket.org/svandragt/unc2web

I'll keep posting executable releases in this topic when they're available.
48  DonationCoder.com Software / Finished Programs / Re: DONE: HashReplace - Replace all files with identical contents on: June 26, 2012, 07:16:08 AM
If you want to play with the latest source, you can now fork from Bitbucket:
https://bitbucket.org/svandragt/hashreplace

I'll keep posting executable releases in this topic when they're available.
49  DonationCoder.com Software / Finished Programs / Re: DONE: AHK Coding Snack Idea: Deluxe AHK Script Manager (AXEM) on: June 26, 2012, 06:48:50 AM
If you want to play with the latest source, you can now fork from Bitbucket:
https://bitbucket.org/svandragt/axem/

I'll keep posting executable releases in this topic when they're available.
50  Main Area and Open Discussion / Living Room / Re: Facebook Changed Everyone’s Email to @Facebook.com; Here’s How to Fix It on: June 26, 2012, 04:22:52 AM
too cynical? "Yes we respect your privacy settings and for your convenience here is a overarching layer to bypass it."
Pages: Prev 1 [2] 3 4 5 6 7 ... 75 Next
DonationCoder.com | About Us
DonationCoder.com Forum | Powered by SMF
[ Page time: 0.577s | Server load: 0.14 ]