I'm learning to code by building 180 websites in 180 days. Today is day 115
81–90 of 370 posts
Re: I'm learning to code by building 180 websites in 180 days. Today is day 115
#82Re: I'm learning to code by building 180 websites in 180 days. Today is day 115
#83I suppose the hardest part of doing something like this, at least for me, would be coming up with a list of ideas of exactly what to create - not just coming up with 180 things, but 180 things that I can reasonably expect to accomplish in one day. Did you come up with that list beforehand, or do you decide today what to do tomorrow, or something in between? Some other random questions that come to mind - What's your…
Before I started the project I freaked out and wrote down a list of every idea I could think of. Sometimes I feel like I'm going to run out of ideas but I usually get inspired by what I've been working on. I spend about 10 hours a day working on the project which doesn't leave time for much else. Most of that time is spent coding the day's website and I spend about an hour at the end of the day writing the blog post.…
My girlfriend wants to learn about coding as well. She's in the East coast and I'm on the West coast. I want to help her, but I am not sure how. Did you have any programmer mentor? If so, what kind of role have they played?
This is an incredible effort and dedication. Great job and keep it up.
Re: I'm learning to code by building 180 websites in 180 days. Today is day 115
#84Re: I'm learning to code by building 180 websites in 180 days. Today is day 115
#85Re: I'm learning to code by building 180 websites in 180 days. Today is day 115
#86There’s this great story from the book “Art and Fear”, that's very appropriate here: === The ceramics teacher announced on opening day that he was dividing the class into two groups. All those on the left side of the studio, he said, would be graded solely on the quantity of work they produced, all those on the right solely on its quality. His procedure was simple: on the final day of class he would bring in his bath…
Re: I'm learning to code by building 180 websites in 180 days. Today is day 115
#87I guess this works for learning programming too.
Re: I'm learning to code by building 180 websites in 180 days. Today is day 115
#88Earlier quoted context omitted.
Did you look at the source? It's like 160 lines of code. Experienced programmer could do this in one hour, and I'm sure someone with 1.5 months of javascripting could do it in a day.
You can't be serious. Take a good look at that code. Public and private vars and methods, proper indentation, proper variable scoping, pretty and readable (the cleanliness is the least believable part, does that like a noob's code to you?) Have you ever worked with someone who has no programming background whatsoever and taught them programming? I have, and this kind of progress is insanity after 1.5 months. 10 hours…
I was a TA for an introductory computer class and yes, some people do write clean code within days. There are people who naturally get the how and the why of it.
Re: I'm learning to code by building 180 websites in 180 days. Today is day 115
#89Wow, this is really inspiring. I see that she's hosting them all on her personal domain, but I have a question, if anyone has an answer. What's the easiest/most cost-effective way to host a large number of sites on different domains? Learn how to use a VPS? Static pages with NearlyFreeSpeech? I've got a zillion ideas (and after seeing this, will be building them soon) but they need to be on separate domains. Paying $…
http://docs.aws.amazon.com/AmazonS3/latest/dev/website-hosti...
Quick guide:
- Create a bucket for each website, named after the domain (e.g. "myproject.mysite.com")
- Turn on static website hosting for the bucket (through the AWS Console)
- Go to your DNS provider and create a "CNAME" record pointing "myproject.mysite.com" to "myproject.mysite.com.s3-website-us-west-1.amazonaws.com" (The AWS Console will give you the exact domain to use here)
- For super-easy deployment, use s3cmd's sync utility (http://s3tools.org/s3cmd-sync) to upload all changed files in your project:
$ s3cmd -v sync ./ s3://myproject.mysite.com/ --acl-publicRe: I'm learning to code by building 180 websites in 180 days. Today is day 115
#90This one is awesome: http://jenniferdewalt.com/song_machine/page