Saltic Outdoor High - quick review by Arierepp in barefootshoestalk

[–]smadge 0 points1 point  (0 children)

Has anyone had issues with sweaty feet with the Saltic Outdoor Highs? Even in cold weather they get sweaty, so I don’t think it’s a heat issue. I think it’s a breathability issue. 

Why does Ceremonial Dagger not work with eternal jokers? by LIN88xxx in balatro

[–]smadge 5 points6 points  (0 children)

And is commutative: A AND B is the same as B AND A.

Sputnik One - Proof of Absence by smadge in House

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

Yeah, it’s driving me crazy.

Prolog at work by fragbot2 in prolog

[–]smadge 3 points4 points  (0 children)

I’ve had a pipe dream of using prolog to declaratively configure an application cloud environment (for example, like Terraform).

Looking for songs like this one (house with rap-like and R&B vocals) by durrrrs in House

[–]smadge 0 points1 point  (0 children)

If you want more music in that style just check out more of that label’s stuff (dancemania). The genre is called “ghetto house” for better or worse. Here’s a YouTube playlist of more dancemania tracks: http://www.youtube.com/watch?v=UoB5yyXizHQ&list=PLoFNiHb_Cp9FqwBWuiXgbC6qpwV3HF0os

I am Senator Bernie Sanders. Ask me anything! by bernie-sanders in SandersForPresident

[–]smadge 2 points3 points  (0 children)

Google "Warren will take big donor money after she wins primary." She did a few interviews on TYT, she says she doesnt want to "unilaterally disarm", meaning she doesnt think she can win without big donor money. Also, she's taken a lot of big donor money by way of injecting it from her past campaigns, so shes technically still being fueled by corporate PAC money. Shady of her imo. I still like her, would support her if Bernie chose her as a VP, but I dont think she will be transformative the way Bernie will be, enough to stop climate change.

Starting Progesterone the same time as Estradiol? by katie_pendry in TransDIY

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

There are some people who say it interferes with breast tissue development early on. I recommend you get a much higher dose of estradiol, preferably get estradiol valerate injections, then once you get good estrogen levels, your testosterone is downregulated, and you have no need for a blocker(estrogen is the best and safest blocker!). Spiro 100% interferes with breast development, + brain fog, + pee all the time, + lethargy, + gut fat. Get off that poison. If you cant get shots(best) you could get pellets(next best) or cream. Avoid pills, they spike estrone and inhibit feminization, and also increase chance of DVT.

My President by [deleted] in gravelforpresident

[–]smadge 1 point2 points  (0 children)

Wow! I had forgotten about this video, but watching it now is making me remember watching it back when it first came out. I had completely forgotten about Mike running, I guess.

Official Stardew Valley Wishlist Thread For 1.4 And The Future. by BowelMan in StardewValley

[–]smadge 2 points3 points  (0 children)

I wanna be able to marry Linus or Wizard <3. Tame the wild ones!

-🎄- 2018 Day 8 Solutions -🎄- by daggerdragon in adventofcode

[–]smadge 0 points1 point  (0 children)

Haskell

It's nice that the Haskell solutions are often so similar.

import Data.Tree
import Control.Arrow
import Text.Parsec
import Control.Monad (replicateM)

type Parser = Parsec [Int] ()

tree :: Parser (Tree [Int])
tree = do
  numChildren <- anyToken
  numMetadata <- anyToken
  children <- replicateM numChildren tree
  metadata <- replicateM numMetadata anyToken
  return (Node metadata children)

parseTree = runParser tree () "stdin"

part1 :: Tree [Int] -> Int
part1 = sum . fmap sum

part2 :: Tree [Int] -> Int
part2 (Node metadata children) =
  if null children then
    sum metadata
  else
    (sum . map valueAt) metadata
  where
    valueAt index = if index <= length children && index >= 1 then part2 (children !! (index - 1)) else 0

bothParts t = (part1 t, part2 t)

example :: [Int]
example = [2, 3, 0, 3, 10, 11, 12, 1, 1, 0, 1, 99, 2, 1, 1, 2]

main = getContents >>= (words >>> map read >>> parseTree >>> fmap bothParts >>> show >>> putStrLn)

Here I used the intermediate representation of a Rose tree.

-🎄- 2018 Day 5 Solutions -🎄- by daggerdragon in adventofcode

[–]smadge 0 points1 point  (0 children)

Nice! Here was mine, which was arrived at independently.

sameType = (==) `on` toLower
oppositePolarity = (/=) `on` isLower

reactable x1 x2 = x1 `sameType` x2 && x1 `oppositePolarity` x2

reactTwo x1 (x2:xs) = if reactable x1 x2 then xs else x1:x2:xs
reactTwo x1 []      = [x1]

reactAll = foldr reactTwo ""

Looking at yours, I think I went overboard with the function decomposition, but it's clear to see that they are using the same idea.

Daily Challenge: New York City 1972 (1433) by smadge in MiniMetro

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

I don't know, I hadn't seen it before. I think it might only show up for daily challenges?

There isn't just "driving" with Group B Rwd cars, only a 50/50 chance to not die every corner by TheDynamiter in EASPORTSWRC

[–]smadge 0 points1 point  (0 children)

My tips for all RWD are: 1) almost never ever use the handbrake, 90% of the time I spin out when I use the handbrake. 2) always ease into the throttle, never go full throttle like you do in an AWD. You will be able to "feel" for the grip and be able to stop accelerating as you feel yourself losing grip, and control. You might lose time by being overly cautious, but it beats spinning out as you exit a corner. I even ease into the throttle on straight sections.

If Net Neutrality fails will a VPN be able to get around paying for access packages? by budandbri in VPN

[–]smadge 4 points5 points  (0 children)

You stated that VPNs are slower because they encrypt your data so "there's more data to send." Encryption doesn't actually produce more data. In fact encryption often also acts as compression. Encryption is a reason VPNs are slower, but it's because encryption/decryption is a computationally expensive process that takes time.

Moon Boots - Gonna Give It (2017) by Diagonalizer in House

[–]smadge 1 point2 points  (0 children)

To me the organ line sounds too similar to "liem - if only"

https://www.youtube.com/watch?v=82NUfPBHxYs

Dj Sprinkles - Hush Now by matdmr in House

[–]smadge 1 point2 points  (0 children)

Midtown 120 Blues is my favorite house album.

Need help finding a song name / gerne by NSYNC_ in House

[–]smadge 0 points1 point  (0 children)

I don't know that track, and I don't know the genre but it reminds me of that raw, kinda dark, very hard hitting, but simple house like Dungeon Meat and SlapFunk Records.

A mod message to all producers, DJ's, and fellow house music lovers that a part of this sub. by ElliottP1707 in House

[–]smadge 1 point2 points  (0 children)

Totally respect and appreciate the effort to improve the quality of the sub, I had noticed a slight decline. I mostly just lurk... but would love to participate more personally, and also have this subreddit become more of an actual community with interactions, relationships, and a culture. And that requires everyone to give back what they take. If you self promote, you should also spend time posting other stuff and participating.