Jump to content

mgreer58

Member
  • Posts

    20
  • Joined

  • Last visited

About mgreer58

  • Birthday 05/14/1958

Profile Information

  • Gender
    Male
  • Location
    Bay Area California (Sigh!)
  • Interests
    All things nerd.

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

mgreer58's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Ah! I just reviewed Chapter 9, Lesson 4. You can include <div>s in other <div>s. -Mike
  2. Ok, then. It took me half an hour to type, and two hours to debug. Sound about right? No, really, it took me three or four times, watching Beginner's CSS Tutorial, and pausing to look at the code in the video, to get this right. And, I modified it a bit, to do what I consider, some improving touches, margins, etc. In your code, displayed for this section in the video, you never end the <div id="fixed"> with a </div>, before you start the <div id="floater"> tag. At first, I thought, maybe it is possible to contain one <div> within another? It must be, because you finally, just before </body> have another </div> element. Typing out this code, is something I should have done before. Now, I feel, I really have a better handle on floats. -Mike P.S. Something about the </div> at the very last, is still a bit wonky. The "burger fries dogs cats" menu, at the last, are floated, so, presumably, they're still included in the <div id=floater> element. ch6-lesson-5-visiblity_floats.html
  3. Stef, In reality. Instead of whining about it, I should put my big boy pants on, and just write my own code to duplicate the web page you show for this lesson. LOL! I will do that later tonight, and share my code with you. It'll be good for me. After taking your course, reviewing it a few times, and even doing most of the w3schools tutorial, I should be more than adequately equipped. -Mike P.S. It's even more embarrassing. You display all of the code in your video. All I have to do is type it up. Ooph!
  4. Yeah, Stef, thanks. I know what you mean. But, I looked both before and after Sections 6.5 and 6.6. There is no html content (code) for Lesson 6.5. In the video of the course, you show a web page, with and <h1> content of: Display: none, visibility and floats. I just looked at all of the code for chapter 6. Lesson 6.4, the <h1> content displays: "Display - block vs. inline". No html code for Lesson 6.5. Lessons 6.6, 6.7, and 6.8 the <h1> content displays: "Position: static - fixed -relative. Lesson 6.9, again, no html code. BTW, I'm enjoying your Introduction to Python course. I thought it would be streaming content, as the Web Development course is, and, frankly, I was a little disappointed that it isn't, but, still, lots to learn. But, where are the Quizzed, or, the Q & A? I see others have asked about it. My email is mjgreer0514@gmail.com. -Mike
  5. I've posted about this before, and, at the time, I realize that Stef was too busy to look into it. But, I'm reviewing the material now, and find it a bit annoying. The Beginners CSS 2015 course is missing the HTML code for Lessons 6.5 and 6.6. This is pretty important material, as it covers well the use of float, toClear, visibility and several other aspects of CSS coding necessary to bring a web page up to the modern standards. I would hope, that this matter can be looked into, since not having the code to this material is denying a big chunk of the concepts necessary in designing web pages. -Mike
  6. Hi Stef, I finally got around to ordering the Beginner's Python 3 Course. I wanted to review all of your Web Developer course first, but, I'm just too itchy. I hope, and am pretty sure, that your Python course will be as good as your Web Development course. Thanks for your courses, and all you share in your videos. Time to buckle down. Two hours of coding/day. -Mike
  7. Oh, I just wanted to paste a link to this, I didn't mean to open this video. Now, I can't figure out how to delete it. I'm posting this, because it's funny. For a video that is supposed to be trashing PHP, I hear about 50% of it, really listing all of the benefits of PHP.
  8. Has anyone tried Visual Studio Code as an editor? I've downloaded it, and tried it programming some C++. As a code editor, it appears fantastic. I forget the name of the autofill technology that allows it to do this, but, basically, you start typing HTML code, and it slams a basic HTML document, with all the basic tags on your page for you. It isn't totally flexible, as far as customizing color and size of text, at least I haven't figured that out yet, but, it has a lot of themes that you can download as extensions. It is also supposed to have the capability of executing and debugging code, but, it isn't that easy. You have to edit a few .json files to get this functionality. -Mike
  9. I'm posting this in ecstacy! I'm using my Raspberry Pi as my Web server instead of loading MAMP on my desktop. I wasn't sure, where in the Linux file system to place htdocs, so I Googled and found out that you place it the same place you place your web pages in /var/www/html. So, now, to view my php pages, i just open Chrome and in the address bar type 10.0.0.238//phpfilename.php. It works like a charm. -Mike
  10. I did manage to figure out a couple of things about float. It helped to just push on with the course. I hit a bit of a wall at the beginning of Chapter 7 of the course. The pace picked up a bit. I reviewed all the previous material and rearranged it into a more logical order. Not a criticism. I realize that a teaching order, and a reference order, are two different animals. I just rearranged my notes on the material in more of a reference manner. Oh, and, I also ordered your book. I hope you don't mind, I ordered a used copy. Today, I'm drinking water from a fire hose. I watched a couple of videos on how to set up my Raspberry Pi as a web server. I currently have a web server now at home, albeit, not accessible by anyone outside of my home network. At least now, I have a place to start building my website. I'm just about finished with your CSS course. A lot of material, but, laid out in a very entertaining manner. -Mike
  11. I looked for it again tonight, to see if the page may have been included either in a lesson before or after. The webpage has an h1 of "Display none, visibility and floats". I can't find it anywhere, and, really would like to see it, because of its float demonstration. -Mike
  12. Stefan, I was reviewing Lesson 6, and wanted to look at the styling code for the float example. Particularly, I wanted to see why the floating div was under a particular line, but, it appears that this code was not in the download for CSS. -Mike
  13. Stef, I really wish you had a training video on C++. I took a semester of C++ in college, back in 1998. It has some great concepts. Almost all of the modern languages incorporate its concepts, even Visual Basic. I can see real advantages of Object Oriented Programming vs. procedural programming. But, as I try and learn it again, getting even deeper into concepts that I thought I knew 20 years ago, I have a lot of times when I get stuck, and spin my wheels for a while. About half of the time it's syntax errors on my part, I just caught one tonight, and half the time it's fighting with the IDE. I'm using Code::Blocks IDE, and, the concept of having to start a project every time I just want to code is a real pain. I thought I had a go to guy for times when I get into a rut, but, come to find out, he's a C programmer and doesn't use the IDE that I do. Like you say, once you learn the fundamentals of one programming language, it usually shares so much in common, at its core, with all the other languages, functions, loops, selection, declaring variables, samo-samo. If you know of a good, helpful, C++ programmer, please let me know. -Mike
  14. OH!!!!! I got it. Down in the lower right-hand side of the display, it said "plain text". You have to change it to HTML. Dar!!!!!!! Works great now! -Mike
  15. Hmmm. As I wrote in my next to the last line, I saved it as an .html file, but, it didn't help. I will try it again though. No, I tried it again, just now. It doesn't even give me the closing tag for <head> nor <title>. I guess I'm gonna have to read some documentation. In the meantime, I'll try Sublime Text 2, which I just finished downloading. -Mike
×
×
  • Create New...