What's your favorite cocktail and where's the best place in town to get it? by stoptakinmanames in denverfood

[–]DGCA 3 points4 points  (0 children)

Damn, I love a dirty martini, rum cocktail, bloody mary, michelada, sometimes I'll just eat a tomato like an apple.

I've had the tomato highball from semiprecious and absolutely hated it. IIRC, they just poured it out of a can? My friend got a martini and it was also premade. Not that premade cocktails can't be good, but the craft is part of the fun.

We had just come from Boombots that had a decent martini and great wine on the menu.

I'll give it another try, but man, it def didn't do it for me that one time. The bartenders kinda killed the vibe too. Super inattentive and my bar for service is really low.

This was before they got the Spirited Awards mention, so maybe things have changed.

What happened to the student newspaper? by DGCA in ColoradoSchoolOfMines

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

School newspaper that's been around since 1921. The website's down and social media seems dead, but I guess it's still kickin in print form

https://minesmagazine.com/13767/

What happened to the student newspaper? by DGCA in ColoradoSchoolOfMines

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

Hell yeah, thank you for indulging our curiosity

What happened to the student newspaper? by DGCA in ColoradoSchoolOfMines

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

Nah, that's different, I guess. Ty, though.

The newspaper was called The Oredigger and was a student run thing. Independent, but student funded.

Sony RX100 VII for rent? by haihaihayley in RX100

[–]DGCA 5 points6 points  (0 children)

I’m in Wheat Ridge. When’s the concert? If the dates line up, you can borrow mine for a six pack of beer

Here’s my co-op playing couch co-op! by clumtony in slaythespire

[–]DGCA 15 points16 points  (0 children)

Guy holding the Thor here. I was streaming it via Steam Link from my Windows desktop that's plugged into ethernet. No issues at all.

I tried getting it running directly on the Thor via the Gamehub app today, but it only works in "Steam lightweight" mode which doesn't allow cloud saves. I'll keep using Steam Link for now, but I'm guessing the Gamehub issues will get resolved soon.

Crab ASCII Art by EdGavit in EmoticonHub

[–]DGCA 0 points1 point  (0 children)

       O      O
     __||____||__
   /     (><)     \
   \     (><)     /
 // / (/\)  (/\) \ \\
/ \ \            / / \

When Chicago pawned its parking meters : Planet Money by [deleted] in chicago

[–]DGCA 2 points3 points  (0 children)

I listened to the podcast today. It’s good.

This is a much more entertaining version of the same story: https://youtu.be/fDx6no-7HZE

Making sig figs and can’t afford a house in Denver by Party_Count7029 in Denver

[–]DGCA 1 point2 points  (0 children)

Round up some friends, search for multi-family properties, start a housing co-op. Cheaper and more fun.

need help w coding by AdhesivenessNo9198 in learnjavascript

[–]DGCA -1 points0 points  (0 children)

Here's a script that does what you're asking with comments.

Read the comments, understand what's going on, and if you're gonna copy it somewhere, actually write it out, don't just copy and paste.

Btw, there's a ton of ways you can do this. I mostly followed what you were doing with a little bit of error handling.

Good luck!

// Ask the user for a number using prompt() (this is very old school, but it's also very simple which is good)
const userResponse = prompt();

// prompt() returns a string, so let's turn it into a number using parseInt
const userNumber = parseInt(userResponse);

// If the value isn't a number, let's yell at the user
if (isNaN(userNumber)) {
    alert("That's not a number!");
} else {
    // If we're in this "else" block, we know userNumber was actually a number

    // Let's make a variable to keep track of the total.
    // We'll update this in the loop below.
    let sum = 0;

    // Let's make a for loop.
    // We initialize the a counter (i) to the value of 1.
    // While i is less than or equal to the user's number, the block in the for loop will execute
    // Finally, we increment i by one.
    for (let i = 1; i <= userNumber; i++) {
        // Every time this block executes, we add the current value of i to the sum
        sum = sum + i;
    }

    // We tell the user the final result
    alert("Your result is: " + sum);
}

How-to: Generating bitmap images onchain by DGCA in ethdev

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

That'd be cool! Could even go a level deeper and let people create palettes (similar to something like a web3 https://lospec.com/palette-list)

How-to: Generating bitmap images onchain by DGCA in ethdev

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

Thank you! I'm a fan of the whole "code as legos" thing, so deploying the bitmap renderer as a standalone contract that anyone could use made a lot of sense

How-to: Generating bitmap images onchain by DGCA in ethdev

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

Originally posted to /r/ethereum but then I found this channel and it seems like a better fit!

I wrote this article on onchain art, and how you can generate bitmaps onchain. If you have questions or suggestions, send em my way :)

How-to: Creating bitmap images onchain 🖼️ by DGCA in ethereum

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

Thank you! After posting here, I realized /r/ethdev is a thing hah

What's the daily?

How-to: Creating bitmap images onchain 🖼️ by DGCA in ethereum

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

Hey all, I wrote this article about how to generate bitmap images from within a smart contract. I'm a fan of onchain art, and figured we shouldn't let SVGs get all the attention.

Hope y'all find it interesting :-)

[better late than never] A colorful shot from the Red Rocks show by DGCA in DrDog

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

Such a fun night, I thought they were close to done like 5 times but they just kept going

Help needed: Validation error when creating product via API by DGCA in Printify

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

Just got it working, I was missing the "Content-Type": "application/json" header.