• Web Dev Questions That Don't Need Their Own Thread v4
    5,001 replies, posted
[QUOTE=StinkyJoe;42130027]We're talking grade-A, big-league-level asshole here, though.[/QUOTE] [QUOTE=gokiyono;42130115]As long as the thing he made works, I wouldn't care how he is.[/QUOTE] I'd be careful with it though, I hear StinkyJoe has had some trouble with him in the past...
[QUOTE=gokiyono;42130115]As long as the thing he made works, I wouldn't care how he is.[/QUOTE] I hear what you're saying, but IMO there's a point where you're just empowering his assholeish-ness and boosting his ego by using his work. Dude's seriously a dickwad. [editline]9th September 2013[/editline] [QUOTE=Snakess;42130129]I'd be careful with it though, I hear StinkyJoe has had some trouble with him in the past...[/QUOTE] This.
He's that type of guy where if you found out he eats puppies It'd be the nicest thing he does.
How easy is it to code a countdown timer? Cause the webpage I'm designing at the minute has a youtube video as a landing page then after its done playing it will redirect people to the main site. So I want the countdown to be as long as the youtube vid then redirect.. and the timer resets on refresh (obviously :p)
Use the callback that gets sent when a video is done instead. [URL]https://developers.google.com/youtube/js_api_reference[/URL] [QUOTE] onStateChange This event fires whenever the player's state changes. The value that the API passes to your event listener function will specify an integer that corresponds to the new player state. Possible values are: -1 (unstarted) 0 (ended) 1 (playing) 2 (paused) 3 (buffering) 5 (video cued). When the player first loads a video, it will broadcast an unstarted (-1) event. When a video is cued and ready to play, the player will broadcast a video cued (5) event. In your code, you can specify the integer values or you can use one of the following namespaced variables: YT.PlayerState.ENDED YT.PlayerState.PLAYING YT.PlayerState.PAUSED YT.PlayerState.BUFFERING YT.PlayerState.CUED [/QUOTE]
[QUOTE=StinkyJoe;42130139]I hear what you're saying, but IMO there's a point where you're just empowering his assholeish-ness and boosting his ego by using his work. Dude's seriously a dickwad.[/QUOTE] Yeah that filp guy's a dick, don't use his code. I hear he never showers too.
[QUOTE=StinkyJoe;42130139]I hear what you're saying, but IMO there's a point where you're just empowering his assholeish-ness and boosting his ego by using his work. Dude's seriously a dickwad.[/QUOTE] That seems really stupid in my head, but I can't really say why (Maybe it's because I haven't seen that from him)
snip wrong thread
[QUOTE=Coment;42130026]steam://connect/IP[/QUOTE] Is there a reason this don't work in chrome? it just searches for it.. works in firefox though
[QUOTE=xianlee;42134144]Is there a reason this don't work in chrome? it just searches for it.. works in firefox though[/QUOTE] None that I know... My first guess was that Chrome didn't support external protocols, but for god knows what reason, steam://takesurvey/1/ works fine.
[QUOTE=RusselG;42129311][url]https://github.com/filp/whoops[/url][/QUOTE]That's the other one I was thinking of. Thanks!
I'm having a 1 week test at school, and I encountered a pretty simple thing (which it looks like) that I can't perform. I know how to do it, but forgot. Here's my problem: [img_thumb]http://i39.tinypic.com/n5ljwj.png[/img_thumb] I need to get the image underneath the box that is transparent, it's inside a container on 1158px width, also the image is only 460px along with the bar. The image is 200px in height and the bar 20px. On the right is another bar, there also needs to be an image under that. However I figured if I solve the left one, it's the same procedure on the right. Any help ASAP would be great!
[QUOTE=Moofy;42139864]I'm having a 1 week test at school, and I encountered a pretty simple thing (which it looks like) that I can't perform. I know how to do it, but forgot. Here's my problem: [img_thumb]http://i39.tinypic.com/n5ljwj.png[/img_thumb] I need to get the image underneath the box that is transparent, it's inside a container on 1158px width, also the image is only 460px along with the bar. The image is 200px in height and the bar 20px. On the right is another bar, there also needs to be an image under that. However I figured if I solve the left one, it's the same procedure on the right. Any help ASAP would be great![/QUOTE] I don't think I follow you (or that you are in the right section) You can always use the marquee tool, cut it out, and change the opacity...
[QUOTE=gokiyono;42139900]I don't think I follow you (or that you are in the right section) You can always use the marquee tool, cut it out, and change the opacity...[/QUOTE] I am in the right section, I'm asking for the coding. And giving a visual view trough Photoshop.
[QUOTE=Moofy;42140120]I am in the right section, I'm asking for the coding. And giving a visual view trough Photoshop.[/QUOTE] (Sorry for misunderstanding) Then I guess you want the opacity tag [CODE] #tag{ opacity:number; } [/CODE]
[QUOTE=gokiyono;42140137](Sorry for misunderstanding) Then I guess you want the opacity tag [CODE] #tag{ opacity:number; } [/CODE][/QUOTE] Opacity sets an overall value, it would make everything inside the div transparent when it only needs to be the bar. [editline]10th September 2013[/editline] I think I found the problem, it wasn't background-image. :suicide:
[QUOTE=Moofy;42140159]Opacity sets an overall value, it would make everything inside the div transparent when it only needs to be the bar. [editline]10th September 2013[/editline] I think I found the problem, it wasn't background-image. :suicide:[/QUOTE] I suppose you could be dirty and have the non-transparent outside of the transparent (code wise)
So I have this loginform [t]http://i.imgur.com/e8EMikw.png[/t] And I would like it to be somewhere around there Naturally it looks like garbage when I resize the page [t]http://i.imgur.com/waeimJ6.png[/t] So I wonder, is there a way to stop it around the same time as the grey box starts?
Put your code [url=http://jsfiddle.net/]here[/url] for better help.
[QUOTE=asantos3;42143859]Put your code in jsfiddle for better help.[/QUOTE] [URL="http://jsfiddle.net/jfBBa/"]Alrighty[/URL]
do you need to use -webkit and -moz for box-shadow, text-shadow etc in css?
[QUOTE=xianlee;42152263]do you need to use -webkit and -moz for box-shadow, text-shadow etc in css?[/QUOTE] As far as I know: Not really. I think most things work cross browser after CSS3 (Box-shadow and text-shadow works in both Chrome and Firefox)
[QUOTE=gokiyono;42152318]As far as I know: Not really. I think most things work cross browser after CSS3 (Box-shadow and text-shadow works in both Chrome and Firefox)[/QUOTE] Thats what I thought, I thought it was just like to support old browers or something
[QUOTE=xianlee;42152473]That's what I thought, I thought it was just like to support old browers or something[/QUOTE] The old browsers needs it, yeah But I don't think there are so many that actively uses older versions of firefox or chrome anymore (It wouldn't change anything if you kept them in there (other than a few bytes to download, if that is anything)) [editline]Hello :3[/editline] There [URL="http://gs.statcounter.com/#browser_version-ww-monthly-201306-201308-bar"]aren't a lot of people[/URL] with older firefox or chromes
[QUOTE=gokiyono;42150886][URL="http://jsfiddle.net/jfBBa/"]Alrighty[/URL][/QUOTE] Heads up, put an actual font-[B]family[/B] so it has something to fall back on :v: [sp]font-family: Verdana, Helvetica, sans-serif;[/sp]
I can't get php-fpm to write to an sqlite file. It can read it well enough but it won't write at all. I'm on centos + nginx and the directory permissions are 775 while the file's permissions are 770 with user apache:apache. If I change the user or group the file cannot be read at all. Tried nginx:nginx and root:root. how do I make it work? On my old VPS it worked fine with permissions 640 and a user that's a number.
I have a little problem with my site. My domain name leads to a completely different site if I use https but shows the normal site if I use http. Anyone knows what would cause it?
[QUOTE=Worre;42156458]I have a little problem with my site. My domain name leads to a completely different site if I use https but shows the normal site if I use http. Anyone knows what would cause it?[/QUOTE] Where do you host the site (and what is the url for it?)
[QUOTE=gokiyono;42156590]Where do you host the site (and what is the url for it?)[/QUOTE] I host it at deroyalservers (called doroyal nowadays) and the site url is worreh.com EDIT: It seems it will show the servers upper directory somehow or atleast the folders match the sites that are supposedly hosted on the same server than my site.
Is there any reason "width" would work on an image's class, but not "max-width"? Max-width just flat out does not work at all, but width surprisingly makes the image fit to the parent container as intended. I would expect both to either work or not work, but that's not the case.
Sorry, you need to Log In to post a reply to this thread.