The thing is, finely textured backgrounds have been slowly creeping back into the web design world for some time now after the collapse of the organic noise craze touched off by Apple's popularization of the linen background. It's time for some coarse patterns!
That Time I Made A Website
71–80 of 124 posts
Re: That Time I Made A Website
#72If this site was made by a male you wouldn't even see it on the front page of HN. (=xェx=)
So no. You are wrong, misinformed, inflammatory, and offensive. Crawl back into the abyss from whence you came, Tentacle.
Re: That Time I Made A Website
#73If this site was made by a male you wouldn't even see it on the front page of HN. (=xェx=)
I recently got to learning CSS, HTML and launched my own website using bootstrap that I host at home on a rinky dink Thinkpad X40. Would anyone be interested in seeing that? I'm a male though, so probably not huh? Also running an instance of gitlab, wordpress, owncloud and I had no prior knowledge of how apache worked about a month and a half ago.
Voyeuristic tendencies aside, a lot of experienced programmers find that stuff refreshing. Less experienced programmers often find inspiration to try new things.
Re: That Time I Made A Website
#74Earlier quoted context omitted.
Maybe a public forum wasn't the best place for a comment meant specifically for the author. I'm the person who criticized the .
I know hacker news is going to kill me for asking this, but what's wrong with center?
The idiomatic way to create webpages, in this day and age, is to try to separate content of a page from how the browser presents it.
HTML is for the content and structure of a page. CSS is for controlling how it's displayed. The tag is an HTML tag that only exists to control how a page is displayed.
In case you're wondering what to use instead, adding 'margin: auto;' as a css rule will do the trick.
Re: That Time I Made A Website
#75"Nobody has time for my fancy "overflow: scroll;" in a 600 x 600px box" Seriously, with this one insight the author is ahead of a good third of the professional web designers out there.
Re: That Time I Made A Website
#76This is why I love programming -- and the programming community, warts and all. Tiffany's an Environmental Science major who had a month of free time so she decided to learn how to make web pages. That's the same way I started (albeit as an English major), and the cocktail of instant feedback and ease of discovery kept me as a happy addict of the command line ever since. To me, accessibility and approachability are t…
Well .... making a website != programming. Maybe it's because I'm old (41, starting programming on a TRS-80 in the early 80s), but I'm astonished sometimes at how much fuss is made over such relatively minor achievements. This is lowering the bar on what stories are 'interesting', and - honestly - turns me off coming to HN because of the (for me) lower signal : noise ratio. And I disagree that accessibility is so imp…
Oh man, I remember when everyone looked down on web programmers and PHP monkeys. Hah. (I also did my much of my early programming on a trs-80, but mine was an obsolete tandy model 100 that I brought to school in the mid-90s, mostly to automate the 'guess and check' rote math homework.)
It used to be that there was a strong hierarchy. I know in the '90s and the first half of the '00s, you had the "real programmers" - the embedded and systems programmers... then the sysadmins, then your web programmers, then your web "designers" - with respect scaling in the obvious direction.
But, I think, this has shifted, especially in the HN world, where VC is very influential. The web programmers are now the 'serious programmers' - the valuable commodities, with designers also being fairly important. My people, the sysadmins are largely considered surplus population, and what you would have called 'real programmers' are now irrelevant old fogies that sometimes have interesting things to say.
(the question that looms in my mind is this: Will the construction of online CRUD apps be automated the same way that the construction of native CRUD apps were automated in the '90s? Will we have 'visual FoxPro' for the web? I mean, my stepfather, a long time user of such programs has shown me some of the rudimentary dot-net stuff... but it's not all the way there, as far as I can see, when it comes to whipping up a webapp as simply and easily as it whips up a native app.)
>This is lowering the bar on what stories are 'interesting', and - honestly - turns me off coming to HN because of the (for me) lower signal : noise ratio.
See, I've always thought of HN as a site more focused on the business side than the technical side. I mean, we do have some interesting technical articles, but ycombinator is about making money, and a lot of that is raising money. (my impression is that being young and goodlooking is an important part of raising money right now, but what do I know? I have yet to seriously attempt raising money.)
From the business perspective? learning how to, you know, use computers is pretty important and interesting.
>conversely, I don't think it's a bad thing that people who are less talented and less capable give up, and find something else they are better at and have more fun doing.
See, I kindof disagree. Sortof. in a way. You see, I think using computers is a bit like literacy. We all can't be Shakespeare, but even if you only get to 'spot is on the rug' well, you are way better off than otherwise.
Personally, I think that really basic programming should be taught in schools the way reading and writing is. Sure, most people aren't very good, but we put a hell of a lot of effort into getting folks to the 'spot is on the rug' level, and I think that most people would be better off if they, say, knew how to make a loop and an 'if' statement in basic.
I mean, certainly, most people can't be specialist programmers. But look at those CRUD app creators in the '90s, like FoxPro. Your ability to understand business processes was just as important, if not more important than your programming ability. We have the ability to make simple programming languages. We have the compute power to be able to run extremely inefficient code at reasonable speeds. Knowing just a little can help a whole lot.
Re: That Time I Made A Website
#77Earlier quoted context omitted.
Well .... making a website != programming. Maybe it's because I'm old (41, starting programming on a TRS-80 in the early 80s), but I'm astonished sometimes at how much fuss is made over such relatively minor achievements. This is lowering the bar on what stories are 'interesting', and - honestly - turns me off coming to HN because of the (for me) lower signal : noise ratio. And I disagree that accessibility is so imp…
> making a website != programming. I hear this a lot. While I would not call most basic work on websites very complex, I struggle to figure out why it's not programming. You are writing a series of inline presentation commands mixed with content, not unlike how Knuth preferred to write (a technique he called literate programming and that frequently went double-meta when he'd embed TeX documentation for the Tex source…
Any suitably competent and experienced programmer could pick up a new programming language in a week or two of focused study, but they'll basically be starting from scratch if they're learning HTML + CSS for the first time. Meanwhile, a web developer who only knows HTML and CSS is entirely unprepared to do any serious work in any real programming language, and would be starting from scratch if he decided to pick up C. This doesn't mean one is smarter or stupider than the other, but it does mean that the process of telling a computer what to do and the process of telling a computer "here's some text, and here's some guidelines about how you should display it" don't inform each other.
> one of which is Turing complete
Turing-completeness is not difficult for a piece of software to achieve (HTML5+CSS3 is basically Turing-complete by accident) and I'm sure you'd admit that HTML5+CSS3 is not an appropriate language for performing any serious computation.
Re: That Time I Made A Website
#78Earlier quoted context omitted.
Well .... making a website != programming. Maybe it's because I'm old (41, starting programming on a TRS-80 in the early 80s), but I'm astonished sometimes at how much fuss is made over such relatively minor achievements. This is lowering the bar on what stories are 'interesting', and - honestly - turns me off coming to HN because of the (for me) lower signal : noise ratio. And I disagree that accessibility is so imp…
>Well .... making a website != programming. Oh man, I remember when everyone looked down on web programmers and PHP monkeys. Hah. (I also did my much of my early programming on a trs-80, but mine was an obsolete tandy model 100 that I brought to school in the mid-90s, mostly to automate the 'guess and check' rote math homework.) It used to be that there was a strong hierarchy. I know in the '90s and the first half of…
Re: That Time I Made A Website
#79You might consider changing your banner's background color to something more "minty" like #45E488. It seems more you.
As someone who has never met you, I feel 100% qualified to say this.
Re: That Time I Made A Website
#80This is why I love programming -- and the programming community, warts and all. Tiffany's an Environmental Science major who had a month of free time so she decided to learn how to make web pages. That's the same way I started (albeit as an English major), and the cocktail of instant feedback and ease of discovery kept me as a happy addict of the command line ever since. To me, accessibility and approachability are t…
Well .... making a website != programming. Maybe it's because I'm old (41, starting programming on a TRS-80 in the early 80s), but I'm astonished sometimes at how much fuss is made over such relatively minor achievements. This is lowering the bar on what stories are 'interesting', and - honestly - turns me off coming to HN because of the (for me) lower signal : noise ratio. And I disagree that accessibility is so imp…
The answer, I think, lies at the center of the hacker mindset: there is inherent value in the experience of making things, and inextricably, the experience of learning how to make them, regardless of the value of the end product. Surely if we believe it's valuable in and of itself to eg. write a Brainfuck compiler or scrape HN for sentiment analysis or build and launch a satellite with the sole purpose of detecting gravitational waves, we must believe it's also valuable for someone to learn to program and build a project, even badly.
So with that in mind, I absolutely think accessibility is important, resume bullet points and job prospects aside; for the same reason I think art, music and woodshop should be taught in schools even though most kids won't grow up to be painters, singers or woodworkers.