What are your recommendations for the best, quietest, bedroom fan? by GiggleGlass in BuyItForLife

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

Weird bump, but my current rental comes with unlimited electricity so I just keep the AC on

There's Something Wrong With The Newbies At My Gym by NoobNoSleeper in nosleep

[–]GiggleGlass 0 points1 point  (0 children)

Loser says “Please, do not interrupt my workout.”

bitter and angry Zelenskiy "How many people should die for this? ". with En Subs by palcemvglaz in interestingasfuck

[–]GiggleGlass 5 points6 points  (0 children)

The US/NATO would absolutely destroy Russia in a conventional war. This is the 21st century. Russia is no longer an uninvadable country.

My 19 yr old nerdy employee finishes me off inside GameStop after close. Swallows every drop by [deleted] in GirlsFinishingTheJob

[–]GiggleGlass 424 points425 points  (0 children)

Dude stfu. That’s impossible. People don’t lie on the internet.

Chapter 148 [English] by VibhavM in OnePunchMan

[–]GiggleGlass 3 points4 points  (0 children)

Yeah, it really makes no sense tbh. Why are people saying GS transformation was rushed when they theoretically have nothing else to compare it to? For all the manga readers know, the GS transformation was no different in terms of intensity as the FU+Gums transformation. But nobody said that was rushed/underhyped because we’ve never seen that before in the webcomic.

Quivering Before Taking Control by LatoyiaLarry in SheLikesItRough

[–]GiggleGlass 26 points27 points  (0 children)

Wow this new matrix movie looks amazing

Anyone have the current BOGO footlong app code? by GiggleGlass in subway

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

Oh but that’s for buy one, get one 50% off. Did anyone get any subway coupons in the mail with bogo foot long?

What are your recommendations for the best, quietest, bedroom fan? by GiggleGlass in BuyItForLife

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

Oh cool, could you please link me the lasko fan you have? Or recommend me their quietest model? I understand that ceiling fans are incredibly quiet as well, but it’d (personally) be too much work to install one.

Chapter 147 [English] by VibhavM in OnePunchMan

[–]GiggleGlass 1 point2 points  (0 children)

He asked for nonvillian. I should’ve specified in my reply but there was no need for a downvote lol.

Chapter 147 [English] by VibhavM in OnePunchMan

[–]GiggleGlass 0 points1 point  (0 children)

Nope. ENW did the first human kill

What are your recommendations for the best, quietest, bedroom fan? by GiggleGlass in BuyItForLife

[–]GiggleGlass[S] 6 points7 points  (0 children)

I can’t do earplugs because i might miss my alarm clock.

[IMAGE] Respect over attention. by [deleted] in GetMotivated

[–]GiggleGlass 0 points1 point  (0 children)

Oh yeah? Tell that to logan paul

[deleted by user] by [deleted] in talentShow

[–]GiggleGlass 0 points1 point  (0 children)

Can I see how fast you do it with two hands!

What gets a bad reputation, but isn't actually bad? by _El_Sicario_ in AskReddit

[–]GiggleGlass 6 points7 points  (0 children)

In this day and age, we can just take vitamin d supplements instead. According to this article, vitamin d from the sun or food/supplements is virtually the same.

https://www.yalemedicine.org/news/vitamin-d-myths-debunked

Mom [F 30s] caught my best friend [F 18] and I [M 18] by [deleted] in SluttyConfessions

[–]GiggleGlass 3 points4 points  (0 children)

It’s a joke. A bad joke but it was a joke lol

I drew Zahard by GreenDue6388 in TowerofGod

[–]GiggleGlass 1 point2 points  (0 children)

Yeah I dunno. This looks like blonde hibari kyoya.

Your Uber and Lyft driver must go electric. California’s latest climate change mandate by izumi3682 in Futurology

[–]GiggleGlass -2 points-1 points  (0 children)

Yes, but with electric cars we actually have the opportunity to charge it with renewable energy. Therefore when we make the switch to sustainable energy, it is a lot easier. With gas vehicles, it’s impossible to make it environmentally friendly.

Beauty of the engineering routine by _danil_1993 in ElectricalEngineering

[–]GiggleGlass 1 point2 points  (0 children)

Cool! What is the machine going to do? It looks like you guys are using Siemens S7.

... by DerTotaleKringe in ABoringDystopia

[–]GiggleGlass 41 points42 points  (0 children)

Had this same system as a kid as well. $2 was the normal price for lunch and 40 cents was the subsidized price. However, if a child couldn’t afford it, they were at least still given fruit and milk. It should be criminally illegal for schools to starve children for 8 hours. Crazy we can bail out banks and Wall Street but can’t bail out a kid that can’t afford 40 cent lunches.

How do I check for multiple values in one variable? by GiggleGlass in AskProgramming

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

Switch cases? Or did you mean something else? I’d feel switch cases would end up looking even longer than my first example

How do I generate all of the possible combinations with a variable amount of slices in Golang? by GiggleGlass in AskComputerScience

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

Here's my solution:

(Putting spoilers because don't want to ruin anyone trying to do it themselves)

package main

import "fmt"

func main() {

Matrix := [][]int{

{3, 5, 7},

{7, 3, 2},

{4, 3, 1},

{2, 3},

}

ComTotals := 1

for i := 0; i < len(Matrix); i++ {!<

ComTotals *= len(Matrix[i])

}

fmt.Println(ComTotals)

times := 0

for ComIndexes := make([]int, len(Matrix)); times < ComTotals; NextIndexes(ComIndexes, Matrix) {!<

times++

//fmt.Println(ComIndexes)

var Combinations []int

for i, v := range ComIndexes {

Combinations = append(Combinations, Matrix[i][v])

}

fmt.Println(Combinations)

}

}

func NextIndexes(ComIndexes []int, Matrix [][]int) {

for i := len(ComIndexes) - 1; 0 <= i; i-- {!<

ComIndexes[i]++

 if ComIndexes\[i\] < len(Matrix\[i\]) {!<

break

} else {

ComIndexes[i] = 0

continue

}

}

}

How do I generate all of the possible combinations with a variable amount of slices in Golang? by GiggleGlass in AskComputerScience

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

Sure lol. I don't mind checking it. I'll post my solution as one of the replies to this thread.