learn jquery with this video tutorials
this is the first part of the guided video tour about learning jquery from beginner to expert knowledge
this is just the first part of the tutorial list go to in the woods to watch the rest of the tuts
Read more...
Here is the solution ...
check out this link (while you are logged on on google): http://code.google.com/hosting/settings
GoogleCode does have a generated password instead of using your general google password - took me about hours ... at least it felt like ;)
Read more...
i just tried to install ubuntu on a usb-hdd on my compaq 8510p. Everything seemed to work properly except i got the error:
Grub Error 17: Cannot Mount Selected Partitionthe solution was pretty simple:
i switched to edit mode in the boot menue (select a boot-option from the list and press 'e')
then i tried to change the entry root (hd1,0)
changing to hd0,0 worked as expected
to make the whole step permanent i searched in /boot/grub/ for 'hd1,0' and found menu.lst
there i changed the entries for the main- and the compatibility- boot option to 'hd0,0' and restarted the computer
result: works as expected *hurray*
Read more...
After some days of trying i just found the solution to use my HTC Diamond within Ubuntu.
My Problem was, that the internetconnection was quite slow when i was connected through ICS (internet connection sharing) ... the solution is very simple:
just open your terminal after the ics connection is established and type:
sudo ifconfig eth1 mtu 1392
(probably you have to change eth1 to eth0 or eth2 or wherever your device is mounted)
have fun!
Read more...
how to create a blogger widget - video tutorial
if you wonder how i choose the tiltle of the post "how to create the LyteBoxify widget" without actually explaining how to create the widget ... watch the tutorial ...
Read more...
Because of the lack of freeware programms i decided to make a notes -> outlook converter by myself. You can try the "pre-alpha" version [here]. Just unzip it and start it with NotesCalCon.jar xxxxx.txt (before you try it you have to export your notes calendar to a structured text file --> xxxxx.txt).
Read more...
I'm pleased to announce that the Linux 2.6 kernel has been ported to Apple's iPhone platform,
... read more
Read more...
Hi,
i just stumbled upon this very NICE rom for my htc diamond (which is still vodafone branded).
Official new HTC Diamond Touch Splash Added.
Diamond Touch Setup Customized
DISPLAY Driver Updated (More Fluid Feeling)
WLAN Driver Updated
GPS Driver Updated
Rilphone Driver (Basic Functions Of Phone Updated)
USB Driver Updated
CE & OS Build Updated To 20755 Of Every Language
Full Kernel Mode 5-7% More Speed Compared To Stock Rom. Credits To My Friend Swtos
ULDR Partition Removed 3 MB More Space Compared To Stock Rom. Credits To My Friend Swtos
G-sensor Calibrator Added From HTC Raphael
Internet Sharing 3 Option Menu Added From HTC Raphael
Touchflo Tweaks Added No Need For 3rd Party Tools
NetCF 3.5 RTM Added
Tweaks Deep On The System
12 MB Stable And Evaluated True Pagepool (Default 8 MB)
OPERA Removed You Can Install Latest Version Yourself! There Is Weekly A New Opera Build Out.
Optimizations To Save Storage Without Removing A Stock Application.
Welcome Center Removed
All Packages Wich Were Added Are From Official Stock Roms. No Modified Cabs Are Used On This ROM.
Read more...
Image via CrunchBase
Unfortunately it took a long time till i tried to simplify my former "how-to: Static Pages in Blogger ARE possible" [link], but here we go ...
I use the HTML/JavaScript widget to get the impression of static pages
Step 1: Layout -> Add a Gadget
Step 2: Basic -> HTML/JavaScript
Step 3: Add your static content and save
Step 4: Place it above the "Blog Posts"-Widget
Step 5: save your changes
now we have to hide this gadget (otherwise it would appear all the time before your blog actually starts - see screenshot below) – therefore we have to change the template (do yourself a favour and backup the template before you change something!!!)
Backup your template
Step 6: Activate the checkbox "Expand Widget Template"
Step 7: Search for the string “title='Blog Posts'” – that’s the first line of the post-widget
Your HTML/JavaScript widget should be direct above this widget
Step 8: To hide the widget we have to add a line of code
This way – you will only see the static content if you link to [YOURBLOG].blogspot.com/label/xxx
Step 9: To hide the Blog Posts while you are displaying the static content you have to add the following lines of code
Search for "id='nextprev'" and add the code directly under that line
Read more...
Because of the fact that i got my htc diamond recently, there are some topics i won't spend to much time on yet (like the static blogger page widget).
Here is what i want to do
- get rid of the f*cking vodafone theme (htc's black theme is much cooler)
- sync the diamond with my google calendar
- use htc diamond as a modem for my laptop
- use htc diamond to chat via skype, icq and msn using just one client app (like miranda on windows xp)
- write and publish posts for detect-it.blogspot.com
Read more...
static pages in blogger ARE possible
This how-to is still "under construction" I just published it, because i think lots of people are suffering the same problem
[update]New Version available![/update]
Watch out my static 'About me' - page
'cause of a mysterious motivation boost i sat down yesterday night in front of my laptop, and tried to find is a way for "real-looking" static pages on blogspot.
and to make a long story short there is a way, to get professional looking static pages!
... i will still invest some work into this topic, but for now i will show you how it works with my 'quick-and-dirty' method (the breaking idea comes from hoctro's adding a frontpage tutorial).
here we go ...
1) let's start
add a page element (HTML/JavaScript) somewhere in the layout and drag it to show up before the 'blog post' section
2) change the layout
go to Layout - Edit HTML and enable the checkbox for Expand Widget Templates (do yourself a favour and SAVE your template before you change it)
3) search for the head-tag
and add the following lines of code directly after this tag
4) after the closing head-tag
you should find the body-tag - there you add onload='doIT()'[body onload='doIT();']
5) now the magic happens!
search for your widget you added in step 1 (title) and add line 4 and 12[b:widget id='HTML5' locked='false' title='About me' type='HTML']
[b:includable id='main']
[!-- static content starts--]
[b:if cond='data:blog.url == "http://[YOURBLOG].blogspot.com/search/label/xxx"']
[!-- only display title if it's non-empty --]
[b:if cond='data:title != ""']
[h2 class='title'][data:title/][/h2]
[/b:if]
[div class='widget-content']
[data:content/]
[/div]
[/b:if][!-- static content --]
6) we are nearly finished ...
search for widget blog1 and add lines 3 to 5[b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog']
[b:includable id='nextprev']
[b:if cond='data:blog.url != data:blog.homepageUrl']
[script]document.getElementById('Blog1').style.visibility='hidden';[/script]
[/b:if]
7) last one ...
edit your HTML/Javascript Widget you added in step 1
open the html view and add these lines
after that step, you can finally add your content!
So That's IT ... i know - it's not the easiest way, but i'm thinking of rewriting it to make it a bit easier. Maybe i even create a own widget to make it more comfortable to use
Read more...