[QUOTE=bl4h;22398875][URL="http://www.websvn.info/"]WebSVN[/URL]?
[URL="http://demo.websvn.info/listing.php?repname=WebSVN"]Demo page[/URL]
What's so bad about Git?[/QUOTE]
Too complicated in my opinion.
Went with Redmine in the end, a suggestion from birkett. It's working great, after wrestling with Mongrel, that is.
[QUOTE=Hexxeh;22399451]Too complicated in my opinion.[/quote]
Basic git usage is very similar to Subversion - the biggest difference is the staging area (every change must be explicitly added to the commit you're about to do, unless you do [i]git commit -a[/i]). And if you wish to store your changes in a remote repository, you have to add it and push any new commits to it. Not as complicated as it may seem at first look. For anybody interested in git, [url=http://progit.org/]this is a great introduction[/url].
[quote]Went with Redmine in the end, a suggestion from birkett. It's working great, after wrestling with Mongrel, that is.[/QUOTE]
[url=http://www.modrails.com/]If you were already running Apache or nginx, why not use Passenger?[/url]
[QUOTE=Tuntis;22399605][url=http://www.modrails.com/]If you were already running Apache or nginx, why not use Passenger?[/url][/QUOTE]
Hmm, Passenger looks interesting, I'll take a look at that.
[QUOTE=Hexxeh;22399451]Too complicated in my opinion.
Went with Redmine in the end, a suggestion from birkett. It's working great, after wrestling with Mongrel, that is.[/QUOTE]
I don't see what's so hard about it really.
So I started work on another design for my portfolio, what do you guys think so far?
[img]http://img263.imageshack.us/img263/102/portfolioredwhite.png[/img]
[QUOTE=Sharpshooter;22404105]So I started work on another design for my portfolio, what do you guys think so far?
[img]http://img263.imageshack.us/img263/102/portfolioredwhite.png[/img][/QUOTE]
It could be a bit wider in my opinion.
[QUOTE=Sharpshooter;22404105]So I started work on another design for my portfolio, what do you guys think so far?
[img]http://img263.imageshack.us/img263/102/portfolioredwhite.png[/img][/QUOTE]
The texture thing is good as a background but when you use it as a content background it just makes the whole thing pretty dull and uninteresting.
Try making the content bg white then somehow giving it a sense of dimension with a subtle drop shadow falling on the body background. Polish pretty much makes a design like that, so here's a psdtuts post: [url=http://psd.tutsplus.com/tutorials/designing-tutorials/elements-of-great-web-design-the-polish/]Elements of Great Web Design: The Polish[/url]
^^ Off topic, can you change your avatar? I always think it's garry until I read the user name.
[QUOTE=nullsquared;22405610]^^ Off topic, can you change your avatar? I always think it's garry until I read the user name.[/QUOTE]
Yeah when he started acting like he knew what I was talking about in another thread I was all "Wtf garry's bothering arguing with me." Then I realised it was someone else and was all :saddowns:
[QUOTE=KSI;22398656]I like this one the best so far.[/QUOTE]
Even better (kinda):
[IMG]http://i46.tinypic.com/jayp0x.jpg[/IMG]
Hey guys, I have a little problem :saddowns:
For some reason, recaptcha isn't work as it should. Entering a wrong answer sometimes gets caught correctly, but other times it passes as a correct answer. Here's my client-side code:
[code]
(more input fields here)
<input type="text" name="recaptcha_response_field" id="recaptcha_response_field"/><br/>
<?php
require_once('recaptchalib.php');
$pubkey = 'my_public_key_is_here';
echo recaptcha_get_html($pubkey);
?>
<input type="submit" name="submit" value="Register" onclick="register(this.form)"/><br/>
[/code]
register() sends an AJAX request to do_register.php which checks the recaptcha:
[code]
<?php
require_once('recaptchalib.php');
$privkey = 'my_private_key_is_here';
$response = recaptcha_check_answer($privkey,
$_SERVER['REMOTE_ADDR'],
$_POST['recaptcha_challenge_field'],
$_POST['recaptcha_response_field']);
if (!$response->is_valid)
{
echo 'Words incorrect; please try again.';
}
else
{
echo 'Registration successful. Please log in.';
}
?>
[/code]
Basically, sometimes it echoes 'Registration successful. Please log in.' even though the recaptcha is wrong. You can try it here: [url]www.nullular.com/login.php[/url] (use any username/password, it doesn't matter because it doesn't interact with the database yet).
Any ideas on what's wrong?
[QUOTE=nullsquared;22406007]Hey guys, I have a little problem :saddowns:
For some reason, recaptcha isn't work as it should. Entering a wrong answer sometimes gets caught correctly, but other times it passes as a correct answer. Here's my client-side code:
[code]
(more input fields here)
<input type="text" name="recaptcha_response_field" id="recaptcha_response_field"/><br/>
<?php
require_once('recaptchalib.php');
$pubkey = 'my_public_key_is_here';
echo recaptcha_get_html($pubkey);
?>
<input type="submit" name="submit" value="Register" onclick="register(this.form)"/><br/>
[/code]
register() sends an AJAX request to do_register.php which checks the recaptcha:
[code]
<?php
require_once('recaptchalib.php');
$privkey = 'my_private_key_is_here';
$response = recaptcha_check_answer($privkey,
$_SERVER['REMOTE_ADDR'],
$_POST['recaptcha_challenge_field'],
$_POST['recaptcha_response_field']);
if (!$response->is_valid)
{
echo 'Words incorrect; please try again.';
}
else
{
echo 'Registration successful. Please log in.';
}
?>
[/code]
Basically, sometimes it echoes 'Registration successful. Please log in.' even though the recaptcha is wrong. You can try it here: [url]www.nullular.com/login.php[/url] (use any username/password, it doesn't matter because it doesn't interact with the database yet).
Any ideas on what's wrong?[/QUOTE]
I'm pretty sure it's a problem with reCAPTCHA, or the PHP library.
Actually I think that might be it - another site with an example of what I'm doing is here: [url]http://www.darksideofthecarton.com/demos/js/recaptcha/recaptcha.php[/url] and it ALSO fails to recognize some incorrect recaptchas.
Still trying :smith:
[img_thumb]http://bellminator.com/images/newblog.png[/img_thumb]
[url]http://www.straightmidnyte.com/[/url]
Finished it a couple of days ago. KineticColor isn't mine, but a friends. He did the designs, I put it onto a page and coded a backend.
[QUOTE=nick10510;22406749]Still trying :smith:
[img_thumb]http://bellminator.com/images/newblog.png[/img_thumb][/QUOTE]
you didnt steal it from me, its from google :P
plus they have some better fonts that may fit better for you
[url]http://code.google.com/webfonts[/url]
[editline]03:10AM[/editline]
[QUOTE=Zayfox;22406777][url]http://www.straightmidnyte.com/[/url]
Finished it a couple of days ago. KineticColor isn't mine, but a friends. He did the designs, I put it onto a page and coded a backend.[/QUOTE]
sexy.
[QUOTE=nick10510;22406749]Still trying :smith:
[img_thumb]http://bellminator.com/images/newblog.png[/img_thumb][/QUOTE]
That 'CP' bookmark worries me.
Someone please fix my dropdown menu's children's, children.
[url]http://rewindstudios.com/portfolio/BlackAndWhite/[/url]
[QUOTE=Teh_Cheese;22406917]That 'CP' bookmark worries me.[/QUOTE]
maybe he plays that online club penguin game thing
[QUOTE=:awesome:;22406965]maybe he plays that online club penguin game thing[/QUOTE]
or it's just his sites control panel, they usually don't have favicons.
[QUOTE=jaybuz;22407016]or it's just his sites control panel, they usually don't have favicons.[/QUOTE]
Oh yeah, didn't think of that.
[QUOTE=jaybuz;22406964]Someone please fix my dropdown menu's children's, children.
[URL]http://rewindstudios.com/portfolio/BlackAndWhite/[/URL][/QUOTE]
Repost
[QUOTE=Teh_Cheese;22406917]That 'CP' bookmark worries me.[/QUOTE]
Its the control panel for a server I co-own.
I should probably be more clear on that bookmark though.
[QUOTE=Zayfox;22406777][url]http://www.straightmidnyte.com/[/url]
Finished it a couple of days ago. KineticColor isn't mine, but a friends. He did the designs, I put it onto a page and coded a backend.[/QUOTE]Looks nice.
Think I should bother with a recaptcha on my site?
Its pretty easy to implement but it takes away the look I'm wanting for the page.
Did someone say... AnyHub Radio?
[url]http://anyhub.net/misc/radio[/url]
[img]http://anyhub.net/file/6-06-2010-3-21-30-pm.png[/img]