![]() |
|
|
|||||||
| Register | Home | Forum | Active Topics | Parts Catalog | FAQ | Garage | Photo Gallery | Search | Today's Posts | Mark Forums Read | Auto Escrow | Auto Loans |
![]() |
|
|
Thread Tools |
Rating:
|
|
|
#8776 |
|
Al, The Ignorant Fcuk
Join Date: Dec 2000
Location: Elizabethtown, Pa
|
I bought my wife (then my fiance') an electric egg-beater for Christmas. She seemed to like it at the time.
She told me many years later that I was lucky she still married me. But in my defence I also bought her a see-thru negligé. Wait..I bought it indirectly for me.
|
|
|
|
| Sponsored Links | |||
Advertisement | |||
|
|
#8777 |
|
Registered User
Join Date: Jan 2004
|
I wish it was that easy here... If I don't have my dick in a bow and a wallet in my mouth, she's *****'n...
__________________
12.4 at 115mph |
|
|
|
|
|
#8778 |
|
Bootlegger
|
Merry Christmas all!
My car is still fugged up. It has a new clutch now, but still lacks the power it used to have. After data logging, I have narrowed the knock down to the #2 cylinder, which means that piston is likely cracked. Since the dealership and Subaru didn't listen to me, I am just going to keep driving it until the problem becomes severe. It is burning a little oil. It consumed about a half a quart in 1000 miles. This may be the last Subaru I own, which is sad after owning so many.
__________________
2011 Yugo Will drink for beer! C6H12O6 ---> 2 CH3CH2OH + 2 CO2 |
|
|
|
|
|
#8779 | |
|
Al, The Ignorant Fcuk
Join Date: Dec 2000
Location: Elizabethtown, Pa
|
Quote:
The SOHC N/A engine is hit or miss. Head gaskets before 2004 were almost a certainty to go bad. The problem has not been totally fixed until the FB block came along. But the reliability of the FB Dual cam N/A is not proved. There were problems with the chain tensioner on this one. I suspect that the Turbo is going to eventually be added to the FB engine but who knows. My Subaru now has 102K miles and I am coming up on the timing belt change. That really requires the tensioner, water pump, seals and idlers. Do I jump into that or keep what I have? If I keep it there is still the head gasket to consider. I think the wife will go along with the manual...but she is not wild about it. Decisions, decisions, decisions. |
|
|
|
|
|
|
#8780 |
|
Moderator
|
Since the radio in my Altima won't play lossless audio files and has a USB drive port, I spent a full day writing a script to convert the music files on my server to mp3. It took ~28 hours to run. Then I discovered I set the song title to the album title.
![]() Code:
@echo off
rem usage: flac2mp3 >> flac2mp3.log 2>&1
for /r "D:\shares\Music" %%f in (*.flac) do call :flac "%%f"
for /r "D:\shares\Music" %%f in (*.mp3) do call :mp3 "%%f"
goto :eof
:mp3
rem extract artist, album and title from search result
for /f "delims=\ tokens=4-6" %%g in (%1) do (
set ARTIST=%%g
set ALBUM=%%h
set TITLE=%%i
)
rem setup source and destination folder locations
set DEST="D:\shares\Converted Music\%ARTIST%\%ALBUM%"
set SOURCE="D:\shares\Music\%ARTIST%\%ALBUM%"
rem see if destination already exists, and if so, compare modified timestamps
if exist %DEST:~0,-1%\%TITLE%" (
set A=%~t1
for %%f in (%DEST:~0,-1%\%TITLE%") do call set B=%%~tf
if "%A%" leq "%B%" exit /b
)
rem do copy operation
echo robocopy %SOURCE% %DEST% "%TITLE%" /r:3 /w:30 /njh /njs /ndl /np
robocopy %SOURCE% %DEST% "%TITLE%" /r:3 /w:30 /njh /njs /ndl /np
exit /b
:flac
rem extract artist, album and title from search result.
rem don't use tags as they may contain invalid file system characters.
for /f "delims=\ tokens=4-6" %%g in (%1) do (
set ARTIST=%%g
set ALBUM=%%h
set TITLE=%%i
)
rem set destination file name as an mp3
set MP3="D:\shares\Converted Music\%ARTIST%\%ALBUM%\%TITLE:~0,-5%.mp3"
rem see if destination already exists, and if so, compare modified timestamps
if exist %MP3% (
set A=%~t1
for %%f in (%MP3%) do call set B=%%~tf
if "%A%" leq "%B%" exit /b
)
rem create artist and album subfolders if necessary
if not exist "D:\shares\Converted Music\%ARTIST%\" mkdir "D:\shares\Converted Music\%ARTIST%\"
if not exist "D:\shares\Converted Music\%ARTIST%\%ALBUM%\" mkdir "D:\shares\Converted Music\%ARTIST%\%ALBUM%\"
rem extract tag data from source file
for /f "tokens=*" %%a in ('metaflac %1 --show-tag^=TITLE') do set TITLE=%%a
for /f "tokens=*" %%a in ('metaflac %1 --show-tag^=ARTIST') do set ARTIST=%%a
for /f "tokens=*" %%a in ('metaflac %1 --show-tag^=ALBUM') do set ALBUM=%%a
for /f "tokens=*" %%a in ('metaflac %1 --show-tag^=TRACKNUMBER') do set TRACK=%%a
for /f "tokens=*" %%a in ('metaflac %1 --show-tag^=DATE') do set DATE=%%a
for /f "tokens=*" %%a in ('metaflac %1 --show-tag^=GENRE') do set GENRE=%%a
for /f "tokens=*" %%a in ('metaflac %1 --show-channels') do set CHANNELS=%%a
rem set file name for intermediatary WAV file
set WAV=%MP3:~0,-5%.wav"
rem convert flac to wav using standard flac tool (only support 2 channel files), ffmpeg if channels > 2
if /i %CHANNELS% LEQ 2 (
echo flac -d -o %1 -s %WAV%
flac -d -o %WAV% -s %1
) else (
echo ffmpeg -i %1 -ar 44100 -ac 2 %WAV%
ffmpeg -i %1 -ar 44100 -ac 2 %WAV%
)
rem convert wav to mp3 and apply tags
echo lame --nohist -V0 -o %WAV% %MP3% --tt "%TITLE:~6%" --ta "%ARTIST:~7%" --tl "%ALBUM:~6%" --ty "%DATE:~5%" --tn "%TRACK:~12%" --tg "%GENRE:~6%" --add-id3v2
lame --nohist -V0 -o %WAV% %MP3% --tt "%TITLE:~6%" --ta "%ARTIST:~7%" --tl "%ALBUM:~6%" --ty "%DATE:~5%" --tn "%TRACK:~12%" --tg "%GENRE:~6%" --add-id3v2
rem cleanup
echo del %WAV%
del %WAV%
exit /b
:eof
exit /b
__________________
Current:
2011 Navy Blue Metallic Nissan Altima 3.5SR Sedan Previous: 2000 Heatwave Nissan Sentra SE w/ Performance Package | NISMo Suspension | NISMo 17x7.5 bronze wheels |
|
|
|
|
|
#8782 | |
|
Registered User
Join Date: Aug 2004
|
That SUCKS!
![]() Quote:
__________________
The trouble with our liberal friends is not that they're ignorant; it's just that they know so much that isn't so.' - Ronald Reagan I will keep my guns, ammo and money. You can keep your change. |
|
|
|
|
|
|
#8783 | |
|
Army Of Me.
Join Date: Nov 2001
Location: The gym or work.
|
The wife and I picked this up last week. 2013 V6 w/ Nav and all that other sh1t. Pretty nice SUV for the money. Got the dealer to give us a crapton off MSRP.
__________________
Quote:
|
|
|
|
|
|
|
#8784 |
|
Old Age Sux
Join Date: Sep 2006
Location: Agawam MA
|
There's nothing I hate more than doing my income taxes! If I wasn't so cheap, I'd have someone do it for me! It's getting all the paperwork together that drives me nuts. I have to get more organized during the year rather than throwing everything in a drawer.
|
|
|
|
|
|
#8785 | |
|
******
Join Date: Nov 2003
|
Quote:
![]() Don't want him wasting any of the limited time he has left fiddling with tax returns. |
|
|
|
|
|
|
#8786 |
|
Old Age Sux
Join Date: Sep 2006
Location: Agawam MA
|
I 've been using taxactonline. Works great. I did my Dad's taxes this weekend. He gets $1,000 from the state for being an OG. I'm still waiting for a load of 1099's before I can do mine. Thank God for the internet. I used to do this by hand.
|
|
|
|
|
|
#8787 |
|
******
Join Date: Nov 2003
|
I have rental and Schedule C income. From what I've read, TurboTax is the best for those items (but pricey).
Will be fun.
|
|
|
|
|
|
#8788 |
|
Al, The Ignorant Fcuk
Join Date: Dec 2000
Location: Elizabethtown, Pa
|
Mine is now pretty simple since most of my stuff is in 401K. I have gone back to paper.
|
|
|
|
|
|
#8789 |
|
Old Age Sux
Join Date: Sep 2006
Location: Agawam MA
|
Did my taxes yesterday. I only owe the Feds $921! I used TaxAct Online. Works great.
|
|
|
|
| Sponsored Links | |
Advertisement | |
![]() |
| Thread Tools | |
| Rate This Thread | |
|
|