• What are you working on? v6
    4,671 replies, posted
Puppet is a server management system/language. [QUOTE] Puppet is an open-source next-generation server automation tool. It is composed of a declarative language for expressing system configuration, a client and server for distributing it, and a library for realizing the configuration. The primary design goal of Puppet is to have an expressive enough language backed by a powerful enough library that you can write your own server automation applications in just a few lines of code. Puppet’s deep extensibility and open source license lets you add functionality as needed and share your innovations with others. [/QUOTE]
I've found a bug in jQuery [URL]http://bugs.jquery.com/ticket/11009[/URL]
My latest task was designing/scripting an animated Christmas card to send for the firm I work at. They showed some examples of past animated cards, all done in Flash. I told them I thought it would be cool to have a card that would work across all browsers, including iPhones. Took me a few hours, but I produced a card for them that includes music and just uses jQuery/CSS. Coolest part is, it all works including sound in IE/Safari/Chrome/Firefox/iPhones. The coding is very ugly to look at, but it somehow all works. Once we release it I'll put up the link if anyone cares to see it (I dunno, maybe this is child's play to ya'll...but it was an accomplishment for me!)
Its really nice to see people embracing HTML5 and abandoning Flash.
[QUOTE=Fatal-Error;33703591]Its really nice to see people embracing HTML5 and [B]abandoning Flash[/B].[/QUOTE] I have a feeling that isn't going to happen for a good few years.
[QUOTE=zerotwelve;33703635]I have a feeling that isn't going to happen for a good few years.[/QUOTE] Not for VOIP or video chat applications, but animated menus, video and audio players can all be done under HTML5.
IMDb is now using HTML5 for certain trailers woop woop
[QUOTE=TehWhale;33704169]IMDb is now using HTML5 for certain trailers woop woop[/QUOTE] It lags like fuck on my netbook though, the old flash one didn't!
[QUOTE=TehWhale;33704169]IMDb is now using HTML5 for certain trailers woop woop[/QUOTE] I'll be impressed when they stop blocking right click on images.
[QUOTE=Dotmister;33704432]It lags like fuck on my netbook though, the old flash one didn't![/QUOTE] I assume you are running Chrome on your netbook? The HTML5 video performance in Firefox is utterly abysmal.
[QUOTE=Fatal-Error;33704881]I assume you are running Chrome on your netbook? The HTML5 video performance in Firefox is utterly abysmal.[/QUOTE] Yeah, Chrome. I don't suppose any fancy GPU acceleration will help either as my laptop doesn't have a GPU.
[QUOTE=Dotmister;33706814]Yeah, Chrome. I don't suppose any fancy GPU acceleration will help either as my laptop doesn't have a GPU.[/QUOTE] I thought most modern processors had a GPU on the die? The i7 for example. [editline]13th December 2011[/editline] dont tell me you have an atom? :buddy:
Just spent the last two days setting up a multistage deployment environment for a new startup I'm working at now. Staging and productions servers that are automatically configured by puppet so when we need to add more or migrate all we have to do is point the new server at the puppetmaster and let it set itself up. Also deploying to each server with capistrano with the added bonus of capistrano running my test suite on the server before it finalizes the deployment and automatically rolling back if the tests fail. Rock solid production environment and deployment process = :)
Nothing impressive for you chaps, however. I have finished ( with thanks to a chap in another thread ) a means of templating my Arrays to determine what part of the system deals with what queries and how. The queries will be stored within an object structure I assume at some point: [code] $userAccount = array ( tbl_user_username => $username, tbl_user_password => $password, tbl_user_fname => $fname, tbl_user_lname => $lname, tbl_user_email => $email ); [/code] The array above is just an idea of how it looks, it's actually cast as an object as seen below. [code] $sql = $sys->retrob('pdo')->afPDO_createArrayTypeSQL( $sys->userAccount , tbl_user , 'select' ); [/code] This will output. [code] Array ( [SQL] => select * from user where userUsername = ? and userPassword = ? and userFname = ? and userLname = ? and userEmail = ? [DATA] => test,21232f297a57a5a743894a0e4a801fc3,derp,derp,derp@derp.com ) [/code] If you want to change the query about but don't want to mess around with the original template you can restructure createArrayTypeSQL(). To something like this: [code] $sql = $sys->retrob('pdo')->afPDO_createArrayTypeSQL( array( $sys->userAccount->username, $sys->userAccount->email ) , tbl_user , 'select' ); [/code] This is completely pointless I know, but I'm having fun learning more about OO this way by experimenting xD
[img]http://puu.sh/aE1d[/img] I'm trying to work out a minimalist but informative account overview page. I may go with something live tile-ish eventualy. [editline]14th December 2011[/editline] I've decided on single pane windows with only one section of information to display, you get that inset purple gradient surrounding the content. And on pages such as your inbox or settings you have a standard stack of labeled panes with no inset background.
[QUOTE=Fatal-Error;33720714][img]http://puu.sh/aE1d[/img] I'm trying to work out a minimalist but informative account overview page. I may go with something live tile-ish eventualy. [editline]14th December 2011[/editline] I've decided on single pane windows with only one section of information to display, you get that inset purple gradient surrounding the content. And on pages such as your inbox or settings you have a standard stack of labeled panes with no inset background.[/QUOTE] this doesn't even make any sense
[QUOTE=KmartSqrl;33709747]Just spent the last two days setting up a multistage deployment environment for a new startup I'm working at now.[/QUOTE] Aaaand we got our investor funding today :)
Just got home from a company dinner...super fun, super schmancy place in the middle of a gorgeous garden, tons of good news for myself and my team, the bill was in the thousands, we all had a great time, and I got a few drinks in me...but just a little tip before I go to bed - if you're planning on becoming a successful developer, don't forget to work on your fucking social skills and table manners aswell...watching a couple of the asp.net guys during dinner was pretty unsettling. Good night to you, gents. [editline]15th December 2011[/editline] [QUOTE=KmartSqrl;33725606]Aaaand we got our investor funding today :)[/QUOTE] Congratulations!
[QUOTE=exiam;33723313]this doesn't even make any sense[/QUOTE] Sorry, that post was for people who do not have a 286 for a brain.
Today we had a test on jQuery where we were asked to create a small photo gallery where the user could expand and contract pictures to show their description. Here's my entry: [url=http://www.gabrielecirulli.com/stuff/jqtest/][img]http://gabrielecirulli.com/p/20111215-151324.png[/img] http://www.gabrielecirulli.com/stuff/jqtest/[/url] [editline]15th December 2011[/editline] By the way I'm the one who taught jQuery to the class because the teacher doesn't know how to use it and he asked me to teach them instead, and my classmates look like they understood how to use it (pretty much all of them managed to get a gallery like this working).
[QUOTE=TerabyteS_;33700878]I've found a bug in jQuery [URL]http://bugs.jquery.com/ticket/11009[/URL][/QUOTE] Use outerWidth()
[QUOTE=shcKr-;33734094]Use outerWidth()[/QUOTE] it's still a bug anyway
Am I the only one that absolutely hates the new Google Analytics design? It drives me crazy not be being able to see number of visits and change immediately as I enter their site! Seriously, why make it a shitty useless list that doesn't help me at all? How about just redesigning the old interface with additional functionality? Piece of shit, now I have to click on the "Old Version" button every fucking time I enter Google analytics..
[QUOTE=StinkyJoe;33725800]if you're planning on becoming a successful developer, don't forget to work on your fucking social skills and table manners aswell...watching a couple of the asp.net guys during dinner was pretty unsettling.[/QUOTE] It's okay, I use Ruby.
Here's a little something I'm working on: [img]http://gabrielecirulli.com/p/20111215-185956.png[/img]
[QUOTE=KmartSqrl;33734694]It's okay, I use Ruby.[/QUOTE] That's okay, I can get you a job too, but you have to promise to watch your manners! :v:
[QUOTE=StinkyJoe;33736276]That's okay, I can get you a job too, but you have to promise to watch your manners! :v:[/QUOTE] Haha I was making an ASP.NET devs are socially awkward nerds joke not asking for a job you silly. I already have two of those! Definitely good advice regarding making sure you have good social skills if you want to do this professionally and succeed though. I can't even count how many times I have been hired for a job/project almost solely because I can talk to people. I didn't even have to show work samples for these last two, I just talked about what I've done... lol...
I really need some ideas for a logo to put near the "Reflex" text [img]http://gabrielecirulli.com/p/20111216-004311.png[/img] Does anybody have any idea?
Most likely going to regret posting these here but this is what I've been doing lately. [url]http://reager.org/tf2r/tf2r_new_front.html[/url] [url]http://reager.org/tf2r/tf2r_new_single.html[/url] [url]http://reager.org/tf2r/tf2r_new_public.html[/url] Basically new layout and such, wanted to use more of the screen space.
[QUOTE=eddy-tt-;33742133]Most likely going to regret posting these here but this is what I've been doing lately. [url]http://reager.org/tf2r/tf2r_new_front.html[/url] [url]http://reager.org/tf2r/tf2r_new_single.html[/url] [url]http://reager.org/tf2r/tf2r_new_public.html[/url] Basically new layout and such, wanted to use more of the screen space.[/QUOTE] I like it, there are things I definitely would change. The main one which I springs to mind is the width. I've always made sites where the content lives within 960px. I don't know how everyone else feels about that though.
Sorry, you need to Log In to post a reply to this thread.