A list of puns related to "List of troglobites"
Random Question.
Are there any cases where birds have adapted to life Underground? Im thinking Albino, eyeless and probably flightless, as flight would probably require too much energy.
So Iβm watching Planet Earth: Caves and they visit a cave where there are animals that have no skin pigment or eyes, and theyβve never experienced light.
My dad has vitaligo and canβt be in the sun too long before he blisters. In my brain (which knows really nothing about the science), it would make sense that they might be harmed by it.
Is there a negative affect on these animals when we shine a bright light onto them for a period of time in order to get these shots?
I told her there's no way we could do all that in 30 seconds.
Lettuce know if you have any
Doc: Wow, it's very organized ;)
I just learned about Lazy Hiker brewery being 'a short hike' from the trail and it got me thinking, how many breweries are 'close' to the trail? Is there a list somewhere?
I see people asking for youtuber recommendations fairly frequently so I decided to make a big old categorized list to make things easier. Categories were picked based on the primary type of content they've been putting out for the past year or two, but obviously there's going to be a lot of crossover. Apologies to anyone I may have missed, I'll be updating the list based on feedback.
Adventure β Channels that travel a lot
Mahalo My Dude https://www.youtube.com/c/MahalomyDude/featured
BKXC https://www.youtube.com/c/bkxc/featured
BCPOV https://www.youtube.com/c/BCpov/featured
Van Girl Yuka https://www.youtube.com/c/VanGirlYuka/featured
The Loam Ranger https://www.youtube.com/c/TheLoamRanger/featured
Mo & Hannah // Awesome MTB https://www.youtube.com/c/AwesomeMTB/featured
Jeff KendallWeed https://www.youtube.com/c/JeffKendallWeed/featured
The Singletrack Sampler https://www.youtube.com/channel/UCfUGBBnxQYezwJM9wi3F-Lg/featured
ProjectNortheast MTB https://www.youtube.com/user/manchvegas1/featured
Trail building
Berm Peak (AKA Sethβs Bike Hacks) https://www.youtube.com/c/SethsBikeHacks/featured
Backyard Trail Builds https://www.youtube.com/c/BackyardTrailBuilds/featured
POV
Jordan Boostmaster https://www.youtube.com/user/JordanBoostmaster/featured
VanCan https://www.youtube.com/c/VanCan/featured
Dale Stone https://www.youtube.com/c/DaleStone/featured
Berm Unit https://www.youtube.com/c/BermUnit/featured
The Outsider MTB https://www.youtube.com/c/TheOutsiderMTB/featured
Bicycle Curious https://www.youtube.com/c/BicycleCurious/featured
Variety
Trail Features https://www.youtube.com/c/TrailFeatures/featured
Porter MTB https://www.youtube.com/c/PorterMTB/featured
Clint Gibbs https://www.youtube.com/c/ClintGibbs/featured
BOBO https://www.youtube.com/c/LambertMixson/featured
Daily MTB Rider https://www.youtube.com/c/DailyMTBRider/featured
No Front Brakes https://www.youtube.com/c/NoFrontBrakes/featured
The Shredist https://www.youtube.com/c/TheShredist/featured
Skills with Phil https://www.youtube.com/c/SkillsWithPhil/featured
The Loam Wolf https://www.youtube.com/c/TheLoamWolf/featured
Shred Yard https://www.youtube.com/c/ShredYard/featured
MTB ALAN https://www.youtube.com/c/MTBALAN-channel/featured
Educational β Skills and advice
Paul the Punter https://www.youtube.com/c/PaulThePunter/featured
GMBN https://www.youtube.com/c/gmbn/featured
Jeff Lenosky https://w
... keep reading on reddit β‘It's a legend.
Iβll start the list of red flags to pay attention to from an employer/superiors/partners at firms.
The question, Are you single?
This means that your employer is looking to see if they can exploit your free time while shacking you up in a motel 6 in bumfuck Idaho
Hello fellow EV hypebeasts,
First I'll share the link for this, since that's probably what you clicked on this for: https://docs.google.com/spreadsheets/d/1RHr_APkDqZPRpVp_h7H1NQoeNrdszxZ9putvRQ7VQhw/edit?usp=sharing
I truly believe that EV will be a massive market, and I wanted to consolidate a bunch of companies into a single place that I could look at and analyze which would be the biggest winners. The result is a massive spreadsheet of 49 companies and ETFs that are in the Clean Energy/EV space. Sample companies include:
- TSLA :)
- NIO
- LAC
- ENPH
- FSLR
- ICLN
- SBE
And a lot more!
For common companies, I have a ton of info such as a description, price, % change, % YTD, Market Cap, Average Volume, P/E ratio, EPS, and more to help you make informed investments/trades. All financial data is pulled live from Google Finance and descriptions/Analyst ratings are pulled from Yahoo Finance.
If there are any companies or ETFs that you think should be added, let me know! I'm always looking for new EV and clean energy stocks to potentially invest in.
Edit: Added colors to analyst ratings based on buy/hold/sell, and added 365 day charts for every stock, added CCIV and TGPY
Edit 2: π π π π π π
Edit 3: Added 7 more stocks for a total of 56
I'm telling you up front that this is a ramble/rant that's been on my mind since I read an article on the evils of FP this morning. There may or may not be a bigger point here so consider this your fair warning.
This article was written from the perspective of a Go developer responding to some of the common criticisms of Go (something something generics) and a good portion of it was spent deriding FP concepts relating to list transformations and the inherit slowness/Big-O complexity therein. While well meaning, the comments were largely in agreement with the article. This isn't the only FP criticism I've seen in this vein and it's been bugging me enough that I'm sitting here on a Friday night complaining about it.
Edit: a few people are (rightly) saying that I use Big-O notation here in a way that's incorrect, missing the point of Big-O. That's completely correct, but I decided to express it this way because it seems clear and I'm not sure what the preferred alternative is. For any newcomers unfamiliar with Big-O, know that O(n * 3) isn't a real thing and is equivalent to O(n) and that I am using that notation to highlight that certain approaches need to iterate over a list multiple times.
The assertion: given a task such as "take every even number in a list, multiply them by 3, then find the sum of these numbers" FP is inherently inferior because each operation is O(n) for a total of O(n * 3). Compare that to Go's O(n) for the whole shebang since for loops > all.
I disagree for a few reasons:
Hot takes, right? I'm aware I'm preaching to the choir here but it'll be cathartic to go over this.
For comparison's sake, one Go solution could look like this:
func ContrivedFunction() int {
nums := []int{1, 2, 3, ..., n}
n := 0
for _, x := range nums {
if x % 2 == 0 {
n += x * 3
}
}
return n
}
Readable enough and, as promised, it's O(n). Contrast this to an idiomatic-ish Elixir solution:
defmodule Foo do
def contrived_function do
nums = [1, 2, 3, ..., n]
# For clarity I'm pretending that Enum.sum/1 doesn't exist
nums
|> Enum.filter(&Bar.divisible_by_two?/1)
|> Enum.map(&Bar.multiply_by_three/1)
|> Enum.reduce(0, &Bar.add/2)
end
end
Check it out! It's O(n * 3) and that's only getting worse as you add more
... keep reading on reddit β‘I did a quick google search to see if this has been posted here, and i did not see a recent link. So here it goes, for all the lovers and learners of this beautiful language. Just click on a letter and rejoice with the background and history of all the phrases and dictums that have become part of the language. Enjoy!
Is there a comprehensive list anywhere? For example all of the lists I've found omit Warframe, and yet there's a PS5 version that uses the controller features that I've only just found out about. Most of the PS5 enhanced games aren't in the 'PS5 games' tab on the store.
Is there a full list anyone has found? Thanks.
Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.