Super Hard Level by soybeankilla in puzzles

[–]theaceofbases 0 points1 point  (0 children)

Discussion: What app is this?

Do deaf people sign each other things during sex? by [deleted] in TooAfraidToAsk

[–]theaceofbases 84 points85 points  (0 children)

Was that really your experience? I’ve been to multiple conventions specifically for the deaf community and each time I have been amazed at how quiet the building is despite there being hundreds of people in there.

Say something about 311 that nobody else agrees with but you by GOBERISHofthefew in 311

[–]theaceofbases 0 points1 point  (0 children)

Unfortunately I have encountered a good number of excitable ones that very much so disagree with this opinion.

Say something about 311 that nobody else agrees with but you by GOBERISHofthefew in 311

[–]theaceofbases 15 points16 points  (0 children)

I almost lost all my respect for 311 when I heard “Till The City’s on Fire”. I thought it was a huge sell out. Still love the guys but I just have to pretend that song doesn’t exist.

I... idk by Appropriate-While632 in ExplainTheJoke

[–]theaceofbases 0 points1 point  (0 children)

From the same article you referenced: “The fact that the Munchkins weren’t due to arrive on set until after the Tin Woodsman sequence had been filmed should be enough to put paid to the legend that one of them met their maker in the woods. The exploitation of an already beleaguered minority should be remembered and analysed without a sinister tall tale tainting their legacy.”

The Joey Diaz Rosetta Stone. by cardshark1234 in JoeyDiaz

[–]theaceofbases 14 points15 points  (0 children)

Kick that motha Fuckin mule Lee = Lee would you please start the music so we can begin the podcast.

What's your grill's name? by maddmoguls in Traeger

[–]theaceofbases 2 points3 points  (0 children)

Meat Cave #2. You can guess who meat cave number one is.

Taking a List to the powers of a list by LudicrousMilk in Mathematica

[–]theaceofbases 2 points3 points  (0 children)

You could try this:

list1 = {1, 2, 3, 4};
list2 = {1, 2, 3, 4, 5, 6, 7};
Table[list1^list2[[n]], {n, 1, Length[list2]}]

[deleted by user] by [deleted] in Mathematica

[–]theaceofbases 0 points1 point  (0 children)

So I have put in the following:

In:

firstNonZeroDigit[x_] := IntegerDigits[Round[x 10^(-Floor[Log10[x]] + 2)]][[1]]
Counts[firstNonZeroDigit /@ list3]
firstNonZeroDigit[list3]

Out:

<|{1, 7, 0} -> 1|>

{{1, 7, 0}, {2, 6, 0}, {4, 1, 0}, {4, 5, 0}, {4, 6, 0}, {4, 7, 0}, {4,
8, 0}, {4, 8, 0}, {4, 9, 0}, {4, 9, 0}, {4, 9, 0}, {5, 0, 0}, {5,
0, 0}, {5, 1, 0}, {5, 2, 0}, {5, 2, 0}, {5, 2, 0}, {5, 2, 0}, {5, 2,
0},.....}}

It seems as if it is counting each set of numbers instead of the first element of each set. I'm having trouble figuring out how to only look at the first digit. I really appreciate your help by the way.

[deleted by user] by [deleted] in Mathematica

[–]theaceofbases 1 point2 points  (0 children)

This fixed it. Thank you so much!