Darksat IT Security Forums
July 19, 2025, 11:56:12 pm
Welcome, Guest. Please login or register.

Login with username, password and session length
News: Darksat IT Security Forum
From Firewall Support, AntiVirus Questions, Spyware problems, Linux and Windows Security, Black Hat SEO right down to Website Design and Multimedia
 
  Home Help Search Gallery Links Staff List Login Register  
  Show Posts
Pages: 1 [2] 3 4 5 ... 145
16  Multimedia & Design / Website Design / Re: UIZE "you eyes" javascript framework on: October 08, 2009, 11:26:52 am
Oh wow thats really nice!!
Brilliant find!
17  General / General / Support / Re: DarkView or ByteView on: October 08, 2009, 11:25:14 am
I'd say darkview as its not exactly a byte :p.

I've been trying to think about how to do a simple effect thing.
so say you pass the function a number and that function will loop untill it hits a destination number.

But then I want this to apply for anything so I can change the height of this or the width of this or even change the opacity.

But I'm still stuck on the theory of how to do it.

My simple library is just some basic functions like creating elements, css changes, classes, ajax etc nothing much to do with effects the effects I did are in shitty functions I haven't moved to a OO lib.
18  The IT Department / Programming / Re: Sprite CSS on: September 27, 2009, 07:19:23 am
Well I tried out using gif's and png sprites only issue i hit was the fact you had to set the positions of the sprite again in ie6.css
19  Multimedia & Design / Website Design / Re: Comparison of javascript frameworks. on: September 27, 2009, 07:18:08 am
I think it comes down to optimization and how flexible the framework is as opposed to what they do.

I would say this is where jQuery has set itself aside, the coding is very well done but its come to the point that plugin's are needed and this is a major fallback in my opinion.
Where as Dojo can do shit loads without plugins which is impressive.

But for a newbie jQuery is the way as the documentation on the subject is vast and easily to understand.
20  Multimedia & Design / Website Design / Re: 10 CSS hacks that WERE impossible for IE6 on: September 27, 2009, 07:11:52 am
Their actually some cool tricks their, i was half expecting the same rounded corners and PNG fixes again.
21  Your Web / News / Re: Google to Turn Over Identities of Anonymous Gmail Users on: September 26, 2009, 03:21:12 am
About time!
Gmail and that anonymous email bollocks is really annoying.
22  The IT Department / Programming / Re: Sprite CSS on: September 19, 2009, 02:32:23 pm
But then you don't get the quality with a GIF, if its the most basic of buttons i could understand but the quality with a PNG is shit loads better.
Which is why I see it better having a IE6.css and just change the background image from a PNG to a GIF if need be.
23  General / General / Support / Re: Google Fastflip on: September 19, 2009, 02:30:53 pm
Cleaver but ultimately don't see a real use for it with things like that.
It could be used in a lot more ways and make things more efficient.
24  General / General / Support / Re: MEH on: September 19, 2009, 02:29:37 pm
Publicity stunt i would imagine, how can any of those ridiculous words go in a dictionary.
25  The IT Department / Programming / Sprite CSS on: September 05, 2009, 08:18:01 am
I'm getting fed up with peoples lack of thinking about how to code sprites.

Time and time again I've just seen messy CSS coding.
their calling the image every button so its like:
Code:
.button1{
    background:transparent url('sprite.png') -100 -50 no-repeat;
    height:30px;
    width:150px;
    overflow:hidden;
    position:relative; }
.button2{
    background:transparent url('sprite.png') -100 -80 no-repeat;
    height:30px;
    width:150px;
    overflow:hidden;
    position:relative; }

No no no no no no no no no no in my opinion that is shit coding.

This is how I would do it and how I see it being faster and lighter coding with easier methods of calling it.
Code:
.spriteBG{
    background:transparent url('sprite.png') no-repeat;
    overflow:hidden;
    position:relative; }
.button1{
    background-position: -100 -50;
    height:30px;
    width:150px; }
.button2{
    background-potition: -100 -80;
    height:30px;
    width:150px; }

That just their is cutting out a lot of work for you and the advantage of having spriteBG class is you can later on change your PNG to say a GIF easily in a IE6 css file.
Then your sprites are cross browser compatible.

Please correct me if I'm wrong but is the 1st example a example of plain shit coding not being thought through?
26  Multimedia & Design / Website Design / Re: Nice Javascript examples on: September 05, 2009, 08:05:39 am
At the moment I am developing a library, which is kinda based upon the jQuery one.

The main advantage being the function chaining.
so effectively you have your $() function which you can use to select your id

Then on the back of that you have your css() function to simply change a style or something

so in the end you can have say one element call and use it multiple times like so:
$('#test').css('display','block').css('color','#FFF');
as opposed to:
document.getElementById('test').style['display']='block';
document.getElementById('test').style['color']='#FFF';

So using that you have seriously optimised your code, but this is where it gets shady with people using jQuery as doing like 10 css changes like the above is slow when compared to just changing a elements class name, which is where i find people go too far with their jQuery.

And with building your own your taking into account all these small things, and not just saying fuck that I'm gonna do it easily by telling jQuery to do it all which is stupid.

I've also noticed the magazine I get Web Designer Mag, every article involving simple things they have jQuery which is pissing me off quite frankly and its everywhere.
Its so complex now you might as well learn Javascript Grin.
27  Multimedia & Design / Website Design / Re: Mouseover sound javascript IE specific and web Tutorials on: September 05, 2009, 07:58:11 am
They have a nice site I must admit I like the backgrounds.
Reminds me of the Sky one tv.sky.com.

Simple but has a lot of effect, well for the albino blacksheep one.

But yeah back to sound I would have gone with a flash one, is their any advantage to the bgsound tag?
28  Hardware, Software and Security / Software / Re: snow leopard out 28th! on: August 27, 2009, 11:49:18 am
I actually don't have a clue :p.

But the main thing I'm focusing on is the speed performance, even though the mac is more than enough Grin.
They've improved a few applications though like expose and stacks, not much but the optimization is enough for me to justify spending £25 Smiley.
29  Multimedia & Design / Website Design / Re: Nice Javascript examples on: August 27, 2009, 11:46:44 am
I must say I've pritty much mastered Javascript in my opinion, maybe not to the level of jQuery but pritty darn close Grin.

And JavaScript is fantastic and so is jQuery to some degree, but when it comes to making simple website effects i prefer to build my own as I can then optimise them to a better level as i know the main focus that it will be used for.
30  The IT Department / Linux OS Forum / Re: U-Lite Lightweight Ubuntu Linux distro on: August 26, 2009, 02:27:17 pm
I know gnome is lightweight n' all but i really do prefer the KDE desktop as you have so much more flexibility.
Yeah its light weight that but if i was to modify it i would want KDE.
Pages: 1 [2] 3 4 5 ... 145
Powered by EzPortal
eXTReMe Tracker
Security Forum
Bookmark this site! | Upgrade This Forum
SMF For Free - Create your own Forum


Powered by SMF | SMF © 2016, Simple Machines
Privacy Policy
Page created in 0.051 seconds with 16 queries.