• Web Development - WAYWO - #8
    5,514 replies, posted
[QUOTE=SwikCoder;46624423]Hey guys, I was looking for a place to ask input and this seemed like the right thread. I was thinking about starting to write again, and was wondering if a site with my stories would be a good idea? So that people could read them and ect. What do you think? Agree - Good idea Disagree - Bad idea funny - fuck off lil scrub muffin skid lorde.[/QUOTE] [url]https://medium.com/[/url] is a good site that people seem to use for writing.
[QUOTE=jung3o;46624444][url]https://medium.com/[/url] is a good site that people seem to use for writing.[/QUOTE] Seems more for articles though?
[QUOTE=SwikCoder;46624577]Seems more for articles though?[/QUOTE] yeah I think it's more for articles. There are a lot of free decent wordpress themes as well as the fact that wordpress gives you free hosting. I heard it's hard to get viewers on things like that, but you can try that. or tumblr [editline]2nd December 2014[/editline] I didn't make this, but i found it inspiring [url]http://jsbin.com/nuhinuda/1/edit?html,css,output[/url]
[QUOTE=jung3o;46625666]yeah I think it's more for articles. There are a lot of free decent wordpress themes as well as the fact that wordpress gives you free hosting. I heard it's hard to get viewers on things like that, but you can try that. or tumblr [editline]2nd December 2014[/editline] I didn't make this, but i found it inspiring [url]http://jsbin.com/nuhinuda/1/edit?html,css,output[/url][/QUOTE] Looks like absolute fun :v:
[QUOTE=Reagy;46605733]speechSynthesis.cancel(); in console. :v:[/QUOTE] I made a version where you have to enter a password to make it stop using this [URL]http://cronosdage.x10.mx/[/URL] the current password is IAmJoeBiden you have to click the button, because it brings you to /?password=IAmJoeBiden if you don't no matter how much stackoverflow i read I can't either disable the enter/return key or make enter/return properly submit the form
[QUOTE=Cronos Dage;46633429]I made a version where you have to enter a password to make it stop using this [URL]http://cronosdage.x10.mx/[/URL] the current password is IAmJoeBiden you have to click the button, because it brings you to /?password=IAmJoeBiden if you don't no matter how much stackoverflow i read I can't either disable the enter/return key or make enter/return properly submit the form[/QUOTE] Change your button's type to submit, remove 'onclick' and 'onkeydown' from it and put this code somewhere. [code] document.getElementsByTagName("form")[0].addEventListener("submit", function(e) { isValid(); return e.preventDefault(); }, false); [/code] or use this to get the form, does the same thing but accesses document.forms instead. [code] document.forms[0].addEventListener("submit", function(e) { isValid(); return e.preventDefault(); }, false); [/code]
Is there any forum software like [url]https://github.com/discourse/discourse[/url] or [url]https://github.com/NodeBB/NodeBB[/url] that focuses on imageboard-like features? Posting anonymously, not forcing users to register, possibility of images on posts, possibility of threads auto deleting, and all the jazz that comes with 4chan-like forums, but with actually decent design and well documented/built features like in those two links?
[QUOTE=adnzzzzZ;46633801]Is there any forum software like [url]https://github.com/discourse/discourse[/url] or [url]https://github.com/NodeBB/NodeBB[/url] that focuses on imageboard-like features? Posting anonymously, not forcing users to register, possibility of images on posts, possibility of threads auto deleting, and all the jazz that comes with 4chan-like forums, but with actually decent design and well documented/built features like in those two links?[/QUOTE] You just gave me a great idea. Time to write 30% of it then abandon it!
[QUOTE=jmazouri;46634661]You just gave me a great idea. Time to write 30% of it then abandon it![/QUOTE] That sounds so accurate
im still fucking about with speech synthesis, merged it with closed captions on youtube result: [url]http://nlan.org/karaoke/#KaOC9danxNo[/url] also got moonbase alpha tts working on that chat (courtesy of penis corp of course) [url]http://chat.nlan.org/[/url]
live TF2, control panel.[IMG]http://puu.sh/dgMv5/26cfdf05b7.png[/IMG]
[QUOTE=Silentfood;46633575]Change your button's type to submit[/QUOTE] I don't know how to do this Something like [code] blah.setAttribute('type', 'button'); [/code] ?
[QUOTE=Dave_Parker;46638700][code]<input type="submit" value="Make it stop!">[/code][/QUOTE] AFAIK <button> submits if it's placed within the form?
[QUOTE=Moofy;46638940]AFAIK <button> submits if it's placed within the form?[/QUOTE] yes it does when it's at [code]<button type="submit">:~)</button>[/code]
[QUOTE=jung3o;46639325]yes it does when it's at [code]<button type="submit">:~)</button>[/code][/QUOTE] [img]http://i.imgur.com/ktVRz9q.gif?1[/img] [editline]4th December 2014[/editline] What a horrible quality, gotta change my settings for that
[QUOTE=Moofy;46638940]AFAIK <button> submits if it's placed within the form?[/QUOTE] normally yes, there's a slight chance (at least used to be) that it's different between browsers so it's good practice to always enter the type of the button
I am not doing much with web development or let alone creating a website. Since I actually wanted to learn that now and I enjoy doing so called "raffle hunts" I am teaching myfel some HTML, CSS and Javascript stuff. At the moment I am creating a game a player has to guess if a Dota 2 hero is saying the line below. The cards will move to the another position if the play goes over it. [vid]http://a.pomf.se/ijffhs.webm[/vid] There are still some bugs in it and some text is too large. But for now it works and I am fairly pleased since I am a total beginner to web stuff.
it didn't work. also if you put the input type as submit it autorefreshes the page, causing the speech synthesis to turn back on.
[QUOTE][IMG]http://i.imgur.com/tv94QIX.png[/IMG][/QUOTE] artistic enough? i know the gap is too big on one of the panels and the background is a tad blurry
[QUOTE=Tolee;46647643]artistic enough? i know the gap is too big on one of the panels and the background is a tad blurry[/QUOTE] are you wrapping them in the container? [url]http://getbootstrap.com/css/#overview-container[/url] you would be looking for .container-fluid it looks like you added custom css to those panels. any reason why? Also, you can use the [t] tag to thumb the image :eng101:
[QUOTE=jung3o;46647939]are you wrapping them in the container? [url]http://getbootstrap.com/css/#overview-container[/url] you would be looking for .container-fluid it looks like you added custom css to those panels. any reason why? Also, you can use the [t] tag to thumb the image :eng101:[/QUOTE] any reason not to add custom css?
[QUOTE=Tolee;46648246]any reason not to add custom css?[/QUOTE] you can add custom css, and you should. sorry I wasn't being more specific. try not to add custom styles that interferes with the bootstrap grids. It's not a pretty sight. for example, it looks like you have custom margin/padding that interferes with the grid system.
[QUOTE=jung3o;46648304]you can add custom css, and you should. sorry I wasn't being more specific. try not to add custom styles that interferes with the bootstrap grids. It's not a pretty sight.[/QUOTE] how would i accomplish my side padding using the grids?
[QUOTE=Tolee;46648310]how would i accomplish my side padding using the grids?[/QUOTE] I can't really tell by the pictures, but you should use the following to set as a container inside the body. it goes... header container footer [code]<div class="container-fluid"> <div class="row"> ... </div> </div>[/code] I don't understand why you would add more padding there to make it uneven balance [img]http://i.imgur.com/HceG9bn.png[/img] [img]http://i.imgur.com/bQ81YhO.png[/img] [img]http://i.imgur.com/vdz2cUI.png[/img]
[QUOTE=jung3o;46648325]I can't really tell by the pictures, but you should use the following to set as a container inside the body. it goes... header container footer [code]<div class="container-fluid"> <div class="row"> ... </div> </div>[/code] I don't understand why you would add more padding there to make it uneven balance [img]http://i.imgur.com/HceG9bn.png[/img][/QUOTE] i dont think you understand that i don't know how to fix that, all i did was set the padding on left and right to equal the jumbotron, and the middle panel didn't adjust. i also added it to a fluid container, doesn't seem to do anything.
[QUOTE=Tolee;46648339]i dont think you understand that i don't know how to fix that, all i did was set the padding on left and right to equal the jumbotron, and the middle panel didn't adjust. i also added it to a fluid container, doesn't seem to do anything.[/QUOTE] can you link the page? or use jsfiddle? I might be able to help you with that.
[url]www.gmodnetwork.net[/url] do whatever you want.
[QUOTE=Tolee;46648355][url]www.gmodnetwork.net[/url] do whatever you want.[/QUOTE] [url]http://jsfiddle.net/1anoexwq/embedded/result/[/url] is that what you wanted? to have same width all the way? instead of using <center> tags (because they are deprecated) use [code]text-align: center;[/code]
yes sir, what was wrong with it?
[QUOTE=Tolee;46648413]yes sir, what was wrong with it?[/QUOTE] I removed all the custom margins and stuff and wrapped everything with container-fluid (except for the navbar) [editline]5th December 2014[/editline] [url]http://jsfiddle.net/1anoexwq/[/url]
Sorry, you need to Log In to post a reply to this thread.