Setting up a new VPS I got the other day. Went with Linode since Slicehost is merging with Rackspace and I prefered the way that Slicehost handled things.
Set up Gitolite and just finished setting up my node.js stack using cluster for multicore node.js, monit/upstart to daemonize it, and it's being proxied throug nginx.
Oh and I set up PHP too.
Ruby is next up and then it's migration time, and then after that it's play time :)
[QUOTE=jaybuz;32722693]Here's a protip: use a set width.
[img]http://dl.dropbox.com/u/386727/Web-And-Graphics/snail.png[/img]
[editline]11th October 2011[/editline]
You'd have to pay me money to read a paragraph that spans my whole monitor
[editline]11th October 2011[/editline]
You should make a wireframe first because your current design looks a bit aimless. Then you know where stuff will go and you can design around it.
[editline]11th October 2011[/editline]
Here's one I made earlier:
[img]http://dl.dropbox.com/u/386727/Web-And-Graphics/wire-frame.png[/img][/QUOTE]
Thanks, will do.
[QUOTE=KmartSqrl;32723383]Setting up a new VPS I got the other day. Went with Linode since Slicehost is merging with Rackspace and I prefered the way that Slicehost handled things.
[/QUOTE]
Really? I love Rackspace. I'm up to 17 VPS with them between personal and work. Everything works pretty seamlessly and the file transfer rate on the internal VPN is ridiculous. Makes backing up server networks so easy.
On another note.....never.....ever.....use....node.js: [url]http://teddziuba.com/2011/10/node-js-is-cancer.html[/url]
It's a fanboy wagon. Javascript is awful just as a client language (I'd say it's syntax/mechanics is worse than PHP) why would you want to use it on a server? Not to mention node.js scales HORRRIBLY.
[QUOTE=adamjon858;32725584]Really? I love Rackspace. I'm up to 17 VPS with them between personal and work. Everything works pretty seamlessly and the file transfer rate on the internal VPN is ridiculous. Makes backing up server networks so easy.
On another note.....never.....ever.....use....node.js: [url]http://teddziuba.com/2011/10/node-js-is-cancer.html[/url]
It's a fanboy wagon. Javascript is awful just as a client language (I'd say it's syntax/mechanics is worse than PHP) why would you want to use it on a server? Not to mention node.js scales HORRRIBLY.[/QUOTE]
[url]http://joshuakehn.com/2011/10/3/Diagnosis-No-Cancer.html[/url]
[editline]a[/editline]
[url]http://amix.dk/blog/post/19490#Plurk-Instant-conversations-using-comet[/url]
If one wanted to make a MMORPG-like game to play in the browser, what whould one use?
Nothing fancy as 3D just simple stuff like in the 2D Zelda games or the like.
Is there already engines for this?
What should one take into consideration when making such a thing?
[img]http://puu.sh/6PWS[/img]
Re-worked my main site.
Every bit of code used has been credited, if it was taken from somewhere else.
Check it: [url]http://summerglaufc.org[/url]
[QUOTE=adamjon858;32725584]Really? I love Rackspace. I'm up to 17 VPS with them between personal and work. Everything works pretty seamlessly and the file transfer rate on the internal VPN is ridiculous. Makes backing up server networks so easy.
On another note.....never.....ever.....use....node.js: [url]http://teddziuba.com/2011/10/node-js-is-cancer.html[/url]
It's a fanboy wagon. Javascript is awful just as a client language (I'd say it's syntax/mechanics is worse than PHP) why would you want to use it on a server? Not to mention node.js scales HORRRIBLY.[/QUOTE]
The whole pro-node/anti-node fight is one big ridiculous mess with misinformation coming from both ends. Node.js is fine if you use it properly and don't expect it to lift the world for you, which seems to be a common expectation among the node.js fanboy crowd (which is probably what started this whole mess in the first place).
[QUOTE=RusselG;32726802][img]http://puu.sh/6PWS[/img]
Re-worked my main site.
Every bit of code used has been credited, if it was taken from somewhere else.
Check it: [url]http://summerglaufc.org[/url][/QUOTE]
[img]http://gabrielecirulli.com/p/20111011-161139.png[/img]
What the fuck?
[QUOTE=TerabyteS_;32728242][img]http://gabrielecirulli.com/p/20111011-161139.png[/img]
What the fuck?[/QUOTE]
It's called [url=http://www.modernizr.com/]Modernizer[/url].
[QUOTE=jaybuz;32728258]It's called [url=http://www.modernizr.com/]Modernizer[/url].[/QUOTE]Oh, right. I've never used it, I didn't know it would do that.
[QUOTE=RusselG;32726802][img]http://puu.sh/6PWS[/img]
Re-worked my main site.
Every bit of code used has been credited, if it was taken from somewhere else.
Check it: [url]http://summerglaufc.org[/url][/QUOTE]
when i saw that background released on subtlepatterns i thought to myself
well no one would [i]actually[/i] use this on their website... i stand corrected
are you going to change the mouse to pointer for a
also im not sure about the inconsistency between the main div glow and navbar
edit why are you using a huge table for this
Oh, by the way, [css]-webkit-transform: rotate(.1deg);[/css] will give anti-aliasing on Chrome. Found it while looking for a way to make the text appear nice in the no-js version of a thing I'll reveal later.
[editline]11th October 2011[/editline]
And cufon is totally awesome.
[QUOTE=TerabyteS_;32728369]Oh, by the way, [css]-webkit-transform: rotate(.1deg);[/css] will give anti-aliasing on Chrome. Found it while looking for a way to make the text appear nice in the no-js version of a thing I'll reveal later.
[editline]11th October 2011[/editline]
And cufon is totally awesome.[/QUOTE]
[quote][img]http://1337.jp/_/2011/10/misao.me_-_Google_Chrome-2011-10-11_15.37.50.png[/img][/quote]
you legend :)
[QUOTE=Jelly;32725715][url]http://joshuakehn.com/2011/10/3/Diagnosis-No-Cancer.html[/url]
[editline]a[/editline]
[url]http://amix.dk/blog/post/19490#Plurk-Instant-conversations-using-comet[/url][/QUOTE]
That first blog post appears to have completely missed the original article's point. He isn't saying it's slow, he's saying it's fundamentally flawed because his fibonacci sequence thing running for one client prevents any other clients from downloading the site from the server.
Which is a terrible example because you shouldn't be doing CPU hungry calls in node.js in that way in the first place if you have any idea how the tech works and what you are doing. That's what delayed jobs and worker queues are for.
Personally, I wouldn't do a call like that without a separate worker even if I was using Ruby or PHP. Delayed jobs are neat for responding to user requests as quickly as possible. As a user I'd rather see a page on the website that tells me the server is crunching some numbers than just "Waiting for website.com..."
Meh, I like using the Twisted framework for anything like that. It's so good they include it by default with OS X Lion.
On another note....this looks like the shit: [url]http://en.wikipedia.org/wiki/Dart_(programming_language)[/url]
Javascript replacement that Google just released.
-snip- I can't read
Added a porn filter on qfi.im's "Weird Downloads" page.
Some of the stuff on there is incredibly nasty, you're advised.
[url]http://qfi.im/weird/[/url]
[QUOTE=commander204;32731760]Ugh, how can you say it looks like shit, when the only thing that we can see is:
[code]
main()
{
print('Hello, Dart!');
}
[/code]
By this standard does C++ "look like shit" too?
[code]
#include <iostream>
int main()
{
std::cout << "Hello, world!\n";
}
[/code]
[url]http://en.wikipedia.org/wiki/C%2B%2B[/url][/QUOTE]He said it looked like [i]the[/i] shit. Meaning really good.
[QUOTE=adamjon858;32731633]Meh, I like using the Twisted framework for anything like that. It's so good they include it by default with OS X Lion.
On another note....this looks like the shit: [url]http://en.wikipedia.org/wiki/Dart_(programming_language)[/url]
Javascript replacement that Google just released.[/QUOTE]
It looks a bit like C/C++. Not bad.
By the way, when is this thread running out?
[QUOTE=TerabyteS_;32731783]Added a porn filter on qfi.im's "Weird Downloads" page.
Some of the stuff on there is incredibly nasty, you're advised.
[url]http://qfi.im/weird/[/url][/QUOTE]
[quote]
Autopligg-v6_gks.rar
[/quote]
Nice to see people are downloading automated spam programs through your site.
:P
[QUOTE=commander204;32731760]Ugh, how can you say it looks like shit, when the only thing that we can see is:
[code]
main()
{
print('Hello, Dart!');
}
[/code]
By this standard does C++ "look like shit" too?
[code]
#include <iostream>
int main()
{
std::cout << "Hello, world!\n";
}
[/code]
[url]http://en.wikipedia.org/wiki/C%2B%2B[/url][/QUOTE]
It does look like shit in comparison, for sheer number of characters that aren't alphanumeric or parens/braces. Also if you checked [url=http://www.dartlang.org]the site[/url]:
[code]class Point {
Point(this.x, this.y);
distanceTo(Point other) {
var dx = x - other.x;
var dy = y - other.y;
return Math.sqrt(dx * dx + dy * dy);
}
var x, y;
}
main() {
Point p = new Point(2, 3);
Point q = new Point(3, 4);
print('distance from p to q = ${p.distanceTo(q)}');
}
[/code]
[quote]distance from p to q = 1.4142135623730951[/quote]
Class support!
Also this crazy kid:
[code]class Printer extends Isolate {
main() {
port.receive((message, replyTo) {
if (message == null) port.close();
else print(message);
});
}
}
main() {
new Printer().spawn().then((port) {
for (var message in ['Hello', 'from', 'other', 'isolate']) {
port.send(message);
}
port.send(null);
});
} [/code]
[quote]Hello
from
other
isolate[/quote]
You can run the examples on the page and all.
The thought of having this plugged into Chrome makes me happy. No more
[code]var Sprite = function(){};
Sprite.prototype.draw = function(context)
{
...
};
var mysprite = new Sprite();[/code]
but, alas, a whole new set of compatibility issues I suppose.
Is there anything in javascript which would allow me to do something like:
[code]var action = flagActions[elem.id]['action'][/code] ?
Basically, 2D key => attr arrays like in PHP.
I tried with json but if I had to do the thing above it'd only work through eval and I really don't want that.
[editline]11th October 2011[/editline]
Fuck, wrong thread.
[QUOTE=Kwaq;32728359]
are you going to change the mouse to pointer for a
also im not sure about the inconsistency between the main div glow and navbar
edit why are you using a huge table for this[/QUOTE]
The only table stores the steam stuff, I like my data all inline and shit.
I forgot to make it a pointer for 'a' elements, thanks.
I think I'll reduce the amount of glow.
[editline]iamahugefaggot[/editline]
[img]http://puu.sh/6RVW[/img]
Removed the table, replicated a table layout with divs (not very semantic, but works) and changed the glows. Also added the cursor for 'a' elements. And the fix for antialiasing in Chrome. Uploading now.
[QUOTE=RusselG;32736711]The only table stores the steam stuff, I like my data all inline and shit.
I forgot to make it a pointer for 'a' elements, thanks.
I think I'll reduce the amount of glow.
[editline]iamahugefaggot[/editline]
[img]http://puu.sh/6RVW[/img]
Removed the table, replicated a table layout with divs (not very semantic, but works) and changed the glows. Also added the cursor for 'a' elements. And the fix for antialiasing in Chrome. Uploading now.[/QUOTE]
Good job! With the photoshop filters, and a copied [URL="http://www.premiumpixels.com/"]background[/URL]?
[QUOTE=DevBug;32737667]Good job! With the photoshop filters, and a copied [URL="http://www.premiumpixels.com/"]background[/URL]?[/QUOTE]
[QUOTE=Kwaq;32728359][B]when i saw that background released on subtlepatterns i thought to myself
well no one would [i]actually[/i] use this on their website... i stand corrected[/B]
are you going to change the mouse to pointer for a
also im not sure about the inconsistency between the main div glow and navbar
edit why are you using a huge table for this[/QUOTE]
yes we know
[QUOTE=DevBug;32737667]Good job! With the photoshop filters, and a copied [URL="http://www.premiumpixels.com/"]background[/URL]?[/QUOTE]
Look at all those images! Photoshop filters would mean it's down with images, and I'm pretty sure you are referring to the blurs, etc. on the boxes. They are CSS effects, not "Photoshop" filters.
The only images are the avatars and the background, if you want to know.
Designed this site for hexxeh, there is a nice halo on the selected text field and some css buttons.
[img]http://i.imgur.com/XqAWE.jpg[/img]
I'll post some links tomorrow or something.
[QUOTE=commander204;32731760]Ugh, how can you say it looks like shit, when the only thing that we can see is:
[code]
main()
{
print('Hello, Dart!');
}
[/code]
By this standard does C++ "look like shit" too?
[code]
#include <iostream>
int main()
{
std::cout << "Hello, world!\n";
}
[/code]
[url]http://en.wikipedia.org/wiki/C%2B%2B[/url][/QUOTE]
I said the shit...not shit.
It looks super cool.
Sorry, you need to Log In to post a reply to this thread.