topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday November 13, 2025, 6:39 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 127 128 129 130 131 [132] 133 134 135 136 137 ... 225next
3276
Living Room / Re: Ancient Seagate 2.5 GB USB 1.1 drive still functioning perfectly...
« Last post by 4wd on February 16, 2013, 10:06 PM »
Conner had the same problem...and then Seagate bought them out...coincidence?
3277
Thank you! Works perfectly, 4wd! Exactly what I needed.

Nicely done, 4wd.   :Thmbsup:

Thanks skwire - I realised after I did it that all he wanted to do was flatten the directory structure.  ;D
3278
Finished Programs / Re: DONE: Paste Something To Bottom Of All Text Files, Recursively
« Last post by 4wd on February 15, 2013, 05:59 PM »
You can also split it into a two line batch/command file, just in case the resultant echo command results in a really long command line, (long path/file names).

eg.

Code: Text [Select]
  1. for /r %1 %%f in (*.txt) do (echo. >>%%f)
  2. for /r %1 %%f in (*.txt) do (echo "endsas;" >>%%f)

It'll add the blank line on the first and the the "endsas;" on the second.
3279
Finished Programs / Re: DONE: Paste Something To Bottom Of All Text Files, Recursively
« Last post by 4wd on February 15, 2013, 06:11 AM »
Put this in a DOS batch file and then at a prompt type: RecAppTxt.cmd <path>

Where <path> is the top level directory you want, eg. RecAppTxt.cmd D:\TXT_Files_Below_Here\Demo

Don't forget to put <path> in quotes if it has spaces.

Code: Text [Select]
  1. REM RecAppTxt.cmd
  2. for /r %1 %%f in (*.txt) do (echo. >>%%f && echo "endsas;" >>%%f)

Try it on a test directory first, it worked here but who knows
3280
Living Room / Re: Grab 50GB of Box Online Storage Free for Life (2013-02-12)
« Last post by 4wd on February 14, 2013, 05:00 AM »
I have this working on Fedora.  How can I help?

Thanks - you might live to regret it though  :(  :P

What's the VPS part after Centos?

Virtual Private Server, it's running a minimal install of CentOS 6 i386, (shell access only at this point), just enough to give me a AMPP setup atm.

I've installed davfs2 and neon but I'm currently getting the following:

/sbin/mount.davfs: can't open fuse device
/sbin/mount.davfs: trying coda kernel file system
/sbin/mount.davfs: no free coda device to mount

If it's any easier, I can load the VPS up with Fedora 14 or 17, (still trying to see which distro I like :) ).
3281
Living Room / Re: Grab 50GB of Box Online Storage Free for Life (2013-02-12)
« Last post by 4wd on February 13, 2013, 06:27 PM »
Got it, and it can be synced on Linux by mounting via WebDAV:

I've been trying for the last 6 days to get my Centos 6 VPS to talk to Box via davfs.........that's about the first time I've seen https:// mentioned in the process.

Yes, it should have been obvious :-\

Back to the drawing board....
3282
Living Room / Re: What are your favorite movies?
« Last post by 4wd on February 13, 2013, 03:20 AM »
Ah! A fellow horror-flick lover~!  :Thmbsup:

Yep, Horror and SciFi - the diet of champions  ;D

Some non-English favourites:

Battle Royal.jpgBattle Royale II.jpggantz.jpgGantz-PA.jpgOne Missed Call.jpg
Night Watch.jpgThe Inhabited Island.jpgThe Inhabited Island 2.jpgThe Machine Girl.jpgTokyo Gore Police.jpg
3283
Living Room / Re: What are your favorite movies?
« Last post by 4wd on February 12, 2013, 09:23 PM »
Some of them:

the evil dead.jpgcube zero.jpgearth vs flying saucers.jpgforbidden planet.jpg
alien.jpgequilibrium.jpglifeforce.jpgice station zebra.jpg
gune of navarone.jpgkellys heroes.jpgwhere eagles dare.jpgrazorback.jpg
evil roy slade.jpgreturn of the living dead.jpgthe hitcher.jpgcabin in the woods.jpg
3284
Since you're already using Windows Explorer, you can simply use the find/search functionality to do what you want.  Press F3, enter *.* and do a quick search.  Then, just highlight all the found files and drag them into your top-level folder.

Are you saying I just wasted my time creating Move Everything Recursively, Delete Empty ?

MERDE!    ;D

Code: AutoIt [Select]
  1. #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
  2. #AutoIt3Wrapper_Icon=1360654278_56056.ico
  3. #AutoIt3Wrapper_UseUpx=n
  4. #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
  5. #cs ----------------------------------------------------------------------------
  6.  
  7.  AutoIt Version: 3.3.8.0
  8.  Author:         4wd
  9.  
  10.  Script Function:
  11.         Move Everything Recursively, Delete Empty (MERDE)
  12.  
  13. Icon from: http://www.iconfinder.com/icondetails/56056/32/crap_poo_shit_turd_icon
  14.  
  15. #ce ----------------------------------------------------------------------------
  16.  
  17. ; Script Start - Add your code below here
  18.  
  19. #include <RecFileListToArray.au3>
  20. #include <Array.au3>
  21.  
  22. If $CmdLine[0] = 0 Then Exit
  23. $srce = $CmdLine[1]
  24.  
  25. $files = _RecFileListToArray($srce, '*', 1, 1, 1, 2)
  26. If Not IsArray($files) Then
  27.         MsgBox(48, 'MERDE!', 'No files found!', 10)
  28.         Exit
  29.  
  30. _Valmorphanize($files, $srce)
  31.  
  32. $folders = _RecFileListToArray($srce, '*', 2, 1, 1, 2)
  33. If Not IsArray($folders) Then Exit
  34. _PruneEmpty($folders)
  35.  
  36.  
  37. Func _Valmorphanize($temp, $path)
  38.         For $i = 1 To $temp[0]
  39.                 If $path <> StringLeft($temp[$i], StringInStr($temp[$i], "\", 0, -1) - 1) Then
  40.                         $newdest = _AutoRename($path & '\' & StringRight($temp[$i], StringLen($temp[$i]) - StringInStr($temp[$i], "\", 0, -1)))
  41.                         FileMove($temp[$i], $newdest)
  42.                 EndIf
  43.         Next
  44.  
  45.  
  46. Func _PruneEmpty($temp)
  47.         For $i = 1 To $temp[0]
  48.                 If DirGetSize($temp[$i]) = 0 Then DirRemove($temp[$i], 1)
  49.         Next
  50.  
  51.  
  52. ; Function courtesy of KaFu:
  53. ; http://www.autoitscript.com/forum/topic/125602-filename-exists-auto-rename-making-too-many-duplicates/#entry871942
  54. Func _AutoRename($sFilename)
  55.         $sFilename_Buffer = $sFilename
  56.         $i = 1
  57.         While FileExists($sFilename)
  58.                 If $i = 1 Then
  59.                         $sFilename = StringLeft($sFilename_Buffer, StringInStr($sFilename_Buffer, "\", 0, -1)) & "Copy of " & StringRight($sFilename_Buffer, StringLen($sFilename_Buffer) - StringInStr($sFilename_Buffer, "\", 0, -1))
  60.                 Else
  61.                         $sFilename = StringLeft($sFilename_Buffer, StringInStr($sFilename_Buffer, "\", 0, -1)) & "Copy of (" & $i & ") " & StringRight($sFilename_Buffer, StringLen($sFilename_Buffer) - StringInStr($sFilename_Buffer, "\", 0, -1))
  62.                 EndIf
  63.                 $i += 1
  64.         WEnd
  65.         Return $sFilename

Put the executable in the %UserProfile%\SendTo directory and then you can just right-click->Send To MERDE.exe on the directory you want to turn to merde  :)

eg.

From this:

2013-02-12 12_46_47-R__test_ContourPlots.png

Do this:

2013-02-12 12_43_21-R__test.png

To get this:

2013-02-12 12_43_54-R__test_ContourPlots.png
3285
Living Room / Re: Bill Gates has donated over $36,854,000,000 in his lifetime
« Last post by 4wd on February 09, 2013, 05:39 AM »
Re: Bill Gates to Get Half

BWAHAHAHAHAHAAHA~!  :Thmbsup:

What?!  You haven't seen that before?

Sheesh....I am getting old  :-\
3286
Living Room / Re: Bill Gates has donated over $36,854,000,000 in his lifetime
« Last post by 4wd on February 09, 2013, 05:15 AM »
If it's half of his reported wealth, that's not impressive?

Isn't he just giving back what he was given years ago?

Bill Gates to Get Half
Redmond, WA--In a move designed to hasten the inevitable, billionaire Microsoft tycoon Bill Gates announced yesterday that from now on, he will be getting half.

Gates, whose savvy and aggressiveness propelled his Microsoft Corporation to the top of the business world and made him America's richest man with an estimated fortune of $18 billion, announced his plan at a press conference yesterday from his Seattle-area compound. "I get half," he explained.

It has not yet been decided if Gates' half will be taken straight down the middle or by liquidating all assets and dividing up raw capital. The question will be settled later this week by a special session of Gates' half of the U.S. Congress.

"Don't touch anything until you're sure it's not part of my half," Gates instructed the world's citizenry yesterday via the several million 40-foot-high projection screens he has scattered throughout the globe. "I don't want anyone messing up stuff in my half."

Until everything can be clearly divided between Gates and persons who are not Gates, measures will be taken to ensure the integrity of Gates' half.

Citizens are instructed to remain in their homes, consuming a carefully monitored minimum of their perishables and subjecting their personal possessions to as little wear and tear as possible.

In the event something belonging to Gates is consumed or damaged, Gates announced he will take punitive action, levying fines of up to $14 billion, and may even insist that offenders themselves be included in his half.

"Don't take from my half," the 36-year-old Gates said. "Ice cream and cool cars are part of my half." Gates also expressed interest in possessing Apple, IBM and the former Soviet Union.

"You know, I own the Bettman Archive," Gates said. "You can't look at it unless I say so."

Gates' half will be collected via an advanced subroutine built directly into Windows 95. Computer users without Windows 95 will have it automatically sent to them, with the cost of the program deducted from their half.

Those without computers will be directed to special Gates-owned DNA-resequencing centers where a special bio-silicate form of Windows 95 will be injected directly into their bloodstreams. Once in the bloodstream, the Windows program is designed to breed virally at the base of its host brainstem and to begin work on calculating Gates' half.

"Everyone must contribute to my half," Gates said. "Any number, no matter how small, can be divided into two halves, one of which will be mine."

Gates would not comment on the possibility of eventually increasing his share from a mere half to a controlling interest.

Sources close to Gates would neither confirm nor deny rumors that Gates might offer up to 15 percent of his half in exchange for the other half of the world.

"The transitional period may be difficult," Gates said. "But it will be quick. I hope that this time will be remembered pleasantly in the half of people's minds that remain their own."
3287
General Software Discussion / Re: How much have I downloaded?
« Last post by 4wd on February 04, 2013, 08:20 AM »
You have a daily usage of 33gb if we go by a 30day month, and in 2½ day you've only used 20.

Curt's said 20GB in 2.5 hours - not days.

That's approximately 200GB/day, (if it was on for 24 hours), a little bit more than 33.

Something's not right, either the way it's being measured or there's a program causing a lot more traffic than a few downloads.
3288
General Software Discussion / Re: How much have I downloaded?
« Last post by 4wd on February 04, 2013, 04:36 AM »
I told it to forget about speed and concentrate on in/out everywhere - including the gateway (I assume). I have merely been online for an hour and a half, but already it has passed 7GB coming in (I have only downloaded a 105MB video), and at this rate, 1TB per month seems almost possible.

Make sure you're using the installer version, not the portable version, select All Connections and then tell it to Ignore local traffic within the LAN.

2013-02-04 21_33_32-Settings.png

If it's still saying you're using 7GB/90 minutes then maybe whatever you're using to do backup backups/syncs is wasting an awful lot of data.
3289
General Software Discussion / Re: Lock PC during Boot. ???
« Last post by 4wd on February 03, 2013, 05:24 PM »
Put a boot manager with a 1 second timeout on a flash drive, (eg. GRUB), have it point to the Windows bootloader on the HDD, make USB the primary boot device and disable all the rest.  In theory, the machine won't boot without that flash drive plugged in, however it can easily be bypassed by using any form of USB bootable media.

Having a program residing in the MBR checking for a flash drive, (as you mentioned), won't help much if the computer is allowed to boot by any other means.
Which means you have to use the Setup Password in the BIOS anyway to disable access, so you may as well just use the BIOS Boot password also, as 40hz suggested.

It all depends on how hard you want to stop someone from booting the computer - if they can open it, they can boot it.
3290
Living Room / Re: Mp3 File Format Issue Split From Silly Humor Thread
« Last post by 4wd on February 03, 2013, 01:20 AM »
The following is off top of my head, so might not be 100% correct, but...

You're correct - been a while since I did anything more than "just" encode files.  :)

...anyway, file doesn't want to play here, ...

My bad, it was actually getting picked up by the LAV codec:  :-[

2013-02-03_18-00-50.jpg
3291
Living Room / Re: a place to buy exotic plants?
« Last post by 4wd on February 02, 2013, 08:12 PM »
I would think that any place that ships to Europe would need to be in Europe, (and most probably within the destination country itself).

Usually bringing any kind of plant matter, (especially living), is considered a no-no by a countries Customs enforcement.

You need to check the Customs Regulations where you want them delivered to.
3292
Living Room / Re: Mp3 File Format Issue Split From Silly Humor Thread
« Last post by 4wd on February 02, 2013, 08:02 PM »
It's actually different from a .mp3 and won't work if renamed to .mp3.

But I just did and it worked. I renamed your file from .wav to .mp3 and it worked fine. And it now supports tags. And the sound quality, no matter what file extension is used, is really bad, as I expected from the small file size.

But was this on a stock system with no extra codecs installed using the default Windows playback program?

eg. I can change it to .ogg, .mkv, .mp4, etc and it will still playback in MPC-BE without a problem on my W7 system.

Copy it across to an XP system with no codecs and it doesn't play at all, no matter what extension it's got.
3293
Living Room / Re: Mp3 File Format Issue Split From Silly Humor Thread
« Last post by 4wd on February 02, 2013, 07:53 PM »
It's actually different from a .mp3 and won't work if renamed to .mp3.  Once the codec is installed you can use it with system sound files.  Small sound files won't crunch down, which is true for just about any cruncher.  You can choose what level of crunching so as to not take too much away, but for mono files it really don't make a difference.
  Once the codec is installed, it works on anything that you have set your .wav files to be played with, whether that's Window Media Player, Windows Sound Player, or whatever.  The L3enc works in the background when called upon by the system.

Sounds more like it's just MP3 encoded data within a WAV container, (ie. it has a header of RIFF) - so renaming it to .mp3 won't work because the MP3 header info required by a true MP3 decoder is missing and anything that can only handle valid WAV files won't work because the data will appear corrupt.  Hence the need for a codec.

2013-02-03_12-49-04.jpg

MPC-BE plays it without a problem.
3294
Living Room / Re: Security Software Showdown!
« Last post by 4wd on February 01, 2013, 07:56 PM »
Maybe it's just me but where's the link on that site that lists every AV product they tested?

Or did they only test nine of them?
3295
Living Room / Re: silly humor - post 'em here! [warning some NSFW and adult content]
« Last post by 4wd on February 01, 2013, 07:41 PM »
Well what-da-ya-expect for a damn dollar ... Friggin lucky it didn't contain roadkill.

I'd take it over pink slime anyday  :P

As for including roadkill....not a problem;D
3296
General Software Discussion / Re: 2013 Version: Browser Wars
« Last post by 4wd on February 01, 2013, 07:27 PM »
  I get the best of all 3 worlds by using Avant Browser which incorporates Chrome, Firefox and IE.   :P

monitoring, memory leaks, insecurities ?

 ;D
3297
The compatibility-tester wouldn't advice me to install Win 8 on my outdated box, so I bought a DVD for $60.

I'll think you'll find that with your machine' spec, the Upgrade Assistant was wrong.

If it can tell me that it will install on my Atom N270 netbook, (and it runs quite well), then you could have saved $20.  ;)
3298
You can also go:

Pale Moon/Firefox/Waterfox->Help->Troubleshooting Information

Which will tell you what your *real* userAgent should be.
3299
Living Room / Re: silly humor - post 'em here! [warning some NSFW and adult content]
« Last post by 4wd on January 29, 2013, 07:58 PM »
 :-[   ;D
3300
Living Room / Re: silly humor - post 'em here! [warning some NSFW and adult content]
« Last post by 4wd on January 29, 2013, 07:36 PM »
You forgot QUIET and QUITE
Pages: prev1 ... 127 128 129 130 131 [132] 133 134 135 136 137 ... 225next