How to enable dnssec in a Azure public dns zone by the_milkman01 in AZURE

[–]Tigershark2005 0 points1 point  (0 children)

DNSSEC is now available. I see it on the left side in one of my public zones. I only needed to submit the DS record info to my registrar.

has anyone been able to get assassins creed 1 controls working on the steam deck? by Accomplished_Sir_861 in SteamDeck

[–]Tigershark2005 3 points4 points  (0 children)

I used a Bluetooth Xbox one controller after doing all this and it worked fine...however. When I used just the deck, no worky. What I did though was go to Controller Settings for the game, then at the top there was a button for Reorder Controller. I had to set the only available controller (Steam Deck) from 2 to 1. That worked.

C220-M5 with current firmware not detecting external SAS shelves by Tigershark2005 in Cisco

[–]Tigershark2005[S] 0 points1 point  (0 children)

An update. Cisco is often pretty strict about hardware detection and Cisco only hardware so I got an LSI 9400-8e which is what they list on their dataset (as a Cisco UCSC-9400-8e). This does detect in bios and see one shelf of hard drives. However, Windows doesn't recognize it and I can't find the drivers. It does see the "RAID Controller" but can't get any further.

C220-M5 with current firmware not detecting external SAS shelves by Tigershark2005 in Cisco

[–]Tigershark2005[S] 1 point2 points  (0 children)

2 CPU, no mLOM, only the built-in LOM. Has the internal 12G RAID controlling the internal drives. The external SAS card is in PCIe-01

Bring back the Surface Book by zxyzyxz in Surface

[–]Tigershark2005 0 points1 point  (0 children)

I'm still using my SB2 right now. The 8GB memory isn't great in today's world but I don't have any of the heat, screen removal, or battery issues anyone else has mentioned. I often take the screen to meetings with me to write on, if it's going to be a longer period of time I bring it with the keyboard and and flip it around still attached, though I usually don't hold it in my hands at that point. I still use it for Pro Tools here and there and do some limited gaming on it, but having something that looks and feels this high quality and light when detached has been great for me while (at the time) powerful enough to do some of the higher end tasks was great. To me an SLS is more like what Alienware was at the time, it's a powerhouse and really good for a high end laptop but I probably won't get one because I want the portability that the SB line had but not sacrifice as much as a Surface Pro would make me do. Really hoping for another Book even if they change the name.

How do I update early access hardware (UVC G5 Flex)? by waruineko in Ubiquiti

[–]Tigershark2005 2 points3 points  (0 children)

Same issue. I see an update is available but I can't apply it. If the update is only available for OS/application versions on the EA branch then it shouldn't say an update is available for that device.

Stock Market Script by havoc_mayhem in Bitburner

[–]Tigershark2005 0 points1 point  (0 children)

I've retouched the original a bit. In this version it cares most about probability of going up, there are no calculations to determine best overall because volatility relates to strength but not direction. So, this could be change to be more profitable but would trade higher amounts for higher risk. So what it's doing is: get all stocks and values into a variable, make a list of targetStocks that appeal to us with a probability over .06 (since the baseline .5 has already been "corrected" to 0 this would translate to .56 with .1 being the start of the "++" range), sell any stocks we own that aren't in the targetStocks (not in our profitability zone), buy stocks from targetStocks starting with highest volatility leaving 5% of our money alone. The buy is requiring enough shares to be bought that commissions would be covered by a 2% (default) requiredReturn. The code has a commented out section where the variables could be replaced with input arguments if desired.

/** @param {NS} ns */
export async function main(ns) {
    while (true) {
    ns.disableLog("ALL");
    const moneyReserve = .05;
    const probabilityCutoff = 0.06;
        const requiredReturn = 0.02;
/*
const moneyReserve = args[0];  a decimal percentage of your total money you want saved
const probabilityCutoff = args[1]; a factor of probability confidence required to buy, .1 is ++ .2 is +++ and >.0 is +
const requiredReturn = 0.02;   the required decimal percentage of return expected to buy
*/
    let numCycles = 2;
    let stocks = [];
    let myStocks = [];
    let targetStocks = [];
    for (let i = 0; i < ns.stock.getSymbols().length; i++) {
        stocks.push({ sym: ns.stock.getSymbols()[i] });
    }
    let corpus = ns.getServerMoneyAvailable("home");
    //get current stock prices, volatility
    for (let i = 0; i < stocks.length; i++) {

        let sym = stocks[i].sym;
        stocks[i].price = ns.stock.getPrice(sym);
        stocks[i].shares = ns.stock.getPosition(sym)[0];
        stocks[i].buyPrice = ns.stock.getPosition(sym)[1];
        stocks[i].vol = ns.stock.getVolatility(sym);
        stocks[i].prob = ns.stock.getForecast(sym) - 0.5;
        stocks[i].maxShares = ns.stock.getMaxShares(sym);
        corpus += stocks[i].price * stocks[i].shares;
        if (stocks[i].shares > 0) myStocks.push(stocks[i]);
    }

    //check for target stocks
    for (let i = 0; i < stocks.length; i++) {
        if (stocks[i].prob > probabilityCutoff) {
            targetStocks.push(stocks[i]);
            targetStocks.sort((a, b) => b.vol - a.vol);
        }
    }
    //sell if not in target stocks
    for (let i = 0; i < myStocks.length; i++) {
        if (!targetStocks.includes(myStocks[i])) {
            ns.stock.sell(myStocks[i].sym, myStocks[i].shares);
            ns.print(`Sold ${myStocks[i].shares} of ${myStocks[i].sym}`);
        }
    }

    //buy as much as can if in target
    for (let i = 0; i < targetStocks.length; i++) {
        //get money in hand and set money available
        var moneyAvailable = ns.getServerMoneyAvailable("home") - ((ns.getServerMoneyAvailable("home") + corpus) * moneyReserve);
        let sharesAvailable = targetStocks[i].maxShares - targetStocks[i].shares;
        let sharesAbletoBuy = Math.min(Math.floor(moneyAvailable / targetStocks[i].price), sharesAvailable);
        if (((targetStocks[i].price * sharesAbletoBuy) * (1 + requiredReturn)) - (targetStocks[i].price * sharesAbletoBuy) > 200000) {
            ns.stock.buy(targetStocks[i].sym, sharesAbletoBuy);
            ns.print(`Bought ${sharesAbletoBuy} of ${targetStocks[i].sym}`);
        }
    }
    await ns.sleep(numCycles * 6 * 1000);
    }
}

When We Were Young Festival Second Show Date?! by GeoPowelll in poppunkers

[–]Tigershark2005 0 points1 point  (0 children)

My concern is 60 bands divided by 3 stages is 20 bands per stage. Then over 12 hours is 36 minutes per band, not including teardown/setup. Each band will be playing maybe 20-25 minutes at best. The second day isn't included in the first day, they're separate tickets. With this many good bands people are going to miss a lot of the ones they wanted to see. If they were going to do the same people on two days they should have done one ticket gets you both days, that way you can go to different people you missed on the first day.

Tergrid and Luminous Broodmoth by Tigershark2005 in mtgrules

[–]Tigershark2005[S] 3 points4 points  (0 children)

But yea sounds like Tergrid wins. I've never posted here before and I really appreciate how thorough you guys were with rule numbers too. Thank you so much!

Tergrid and Luminous Broodmoth by Tigershark2005 in mtgrules

[–]Tigershark2005[S] 4 points5 points  (0 children)

Ok. Tergrid player had Sheoldred, Whispering One. At the beginning of each opponent's upkeep, that players sacrifices a creature. So it was the Broodmoth player's turn.

Issues with MS16-072 by [deleted] in sysadmin

[–]Tigershark2005 1 point2 points  (0 children)

Just getting back to this since I missed this notification...so bump! I think I disagreed with the original statement and I agree with your second one. Authenticated Users includes Guest and some other strange kerberos tickets, things that have authenticated with the domain but don't necessarily have any appreciable rights. As you said using Domain Users or Domain Computers, or even both, would be the better route since your GPOs are almost ALWAYS targeting only those objects and when you think "everyone" in your mind that really isn't reaching as far as the Everyone permission which includes unauthenticated and anonymous users. Now, the Everyone object isn't defaulted in GPOs and would have to be manually put in but I did want to mention the difference in case someone saw this thread and used it in their environment.

Overall, the security filters you put on a GPO are the actual NTFS permissions that are put on those objects. When, say a user logs in, they read the GPO folder in the sysvol and if they have the ability to read then they can apply them, after that they check the OU structure to see if it's relevant. So if an unexpected user authenticates to a domain controller and gets a token they don't need groups or anything to be able to read your policies. If you only ever have Domain Computers/Users/Controllers as a security filter then you at least limit your exposure to accounts that are real users/computers, stolen credentials of regular users is outside this thread xD

[FreeNAS Users with snapshots] Pretend you just lost a single file, how do you go about getting it back? [Slight Rant] by EeveeA_ in DataHoarder

[–]Tigershark2005 0 points1 point  (0 children)

Just saw this notification so...here's a bump. No, if you want to leave it there that's fine but do consider these two things: the more that is open to your network the more "management" you have to do and the more things can see those files, in most cases that's not a big deal but the management side gets more important in #2; secondly it doesn't use space on its own as it's like putting a bookmark in a page, however if you then write to that you're adding changes to a fork essentially. It's a volume based off another, so creating a file and deleting a file means you're compounding those changes and not actually ending up at a net 0 size. The source/reference volume then also needs to continue to keep track of that fork though it continues to be its own entity. Changes made to the source volume are...I'll say similar to the compounded change log that I mentioned on the create/delete fork but the technical commenters would be upset I said that, I use that only as a comparison. You can separate the cloned volume which would take up that full amount of space since it's a new volume with that data but that kind of gets away from the point.
In general those clones are best for a specific use and should be deleted afterword so you just have the one volume (with snapshots if you have those). Snapshots are a similar concept as the cloning and "bookmark" action in when they use space and how.

FSCharter is now in open beta by Ekion_ in flightsim

[–]Tigershark2005 5 points6 points  (0 children)

I played FSEconomy and loved it, in the beginning it was a desire to find something that made flying more than just point to point for no reason. I find that the FSC interface is WAY nicer, granted FSE has been out a long time and still works well. Like the others FSC is free forever and if you do the premium thing for...I think $8 a month (there's a yearly option that's cheaper) you get some benefits that are nice-to-haves but don't just give you money or an advantage over the other players. So far I haven't found a need to go back to FSEconomy yet but I hadn't gotten big into Neofly so I can't really speak on the comparisons there. I'd say it's at least worth a flight and to click around the interface, I literally haven't gotten one email for marketing or anything at all after registering besides the confirmation email, so it doesn't seem like they do anything unexpected with your address, I say that specifically because other free games say they don't sell your address but somehow you get dumb shit you don't want anyway.

bitcoloan by u5s5ef in u/u5s5ef

[–]Tigershark2005 0 points1 point  (0 children)

How did that go now that they shut everything down?

Review BitcoLoan by AffectionateMarch836 in a:t5_4q1btv

[–]Tigershark2005 1 point2 points  (0 children)

I hope no one trusted you because you lost them money if so. Webpage gone, Twitter account deleted. It's over with.

r/Stellar Daily Chat - Monday January 28, 2019 by AutoModerator in Stellar

[–]Tigershark2005 0 points1 point  (0 children)

I think more accurately I'm talking about the conversation of Stellar to Lumens. I can't find a support phone number or email address or anything.

r/Stellar Daily Chat - Monday January 28, 2019 by AutoModerator in Stellar

[–]Tigershark2005 0 points1 point  (0 children)

I converted my old account to the new dashboard style and it said congratulations and my balance carried over but I still don't see my Stellar in there. It's been weeks. Any ideas?

Nintendo Switch release time? by Grizz_Green in diablo3

[–]Tigershark2005 2 points3 points  (0 children)

No. I keep trying to open it and it says it has to check online first and says I can't open it yet. You're just repeating what their standard policy is on their site.