19,466 reputation
21840
bio website 44interactive.com
location Sioux Falls, SD
age 22
visits member for 1 year, 10 months
seen 11 hours ago
stats profile views 851

About me


I'm a college student graduate still studying programming in the lonely norther parts of the Mid West. My hobbies are client side web based programming, graphical design, and drawing (particularly manga style).

Experienced in

  • Javascript
  • jQuery
  • Mootools
  • HTML
  • CSS
  • PHP
  • Limited Graphical Design

Willing to work for

  • Peanuts
  • Coffee

May
15
comment CSS Inheritance Issue - a tag background position
That's not going to work either. ids have higher specificity than classes and types: jsfiddle.net/yKsny
May
15
comment CSS Inheritance Issue - a tag background position
My advice is to just use !important. This is an acceptable use imo.
May
15
comment Javascript regexp match of location.hash
for idiocy sake you can go so low as to do this: location.hash.substr(1).replace(/(^flt_man|,$)/g, '').split(',flt_man')
Apr
30
comment Parallax Flickering.. position:fixed is no option
Every time the scroll event fires, you call repos_keyvisual_headline(); and repos_keyvisual(); which in turn run jQuery('.selector').each() every single time. jQuery has to then search the entire document for these elements every scroll cycle. If you cached the jQuery elements rather than refetching them every time, it would theoretically run faster. You could also narrow the jQuery selector with jQuery('.selector', someElement) rather than searching the whole document. EDIT: I tried it and it doesn't seem to help: jsfiddle.net/BSxCB
Apr
30
comment Parallax Flickering.. position:fixed is no option
I don't actually see the flickering in Chrome v26 on MAC. One thing you could consider trying is setting up your own scrolling event listener in vanilla js. I know jQuery animations can be a bit lagging. Lastly your code could be greatly optimized. You repeatedly run jQuery selectors against the document. This will slow down your process. (This is a comment because I don't really have any answers. sorry)
Apr
24
comment How to center an absolute positioned item vertically?
How compatible is this with older browsers?
Apr
24
comment How to center an absolute positioned item vertically?
@Finbarr Not quite. The height and the margin are both set values. Both of these are contained within the element itself and are not dependent on anything outside of that element. If you hard code the top value, however, it will break if you alter the wrapping container. If that wrapping container is hard coded too, you will have to change all three items if the topmost one needs changed. If, however you make your styling adaptable to it's environment, you will not have as many headaches in the future. a good resource on this would be Bulletproof Web Design by Dan Cederholm.
Apr
24
comment How to center an absolute positioned item vertically?
The instant any environment variable changes or content dynamically alters the flow, this will break. top:50% and a negative margin are more efficient than hard coded values.
Apr
24
comment How to center an absolute positioned item vertically?
top:50% sets the top edge of the element to be 50% down from the top of its first non-statically positioned parent.
Apr
24
comment Drop-down menu that opens UP/upward with PURE CSS
@user1574041 You're welcome. Glad to help :)
Apr
24
comment Drop-down menu that opens UP/upward with PURE CSS
jsfiddle.net/W5FWW/584 EDIT: fixed that
Apr
24
comment Drop-down menu that opens UP/upward with PURE CSS
@user1574041 Yes it is indeed possible but it will take some work to implement. Here is an example: jsfiddle.net/W5FWW/583. Mine uses the css bottom attribute for its animation. One major problem with it, however, is the fact that it hides the submenus behind the main nav.
Apr
24
comment Drop-down menu that opens UP/upward with PURE CSS
@user1574041 Of course! just apply the appropriate transition atributes to whatever you need animated (e.g. #menu a {transition:background-color 0.2s;}). see here
Apr
22
comment Sublime Text 2: how do I replace text i replace text in a selection?
Thank you for this answer! The graphic helps too. I had thought there was only the command+shift+F dialogue. Had no idea there was another one.
Apr
17
reviewed Approve suggested edit on Regex matching groups
Apr
17
reviewed Approve suggested edit on How to select non “unique” rows
Apr
17
reviewed Approve suggested edit on Change Binding at runtime and save class instance WPF
Apr
17
reviewed Approve suggested edit on Calling the WriteableBitmap.WritePixels method
Apr
17
reviewed Approve suggested edit on Why 0.05 + 0.01 = 0.060000000000000005 in Javascript?
Apr
17
awarded  Good Answer