Recent content by Crax

  1. C

    Are Windows Phones all but dead?

    Who told you that about the calendar? I have 8.1 on an Icon and also had 8(and 7 briefly). My calendaring has always worked great. My wife has an android and we pretty much use just a shared google calendar. I have my google account synced with my phone and use both the calendar and gmail...
  2. C

    Darkest Dungeon: Turn-based Gothic rogue-like dungeon crawler

    I've found it pretty good so far, although a bit repetitive. I beat a couple of the first bosses last night and have 3 guys at level 3 and 2 more almost there. Had another at level 2 that would have leveled at the end of the mission, but she died with the necromancer boss at 3 hp's after two...
  3. C

    From Full-Time to Contract Developer?

    That is pretty much my situation as well. I've been doing full time development(both web and windows) since around 2004/5 in .NET(also did some Delphi before that). I'm currently "Lead Web Developer" at my job. We have a lot of older code(web forms) and it's a struggle to try and get some...
  4. C

    From Full-Time to Contract Developer?

    Good luck to you. If I did have a wife/kids and dire need of medical, I'd like to do the same thing. I'm probably too chicken to do it though. What kind of development do you do?
  5. C

    Help me track down repeating Crash?

    Just something to try, but I had a somewhat similar issue a few years ago and it turned out to be bad ram. If I was just browsing the web or doing regular stuff everything was fine, as soon as I'd start to game though, I started having issues with crashes, not necessarily blue screens. Took...
  6. C

    Powershell and Security Event Logs

    The IF statement is checking the Name property. It's only doing the #text part when I already know I'm on the right object that has TargetUserName for the name property. Once I have that, the line inside the IF statement is putting the text for the value of that field I'm adding. To break...
  7. C

    Powershell and Security Event Logs

    Not the best way as I'm sure you could use XPath or something on the eventXML to query just what you wanted, but I just looped through all the fields and added the one I wanted. Using the same $EventLogQuery you already have defined - $allEvents = Get-WinEvent -FilterXml $EventLogQuery...
  8. C

    Codec priority settings for C# softphone

    I haven't done that specifically, but according to the docs, you should be able to loop through all the codecs and disable/enable them. I'd guess you could disable them all except the one you want if it's available, if not than enable the next one that is in your list...
  9. C

    Decommissioning a phpBB forum

    +1. Make a local backup copy of your folder containing all your phpbb files /forum or whatever the folder where it is installed is. I'd leave the database myself, but you could get rid of that as well. Any of the security holes in phpbb are going to be with the files themselves, so if you get...
  10. C

    Home VOIP setup

    Nice. I have freepbx running in a VM, but it might be nice to have a dedicated small device. This would just be for the house, so probably around 3-5 phones max. Sounds like the PI or beaglbone would be a good option
  11. C

    Great Idea Or Dumb Invention?

    :( I work in an open office. We didn't use to have one, but once they moved floors and redid the layout, the Dev/QA is area is open. Everyone else is at least cubes. I hate it.
  12. C

    Home VOIP setup

    What does the rasberry pi do?
  13. C

    Home VOIP setup

    I've done the same. I had a sip based IVR project I was working on at one time for work and setup a callcentric NY number with freepbx and then had a softphone, the IVR software, and a cisco 7960 all hooked up. Callcentric quality seemed pretty decent and they have pretty good documentation as...
  14. C

    Angular.js: What's the best way to do this?

    I'm pretty new to angular so this is just my feeling on it, I'm not a guru or expert by any means. In this case I would think about using a shared data service. You could combine the service with some eventing as needed. Make sure to be careful about using $broadcast vs $emit. I'd be...
  15. C

    Power Shell - Write-Host & Out-File

    You should be able to just do a .ToString() on the $rt when combining them into $strCombined. Here's a sample of what I did which worked fine. I just have the write-host line in there to see what I was going to be writing to the file before I wrote it so I could double check it when I opened...
Back
Top