Watashi wa pengin desu.
Minä olen pingviini.
keskiviikko 17. syyskuuta 2008
torstai 17. heinäkuuta 2008
Easy way to convert audio-only ASF to MP3 / WAV
Follow these steps:
1) Download and install latest version of Goldwave
2) Open ASF-file with Goldwave
3) Save it to WAV or MP3. There are many other formats, too.
Suggested bitrate for new MP3-file is same as the original ASF-file had.
Note, Goldwave uses LAME MP3 Encoder, so Goldwave will ask for "lame_enc.dll" at the first run. If you don't have it already, download it from The LAME Project page.
1) Download and install latest version of Goldwave
2) Open ASF-file with Goldwave
3) Save it to WAV or MP3. There are many other formats, too.
Suggested bitrate for new MP3-file is same as the original ASF-file had.
Note, Goldwave uses LAME MP3 Encoder, so Goldwave will ask for "lame_enc.dll" at the first run. If you don't have it already, download it from The LAME Project page.
maanantai 19. toukokuuta 2008
ts2bluray (dvd)
torstai 3. huhtikuuta 2008
Replace a string in Oracle database field
update myTable a set someField = replace (a.someField,'Ä','A') where someField is not null;
update myTable a set someField = replace (a.someField,'Ö','ö') where someField is not null;
update myTable a set someField = replace (a.someField,'Å','A') where someField is not null;
update myTable a set someField = replace (a.someField,'Ö','ö') where someField is not null;
update myTable a set someField = replace (a.someField,'Å','A') where someField is not null;
Oracle Case-When example
select
product,
company,
case when category = 'Microsoft'
then 'Yes!!'
else 'No'
end as microsoft_spotted
from
products
;
product,
company,
case when category = 'Microsoft'
then 'Yes!!'
else 'No'
end as microsoft_spotted
from
products
;
Howto register Dll and Exe in command-line
To un/register Dll:
c:\>regsvr32 "C:\Windows\System32\My.dll"
c:\>regsvr32 /u "C:\Windows\System32\My.dll"
To un/register Exe:
c:\>"C:\Program Files\MyAppLocation\My.exe" /REGSERVER
c:\>"C:\Program Files\MyAppLocation\My.exe" /UNREGSERVER
c:\>regsvr32 "C:\Windows\System32\My.dll"
c:\>regsvr32 /u "C:\Windows\System32\My.dll"
To un/register Exe:
c:\>"C:\Program Files\MyAppLocation\My.exe" /REGSERVER
c:\>"C:\Program Files\MyAppLocation\My.exe" /UNREGSERVER
Tilaa:
Blogitekstit (Atom)




