Twitter Updates: 2007-04-20
- Getting prepped for an off-site media setup – big fundraising effort for campus PE center. Lots of big mucky-mucks. Oh boy! #
- @crafty184: Firefox baby! If only to have a backup browser! #
Powered by Twitter Tools.
Powered by Twitter Tools.
Powered by Twitter Tools.
New bar codes can talk with your cell phone | CNET News.com Annotated
Between motion sensing, barcode reading and flexible screens, the tech that can be placed into a cell phone could take the concept of convergence to a new level.
- post by edventures
Motion-sensing comes to mobile phones | CNET News.com Annotated
www.sifry.com: State of the Blogosphere / State of the Live Web
KickRSS :: Create An Aggregated RSS Feed
Education Week: Let’s Abolish High School Annotated
- post by edventures
So for those wondering, these posts are tests of the Twitter to blog option of the Twitter Tools Plugin. I’m curious to see if or how this stream of consciousness post adds value to my blog. Probably less interesting to those following on RSS but personally, I’ve been finding utility in Twitter from the standpoint that folks Tweet on things that wouldn’t necessarily be blog-worthy but have value to those in their network. As an example, I’ve shared a few interesting Tweets with Luis Suarez, D’Arcy Norman and Jeff Utecht and added a new node (and kindred spirit) to my network – Jeff VanDrimmelen of UNC-Chapel Hill.
If you are curious about Twitter, feel free to add me to your list http://twitter.com/edventures as the search features leave a lot to be desired. Right now I use the trial and error method. Find someone I know, check out their friends and add those that are mutual and in some cases, make new connections I might not have otherwise.
Not sure how long I’ll keep posting these Twitter updates. I do wish there was a way to set it to post privately so that I can continue to log my days but not bore the world.
Powered by Twitter Tools.
It took me a year to hit 100 posts and just four months to hit 200.
My thanks to the edublogosphere for the wealth of ideas to chew on and to Diigo for the annotated link posts. Diigo has been a wonderful tool. I really like the way it helps me organize my ideas, it has changed my approach. It still has it’s rough edges but I have to say that Maggie Tsai and crew have been really responsive to community feedback.
powered by performancing firefox
I’ve seen this “quiz” floating around the blogosphere for the past few days so I thought I’d give it a whirl. Now bear in mind I’m no programmer. I know enough to ID php or html in a line-up and wrote a bit of BASIC in the good old days of my TI-99A and the Trash-80 TRS-80, those silly choose your own adventure games but that’s about it. So how did I fare on this quiz? Take a look…
The description fits me to a T, but what the hell is PROLOG anyway?
[tags][/tags]
powered by performancing firefox
Start Slide Show with PicLens LiteIt may be next year when I get to post again so in the meantime may I extend a warm holiday greeting and my best wishes to my friends, family and those I have yet to meet. And to my brothers and sisters in arms overseas, you are not forgotten. Stay safe and I hope that you can soon return home to the ones you love.
powered by performancing firefox
Authored by Kaye Shelton and George Saltsman, this book is part of the USDLA series on Distance Learning, this book discusses issues surrounding the logistics, practices and politics of administering an online education program.
An Administrator’s Guide to Online Education
ISBN: 1-59311-424-9
Technorati Tags: OnlineEd, reading, online, education, administrator
powered by performancing firefox
I’ve been modifying my theme and in Flock and Firefox the blog background is was entirely black, yet in Internet Explorer, the background of the post area is was white and the area surrounding the blog content area is was black. Not quite sure what the issue is was but it’s an interesting problem to say the least.
UPDATE: Ok, so Matt rocks! He gave me some hints on how to improve my code.
The problem is that your theme is floating the content div left and floating the sidebar left. In CSS – on Mozilla browsers – a floated element does not influence the height of the parent element. In your case, the div “container” is the parent element and because it effectively has no height-adjusting elements, the “container” div (which is what has the white background) does not expand down the page.
1. Keep it Div – This one can be a pain.
Make one of the divs (either the content div or the sidebar div) not float. The easiest way to choose would be the one that will always be the longest in length…most likely the content div. Once you have removed the float, you may need to fiddle around with the width of the content div to prevent the sidebar div from wrapping to the bottom of the page. The drawback is this: Sometimes your sidebar may be longer than your content.
2. Go Oldschool – This one is archaic but functional.
The fact of the matter is, div layouts are a pain to fiddle with to get working with all browsers all the time. I still haven’t mastered it and it takes a lot of tweaking. What you can do is use a table:
[table]
[tr]
[td valign="top" style="width: 550px"]Your content (divs and all) go in here[/td]
[td valign="top" style="width: 200px"]Your sidebar (divs and all) go in here[/td]
[/tr]
[/table]The oldschool way would be the easiest to implement with the quickest results. The drawbacks? Well, its an oldschool way of doing things…layout with tables. Its frowned upon by some, but lets face it…tables are extremely functional and should be used where necessary to keep the end user’s experience consistent across browsers.
I won’t say that I understood all of it as I am still learning the finer points of CSS coding but the bottom line is that I removed the float from the content div and now all seems to be well.