topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Wednesday November 12, 2025, 8:00 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 ... 37 38 39 40 41 [42] 43 44 45 46 47 ... 225next
1026
General Software Discussion / Re: Edit this Autoexec.bat?
« Last post by 4wd on August 30, 2017, 07:07 AM »
Step 1) Download UNetbootin, run it, select FreeDOS from drop-down menu, select USB drive, click OK.

Option 3, 4, and 5 on the install menu let you run it as a LiveCD - it will be *BASIC*, you will need to modify the image it to install any needed drivers (eg. CD, sound), etc.

IMG_20170830_220058129.jpg


Alternatively:

Download FD12FULL.zip, extract FD12FULL.img, write it to a flash drive using Win32DiskImager, boot it, select the language, then answer No - Proceed to DOS on the next screen.

Either way you will need to modify it to do what you want.
1027
Coding Snacks / Re: Open a folder with autohotkey assigning a hotkey combnation
« Last post by 4wd on August 29, 2017, 07:48 PM »
It'll be in the last place you look, so start there.
Thank you! Unfortunately it isn't there...

Then it obviously wasn't the last place you look ...
1028
Living Room / Re: For those with a CrashPlan...
« Last post by 4wd on August 29, 2017, 07:45 PM »
I agree with most of what f0dder says... but I also was wondering if there are any that have easy integration with a synology NAS.

IDrive has applications for Synology NAS' either for specific model or a universal version.  They have a free 5GB account so you can give it a try beforehand.
1029
Living Room / Re: News Article: Japan Unveils Green Train Faster Than Shinkansen
« Last post by 4wd on August 29, 2017, 07:37 PM »
Slightly relevant since @IainB un-necro'd the thread  :)

Elon Musk Just Shared Footage of a Hyperloop Accelerating to 200 Mph And Holy Crap
1030
Living Room / Re: Interesting "stuff"
« Last post by 4wd on August 29, 2017, 07:27 PM »
1031
Just tried Etcher x64 portable on my Win10Pro x64 laptop:

  • Continually tried to access the net to report usage statistics until told not to.
  • Tried to access the net anyway - no way to turn off.
  • On running: "Couldn't scan the drives: An unknown error occured" - even though every other program could see them fine.  This might be because I didn't give it net access which it shouldn't need.
  • When a bootable ISO was selected it told me it didn't appear to be bootable, (UNetbootin read/wrote it OK).
  • Couldn't select a output device because there apparently wasn't one "No removable drive detected" - despite every other program seeing it.

Easier? No.
Simpler? No, there are easier ways to do nothing.

Think I'll stick with UNetbootin.  :P
1032
Post New Requests Here / Re: Separate Out STOCK Symbols From Large Text File
« Last post by 4wd on August 28, 2017, 08:23 PM »
I was trying to end up with something along the lines of:

Code: PowerShell [Select]
  1. (Get-Content -Path .\test.txt) -creplace "\b[^A-Z]+\b" " " | Set-Content -Path out.txt

Would have left spaces between the remaining terms to make output formatting easier ... wasn't getting the RegEx though.

That was the theory anyway  ;D

Now I think about it I could have split the input easily:
Code: PowerShell [Select]
  1. [regex]::Split((Get-Content -Path .\test.txt),'[\s,\.\(\)]') | %{ if($_ -cmatch('^[A-Z]+$')){Write-Host $_}}

Output is OK except for outputting SBA and SBAC and duplicated entries.

@skwire: How did you stop SBA being passed through since SBAC is the stock code, (considering codes occur both inside and outside of surrounding brackets)?

You must be checking for duplicated entries also since there are multiple occurrences of JD and QQQ.

Was something to blow a few cobwebs out of my head anyway  :P

Addendum:
Duplicates removed courtesy of http://www.secretgeek.net/ps_duplicates
Code: PowerShell [Select]
  1. $hash = @{};[regex]::Split((Get-Content -Path .\test.txt),'[\s,\.\(\)]') | %{if($_ -cmatch('^[A-Z]+$')){if($hash.$_ -eq $null) { $_ }; $hash.$_ = 1}} > .\output.txt
Output
FWONA
FB
OLED
AAPL
SBA
SBAC
ABMD
BAC
DNB
CHK
HAL
XOM
RIG
DAL
AAL
GM
F
QQQ
TVIX
VIX
ETN
CSCO
JD
MOMO
BRCD

1033
Coding Snacks / Re: Open a folder with autohotkey assigning a hotkey combnation
« Last post by 4wd on August 28, 2017, 07:58 PM »
Btw, I came to this post to ask if someone can give me a hint how to find
the thesis I was working on (on real paper!). I've lost it somewhere.

It'll be in the last place you look, so start there.
1034
General Software Discussion / Re: Edit this Autoexec.bat?
« Last post by 4wd on August 28, 2017, 07:52 PM »
Did you boot it?

Option 3, 4, and 5 on the install menu let you run it as a LiveCD - it will be *BASIC*, you will need to modify the image it to install any needed drivers (eg. CD, sound), etc.

Otherwise:
  • use UNetbootin, Rufus, etc to install the FreeDOS 1.2 CD ISO to a USB drive and boot that.
  • install FreeDOS to a VM, the FD 1.2 USB install file includes a VM image.
  • use DOSBoxPortable instead.
1035
Post New Requests Here / Re: Separate Out STOCK Symbols From Large Text File
« Last post by 4wd on August 28, 2017, 12:19 AM »
@skwire: What regex did you use, (if you did)?

I had a quick look at making a single line PoSh command but my brain wasn't up to the nuances of stopping it grabbing every uppercase letter.  regardless of what followed :-\
1036
Living Room / Re: Decentralized Cloud Storage Services (Storj, Sia, etc.)
« Last post by 4wd on August 28, 2017, 12:10 AM »
I recently learned about these services and decided to allocate some of my HDD space for a Storj farm to get an idea of how it works. So I get paid a few dollars worth of the Storj cryptocurrency each month for renting out some space on my HDD.

Damn, no ARM implementation ... there goes that use of the RasPi  :-\

Check again:

https://docs.storj.i...re-on-a-raspberry-pi

But note that it needs 1+ GB of RAM. So it needs to be one of the later models of the RPi.

Got a RasPi 2B sitting here, I think it just found a job ... Thanks!
1037
General Software Discussion / Re: Edit this Autoexec.bat?
« Last post by 4wd on August 28, 2017, 12:00 AM »
Can u write or explain to me or make a short tutorial on how to make a bootable FreeDOS on USB Device.

Step 1) Download UNetbootin, run it, select FreeDOS from drop-down menu, select USB drive, click OK.

screenshot1.jpg

Short enough?
1038
Living Room / Re: Decentralized Cloud Storage Services (Storj, Sia, etc.)
« Last post by 4wd on August 27, 2017, 01:49 AM »
I recently learned about these services and decided to allocate some of my HDD space for a Storj farm to get an idea of how it works. So I get paid a few dollars worth of the Storj cryptocurrency each month for renting out some space on my HDD.

Damn, no ARM implementation ... there goes that use of the RasPi  :-\
1039
General Software Discussion / Re: COFEE
« Last post by 4wd on August 27, 2017, 01:38 AM »
CAINE the web give me "The web is not redirecting well...."

That's your browser and/or extensions, it works fine here on Vivaldi, Edge, Chromium, Firefox, Waterfox, SlimJet, Dooble, and K-Meleon.
1040
General Software Discussion / Re: COFEE
« Last post by 4wd on August 25, 2017, 11:18 PM »
COFEE is discontinued
I have an old installer.

The only version available to non-enforcement personnel is the one leaked back in 2009, you can get it via WikiLeaks.

There are other options, eg. SANS Investigative Forensic Toolkit (SIFT) Workstation and CAINE.
1041
Living Room / Re: For those with a CrashPlan...
« Last post by 4wd on August 24, 2017, 07:18 AM »
https://www.backblaz...ive-backup-solution/

Re. BackBlaze, unless they've substantially changed the way the backup works then by default it does a backup of everything.

You have to deselect what you don't want it to backup ... and you can't deselect the OS drive, which in my case is the easiest to restore.  Having to deselect what you didn't want a backup of was an absolute PITA when you have more than one HDD.
Plus if the machine doesn't access the account at least once every 6 months the backup is removed ... that is just wrong considering you're still paying for the service.
1042
Living Room / Re: Interesting "stuff"
« Last post by 4wd on August 23, 2017, 09:53 PM »
TSA explains inconvenient airport security rules

Flyers at some US airports are already being asked to remove their laptops and tablets from their baggage for a separate trip through the scanners.

Aren't they a little slow with this?

It's been the case at airports in Australia, UK, EU since about 2005 when I started lugging a laptop overseas, always have to remove it from carry on and scan it separately.
1043
Living Room / Re: For those with a CrashPlan...
« Last post by 4wd on August 23, 2017, 08:33 PM »
FWIW, iDrive is now doing 2TB and 5TB personal plans that allow you to HDD seed and HDD recover, another possible choice.

* Not recommending them one way or the other, do the research.
1044
Living Room / Re: Switzerland-based ProtonMail, yet another secure email service
« Last post by 4wd on August 23, 2017, 08:22 PM »
Oh, looky what I found:
List of Metasearch Engines

Thanks, just started using search404 (last on the list), much better than Google, DDG, or StartPage with more options (easily accessible search parameters, eg. music, files, etc), ability to download results, show where results came from, etc.

Very nice so far, my new default in all the browsers.
1045
Windscribe 60GB per month deal is back, this time the code is: GOTD60GB
1046
General Software Discussion / Re: Edit this Autoexec.bat?
« Last post by 4wd on August 16, 2017, 09:44 PM »
Split it over multiple lines is one option:

Code: Text [Select]
  1. @echo off
  2. set PATH=.;\;\LOCALE;C:\rar330;C:\editv12;C:\FILEMAN\FILEMAN
  3. set PATH=%PATH%;C:\FREEDOS\PSRINVAD;C:\freedos\dosedit\bin;
  4. echo Using US-English keyboard with US-English codepage [437]

or

Code: Text [Select]
  1. @echo off
  2. set PATH=.;\;\LOCALE;C:\rar330;C:\editv12;C:\FILEMAN\FILEMAN;^
  3. C:\FREEDOS\PSRINVAD;C:\freedos\dosedit\bin;
  4. echo Using US-English keyboard with US-English codepage [437]

NOTE: Works fine for normal DOS but who knows for FreeDOS.
1047
Living Room / Re: I need more english knowledge
« Last post by 4wd on August 16, 2017, 04:12 AM »
I've spoken English my whole life and it took me a bit of thinking to realize what they were looking for.

Yeah, same here. The first word that came to mind was 'despot', which also distracted me for a bit...

Meh, I always immediately think 'sexpot' when I see them mentioned.
1048
Living Room / Re: XP Password work around?
« Last post by 4wd on August 14, 2017, 08:01 PM »
There's also Kon-boot, the free version is OK for XP x86, it'll let you bypass the login.
1049
General Software Discussion / Re: Intelligent Time Zone display (online or local)
« Last post by 4wd on August 11, 2017, 07:47 PM »
oddly, it's almost three minutes out by my clock here, which I'm just after syncing with time.nist.gov

What if you use pool.ntp.org ?

It'll pick the closest to your location, I've got a 8-10 second delay between system and what that site shows.

I thought at some point someone mentioned a util that did something with the system clock, (measured the delay?) ?
@Miles when he was having trouble syncing to the college LAN or something?

EDIT: Here it is: One Shot System Time Sync

I was close  :P

2017-08-12 11_00_27.png
1050
Code: Text [Select]
  1. C:\>hashmyfiles.exe /file "K:\P4215986.xmp" /stext k:\test.txt && type K:\test.txt | clip

Code: Text [Select]
  1. ==================================================
  2. Filename          : P4215986.xmp
  3. MD5               : 0ada7ba33f926cebf313c066aaea30bf
  4. SHA1              : f3fdb14fecc0f27f09b74a203ec5f5be75886956
  5. CRC32             : 91167e98
  6. SHA-256           : 6d662695acc54955cf984b47dfb2b9aa077957c2155d739b263d2fcdecc99309
  7. SHA-512           : 52d2cf8849a99304ffafa75e56fff06861b83b87b98369166771e6655b8bdf7b3b40b0345a6ea5587bf14f3cb5b8901ecbe889191d82b5aa74ef01aada5b5f97
  8. SHA-384           : 769bd7d18c4321dc53779e7e4449edd459b8356ae138422c7db7e1928ff24396dc3faa17e7f019c91791a704f4042824
  9. Full Path         : K:\P4215986.xmp
  10. Modified Time     : 8/08/2017 16:39:44
  11. Created Time      : 8/08/2017 16:39:44
  12. File Size         : 1,692
  13. File Version      :
  14. Product Version   :
  15. Identical         :
  16. Extension         : xmp
  17. File Attributes   : A
  18. ==================================================
Pages: prev1 ... 37 38 39 40 41 [42] 43 44 45 46 47 ... 225next