Toby, a friend of mine, opened his own blog. He was the guy who supported my first web developing steps. If he had not done this, I would not write this blog. He is one of the best programmers I know.
Feel free to read his blog, too.
Toby, a friend of mine, opened his own blog. He was the guy who supported my first web developing steps. If he had not done this, I would not write this blog. He is one of the best programmers I know.
Feel free to read his blog, too.
After install the SP3 notepad2 does not longer work.
I have found a nice script to install notepad2.
@echo off echo *IMPORTANT* echo This will kill all open instances of Notepad. echo To cancel, end this batch file now (ctrl+c), or hit any key to continue. pause echo Killing all instances of notepad running... TASKKILL /F /IM notepad.exe /T echo Backing up... call :backup %systemroot%\servicepackfiles\i386 call :backup %systemroot% call :backup %systemroot%\System32 call :backup %systemroot%\System32\dllcache echo Installing... copy notepad2.exe %systemroot%\servicepackfiles\i386\notepad.exe /y copy notepad2.exe %systemroot%\notepad.exe /y copy notepad2.exe %systemroot%\System32\notepad.exe /y copy notepad2.exe %systemroot%\System32\dllcache\notepad.exe /y echo Done. pause goto :end :backup call set npath=%1 set count=0 for %%i in (%npath%\notepad.original*.exe) do ( set nname=%%i set /a count=count+1 ) echo backing up to %npath%\notepad.original%count%.exe copy %npath%\notepad.exe %npath%\notepad.original%count%.exe /y :end
Enjoy it!
Hello everyone,
my 1st interview is online on TechnoBase.FM (the best Webradio). You can read it here. Enjoy reading it, but it’s written in German…
So Long
TinyMCE is a nice WYSIWYG Editor for a Webapplication. In my application I’m very interested in allowing the users to use BB Code to optimize the visualisation of the texts (guestbooks, news comments, …). Before I released the TinyMCE Editor on my Webradio website, I did some tests.
1. At first, I entered the following text into my textarea:

2. After submit the form, I get this text displayed:

Now you can see that the text which is between the <strong> tag is now displayed as bold. But, it shouldn’t be! If I choose the BB code plugin I think the html tag should be disabled…
3. After submit the form again, I get this text displayed:

Well, now my HTML Tag is rendered as a bb code tag. That’s wrong. I want to display the html tag and not a formatted bb code text.
I searched for support, but nobody on the TinyMCE board helps me…
After some tests, I think, I fixed the bug.
Please change the _tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js file and add the following lines to line 47 (before replacing the old tags).
rep(/&lt;/gi,"&amp;lt;"); rep(/&gt;/gi,"&amp;gt;");
I want to start an experiment and I need your help. My experiment is to push TechnoBase.FM for google ranking. What you’ve to do? It’s very simple. You should link TechnoBase.FM on your on Site, Blog or MySpace Account. Important is that the link name is Webradio.
What’s the background? Normally, a new listener doesn’t know TechnoBase.FM. Our radio leading want to have more and more listener. Often people search for a webradio / internetradio / onlineradio on google and they don’t search on the 20th page. They pick one of the radios from the first or second page. That’s our target. But, we NEED YOU!
The project does not work if you link one of the other radios or the “We aRe oNe” page…
<a href=”http://www.technobase.fm” target=”_blank” title=”TechnoBase.FM – We aRe oNe”>Webradio</a>
I hope that some people support my idea ;-)
So Long