topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Friday September 18, 2026, 10:18 pm
  • 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 2 3 4 5 6 [7] 8 9 10 11 12 ... 404next
151
Synchronize It! and Compare It! - superb GUI design, I still use them to this day for small simple jobs - one can still buy them, they still work, but unfortunately not upgraded for many many years. Synchronize It! can even copy sparse files, which is extremely rare.

Have they been forgotten? I thought they were still being sold? I use them all the time.

https://www.grigsoft.com/wincmp3.htm
152
DC Gamer Club / Re: Valve Announces Steam Deck: A Handheld PC
« Last post by wraith808 on May 26, 2022, 12:42 PM »
Seeing that the 512GB is $650 and the laptop I'm looking at is ~$1100 and will run the same games+ with the only difference being 256GB instead of 512GB is what's making me look at the laptop option.
153
DC Gamer Club / Re: Valve Announces Steam Deck: A Handheld PC
« Last post by wraith808 on May 25, 2022, 08:20 PM »
So you're going to possibly purchase both the 64GB and 256GB?

I've been thinking about it still. Trying to decide between getting a new laptop and this. The laptop costs more, but would have more applications.
154
Living Room / Re: Recommend some music videos to me!
« Last post by wraith808 on April 29, 2022, 08:31 PM »
Ah! The Charismatic Voice channel! One of my favs. Elizabeth is an utter gem in addition to being a knowledgeable vocal coach. She just recently released her own album. 

Not too hard on the eyes either.  


Agreed on all counts!
155
Living Room / Re: Recommend some music videos to me!
« Last post by wraith808 on April 26, 2022, 10:40 AM »
Really like Home Free. The solo stuff by the bassist is good to- all of them Avi Kaplan, Tim Foust, and Geoff Castellucci
156
Living Room / Re: Recommend some music videos to me!
« Last post by wraith808 on April 20, 2022, 01:29 PM »
 :Thmbsup: Thanks for that!
157
I'm looking for a text editor that does auto-completion for markdown links (that is, filenames) in the same project? This must exist, but I haven't found it.

Visual Studio Code with the Foam Extensions does this. I have it running currently.
158
DC Gamer Club / Re: Valve Announces Steam Deck: A Nintendo Switch-like PC
« Last post by wraith808 on April 06, 2022, 09:54 PM »
I might pass on this. Have to think hard before August comes.

Just read a thread on reddit that threw a dash of cold water on the purchase. Not because of the device, but taking a hard look at my use case.

https://www.reddit.c...mdeck_after_a_month/

I don't travel, I don't commute, and I have a good gaming PC. Add to that the fact that I'm gaming a lot less these days, and it's starting to seem like a FOMO situation rather than the device being something that fits me.
159
DC Gamer Club / Re: Valve Announces Steam Deck: A Nintendo Switch-like PC
« Last post by wraith808 on April 06, 2022, 07:31 AM »
Using various datasets:

mooV2 (Wed Apr 06 2022) - 3-26-22-moo
Estimated Order Date: Mon Aug 15 2022

mooV2 (Wed Apr 06 2022) - 2-11-22-hoxeel-filtered
Estimated Order Date: Mon Aug 08 2022

160
General Software Discussion / Re: WinPatrol appears dead
« Last post by wraith808 on April 04, 2022, 04:46 PM »
That's the thing about it- WinPatrol combined a few products into one. Still running it, though I am going to take a look at the suggestions in this thread.
161
Community Giveaways / Re: Humble Bundle leftovers
« Last post by wraith808 on April 03, 2022, 09:40 AM »
Someone bought the same bundle 😉

I think a lot of us did.  ;D

I don't have any specifics, but a lot of them are just going to be sitting there. If Deo and 4wd are out of something, ask me.
162
Living Room / Re: April Fools!
« Last post by wraith808 on April 01, 2022, 09:28 AM »
I hate that April Fools is a thing. I hate even more that it's become something that companies buy into.
163
Developer's Corner / Re: Searching and updating XML file in PowerShell
« Last post by wraith808 on March 23, 2022, 01:26 PM »
In case anyone else is wondering, the problem was the assumption on the path.

I added

Code: PowerShell [Select]
  1. $outPath = (Resolve-Path odata.xml).Path
  2. # saves odata.xml in your current working directory
  3. $xmlConfig.Save($outPath)

and it started working.

Thanks for your help!
164
Developer's Corner / Re: Searching and updating XML file in PowerShell
« Last post by wraith808 on March 22, 2022, 05:59 PM »
The problem with that is that I don't want that node, I want the parent variable node so I can update the development value. I was under the impression that wouldn't help me, but I'll try it.

So I tried it, and it did indeed give me the subsection I was looking for- how would I then get the development subnode to change it?

And thanks for the help... this has been stumping me for a few days.

UPDATE: I think I found out how to modify the node, but even though when I expand it shows the node as modified, when I save, it never gets to the file.

Code: PowerShell [Select]
  1. [xml]$xmlConfig = Get-Content "odata.xml"
  2. $validNodes = $xmlConfig | Select-Xml -XPath '//variable[id="odata-keys"]'
  3. if ($validNodes.Count -gt 0)
  4. {
  5.   $validNodes.Node.development = "0"
  6.   $xmlConfig.Save("odata.xml")
  7. }

What am I doing wrong now?
165
Developer's Corner / Searching and updating XML file in PowerShell
« Last post by wraith808 on March 22, 2022, 07:54 AM »
I have the following bit in a Powershell script:

Code: PowerShell [Select]
  1. [xml]$xmlConfig = Get-Content "odata.xml"
  2. $validNodes = $xmlConfig | Select-Xml -XPath '//variable' | %{$_ | ?{((($_.Node.Property.Name -eq "id") -and ($_.Node.Property.Value -eq "this-is-the-node")))}}
  3. if ($validNodes.Count -gt 0)
  4. {
  5.     $validNodes.development = $encryptedcredentials
  6. }

And it's not returning valid nodes, even though the node is there.

The XML file looks like the following:

Code: Text [Select]
  1. <configuration>
  2.   <variable>
  3.     <id>this-is-not-the-node</id>
  4.     <development>2</development>
  5.     <staging>0</staging>
  6.     <production>0</production>
  7.   </variable>
  8.   <variable>
  9.     <id>this-is-the-node</id>
  10.     <development>2</development>
  11.     <staging>0</staging>
  12.     <production>0</production>
  13.   </variable>
  14.   <variable>
  15.     <id>this-is-not-the-node-either</id>
  16.     <development>2</development>
  17.     <staging>0</staging>
  18.     <production>0</production>
  19.   </variable>
  20. </configuration>

I want to select the valid node, then edit the value for development under that node.

Any ideas what I'm doing wrong?

166
DC Gamer Club / Re: Valve Announces Steam Deck: A Nintendo Switch-like PC
« Last post by wraith808 on March 16, 2022, 07:37 AM »
Whereas mine used to say "After Q2 2022" it says "Q3 2022" now. That might not seem more specific than before, but for some people, they see "after Q3 2022" so that tells me I can expect to get mine sometime between July-September.

There was a converter from what we had before to what we have now, and the timeframes, and your assumptions on July-September line up with that.
167
Though I use VS Code (and Sublime Text, though vanishingly as VS Code has gotten better), the one I really like lately is Deepdwn. I'll have to try to give an overview of why when I get a chance.
168
DC Gamer Club / Re: Valve Announces Steam Deck: A Nintendo Switch-like PC
« Last post by wraith808 on February 23, 2022, 01:01 PM »
It seems Valve have released an official library compatibility checking page here:

https://store.steamp...om/steamdeck/mygames
Nice! Doesn't seem to pull all of your library though...
169
I don't know it, but it seems very different to me. And complex.

It's not. It's just another variation on Kanban. The difference is Kanban is continuous where Scrum is iterative. There are complications you can add to it (same with Kanban), but at its root it is simple.

When I first started on my project for my world, I decided on an iteration length (2 weeks). I found high level things I wanted to get accomplished. I prioritized them, then broke them down into stories and pointed them by seeming effort required. Then I looked at what I could get accomplished in two weeks, going in priority order.

At the end of two weeks, I looked at what I'd done and delivered, and how many points it was. That helped me to see what I could get done in an iteration. Rinse and repeat, loading the backlog with things that I come up against as I went along. It helps me to plan and reach deadlines, but be agile in how I do it.

Given, I do it at work, so it's not a stretch. But I also have done Kanban at work, and it's not a lot different other than instead of iterations, you have WIP limits based on the size of the stories rather than a bucket to fill every iteration.

Kanban is generally used for support work, where Scrum is used for Greenfield development, but either can be used for either.

A good video on using it to develop worlds:

170
I think my Workflowy kanban should do this. Much prefer kanban to corkboard.

I'm using Scrum, so it works for me. I just need my backlog there, and a section for the current iteration.
171
DC Gamer Club / Re: Valve Announces Steam Deck: A Nintendo Switch-like PC
« Last post by wraith808 on February 17, 2022, 06:52 PM »
Thanks! Very useful!
172
you might want to also look at writage
Thanks. Yes. Want would be putting it too strongly.
I don't like markdown, but it seems hard to avoid it in plaintext, and I have never liked Word - but docx is even more ubiquitous and seems pretty robust across programs too. So do I want a bridge?

I did think of it, and installed a trial to look at it. Then disconnected it from Word, so I could be sure I was seeing Word rather than Writage.
I'm genuinely conflicted about it.
I even looked at the outliner app (DocxManager) to see if that would bring anything extra  But that seemed expensive without offering anything obviously useful to me.

One attraction was FocusWriter - which has a very limited set of formatting option, but quite sufficient for me in writing mode.
And always preferred Atlantis over Word in general use. I don't really like the way it manages Headings, but it's no wore than Obsidian. Word itself seems better.
Typora imports and exports docx quite happily.
It feels as if that will cover what Writage does. But I'm not sure.

The bit where Word stands out is the Review stage, but I don't know Writage adds anything to that.
Happy to hear any views if you have experience of it. Else I think I'll wait and see how it goes.

I'm not entirely reconciled to the prospect of using Word more, even though it appears to make sense.

So I use writing outliner (the precursor to DocxManager) and Writage. Writing Outliner helps me keep projects straight and has the corkboard from Scriviner, but in Word where I have to do my freelance work. Writage lets me work in md when I want to, copy the formatted text to a Word document, and copy and paste Word formatted text into my markdown document. It's pretty seamless going from plain text to word which is cool as I don't like doing long form writing/editing in Word unless I have to.
173
Not sure if this has been mentioned yet, but if you're using Word and Markdown, you might want to also look at writage (https://www.writage.com/)
174
N.A.N.Y. 2012 / Re: NANY 2012 Release: Ethervane Echo
« Last post by wraith808 on February 14, 2022, 07:04 PM »
Let us know what happens if you actually run that  :tellme:
I did. Works fine -- should I be wary of it for some reason, or are you just wondering how it works on a modern version of Windows?
(Seems to work fine on Win 10)

I'm wary of the fact that softpedia repackaged it with an installer and it's not an archive. Just wondered if it installed anything else.
175
N.A.N.Y. 2012 / Re: NANY 2012 Release: Ethervane Echo
« Last post by wraith808 on February 14, 2022, 02:11 PM »
Let us know what happens if you actually run that  :tellme:
Pages: prev1 2 3 4 5 6 [7] 8 9 10 11 12 ... 404next