 |
HiveMinds We've arrived. Please notify the admins of any problems.
|
| View previous topic :: View next topic |
| Author |
Message |
Adrian J. Moreno iKnowKung(Foo);
Joined: 08 Nov 2002 Posts: 1131 Location: Irving, TX, USA
|
Posted: Wed Jun 08, 2005 10:18 am Post subject: i Know Kung Foo Consulting |
|
|
Ok, I finally got around to working on my "consulting" site again last night. All CSS, no tables.
This site will be where I post my resume, a blog, articles, project plans, etc..
Please let me know how you like the layout, color scheme, and so on. No content as yet, but it's a start.
http://iknowkungfoo.com/ - Basic shell
http://iknowkungfoo.com/?sample - blog/article entry with code.
I'm concerned at how to get the code snippets to "overflow" their <pre> area correctly. In Firefox, the area scrolls as the window shrinks, but in IE, the middle area stretches to the right, filling the screen unless I put in a "width" style for that tag.
| Code: | pre {
overflow: auto;
background-color : #FFFFCC;
border : 2px solid #660066;
padding : 10px 10px 10px 10px;
white-space : pre;
margin-left : 20px;
margin-right : 20px;
width:500px; // needed for MSIE only
} |
Thanks for any input. _________________ i Know Kung Foo Consulting
- ColdFusion, Java, JBoss, JSP & Struts, XML, SQL
- Internationalization (i18n)
My Blag
- Object Oriented ColdFusion and more |
|
| Back to top |
|
 |
The Boy Hope Feral Scot
Joined: 08 Nov 2002 Posts: 1586 Location: Scotland
|
Posted: Fri Jun 10, 2005 7:23 am Post subject: |
|
|
Can't say I'm a fan of the layout really, Adrian. Maybe it'll look better when it's filled in with some content.
Wanna make up a little test case for your <pre> issues? _________________ Let's all lobby for mandatory blood and urine testing of all politicians on a weekly basis. They have nothing to hide. |
|
| Back to top |
|
 |
BillNye New Bee
Joined: 05 May 2005 Posts: 10 Location: Cowtown, Missouri
|
Posted: Fri Jun 10, 2005 9:20 am Post subject: |
|
|
| looks very functional. The banner up top has a line showing up on the right hand side, and the purple used for the banners seems to clash to me. But the basic / clean cut look isn't bad at all. |
|
| Back to top |
|
 |
Adrian J. Moreno iKnowKung(Foo);
Joined: 08 Nov 2002 Posts: 1131 Location: Irving, TX, USA
|
Posted: Fri Jun 10, 2005 9:45 am Post subject: |
|
|
I think I've fixed the issue with the <pre> tag:
| Code: | pre {
overflow: auto;
background-color : #FFFFCC;
border : 2px solid #660066;
padding : 10px 10px 10px 10px;
white-space : pre;
margin-left : 20px;
/* margin-right : 20px;*/
width: 90%;
} |
Making the width a percentage and removing the right margin seems to do the trick.
I'm trying to make the site functional first. The second link in the first post has "content". I'm going to try and get the blog installed this weekend.
The purple in the header area and the border colors should all be the same. Bill, which colors do you think clash (asked the programmer)? _________________ i Know Kung Foo Consulting
- ColdFusion, Java, JBoss, JSP & Struts, XML, SQL
- Internationalization (i18n)
My Blag
- Object Oriented ColdFusion and more |
|
| Back to top |
|
 |
BillNye New Bee
Joined: 05 May 2005 Posts: 10 Location: Cowtown, Missouri
|
Posted: Fri Jun 10, 2005 3:16 pm Post subject: |
|
|
| the purple background is fine, the purple you're using for the banners though seems a little much. I know that's not very helpful, but I'm distracted by it when I look at the page. |
|
| Back to top |
|
 |
Michelle Helper Bee
Joined: 08 Nov 2002 Posts: 345 Location: near Atlanta, GA
|
Posted: Sat Jun 11, 2005 4:35 pm Post subject: |
|
|
Adrian, I see you posted your message on wednesday - sorry for the slow reply. My cable line got struck by lightning monday night, and I just got a new cable modem today.
I think the design of your site is fine - very clean, slightly quirky (the colors and logo), and the information you have is easy to find. I don't think that it adequately expresses who you are though. Since it is a site for posting your resume, I would go either completely conservative or make it more expressive of you. If you decide to make it more expressive, you could make the theme play more off the url with fun visual examples of a kung-foo coder. |
|
| Back to top |
|
 |
Cshark Helper Bee
Joined: 13 Dec 2002 Posts: 499 Location: Shawnee, KS
|
Posted: Tue Jun 14, 2005 10:56 am Post subject: |
|
|
I like it, it's a nice look for a site. I've put together uglier things for clients who wanted them. I know you never asked for advice, but since everyone else is doling it out, I thought I would chime in. I would lighten the gray a bit though to make the text more readable. Black on medium gray is hard for me to read at times. In fact, you might be better served by an off white color somewhere in the vicinity of #FFFFE8 or #EEF2EF. Just a thought. _________________ This signature has super cow powers. |
|
| Back to top |
|
 |
Dn The Inquisitor
Joined: 08 Nov 2002 Posts: 2097 Location: a dark room in front of a pleasantly glowing monitor; also near Atlanta, GA, USA
|
Posted: Tue Jun 21, 2005 1:25 pm Post subject: |
|
|
Can you teach me kung fu? Cool! Wait a sec -- it's kung foo not kung fu. Oh well.  _________________ [Fun Tagline Goes Here]
Politic Minds | Tucker, Georgia |
|
| Back to top |
|
 |
Adrian J. Moreno iKnowKung(Foo);
Joined: 08 Nov 2002 Posts: 1131 Location: Irving, TX, USA
|
Posted: Tue Jun 21, 2005 2:52 pm Post subject: |
|
|
| Dn wrote: | Can you teach me kung fu? Cool! Wait a sec -- it's kung foo not kung fu. Oh well.  |
To Know Kung Foo is to know that programming concepts are more important than programming syntax. If you know how to do what you need done, the language you write it in is irrelevant.
*gong* "Ohhmmmmmmmmm".
This can also be applied to martial arts. I know many techniques from Tae Kwon Do, Aikido, Jiu Jitsu, Muay Thai, Kali, and most recently Pekiti Tirsia. The concepts of Jeet Kune Do can be applied to any of them and allow them to all work together.
When you see techniques from more and more arts, you see how similar many of them are due to the way the human body behaves. Applying the offensive/defensive concepts you learned with one style generally works when implementing techniques of a different style.
My sensei (green UNT cap) tells me, "I don't know how to describe what it is that you do, I just know that you're dangerous when you do it."  _________________ i Know Kung Foo Consulting
- ColdFusion, Java, JBoss, JSP & Struts, XML, SQL
- Internationalization (i18n)
My Blag
- Object Oriented ColdFusion and more |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|