The Type Hierarchy Tree zhenghao.io/posts/type-hiโ€ฆ
๐Ÿ‘︎ 49
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/zhenghao17
๐Ÿ“…︎ Jan 24 2022
๐Ÿšจ︎ report
People have a hierarchy of what type of meat they will eat, herbivores over omnivores where as carnivore meat is taboo. Something like beef is more popular than pork but lion McNuggets or wolf wellington is not on the menu.
๐Ÿ‘︎ 9
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/CriticalCow6374
๐Ÿ“…︎ Jan 21 2022
๐Ÿšจ︎ report
Whatโ€™s the power scale or hierarchy like for the different types of daemons, if there is one?

So for example. Thereโ€™s just lesser daemons that make up the hordes. Then Greater Daemons are obviously powerful. So I assume the actual named Greater Daemons are even stronger, maybe depending which chaos god they serve? Then daemon princes (daemon primarchs?) which are obviously way tougher. Then the top of the chain is the chaos gods themselves.

๐Ÿ‘︎ 7
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/BattlingMink28
๐Ÿ“…︎ Jan 04 2022
๐Ÿšจ︎ report
[WP] The angel frowns. โ€œIโ€™m tired of people posting about โ€œbiblically accurateโ€ angles. Itโ€™s driving me insane. Everyone knows there are multiple types of angels in the divine hierarchy including humanoid and non-humanoid ones
๐Ÿ‘︎ 3
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Mindless-Strike8356
๐Ÿ“…︎ Jan 30 2022
๐Ÿšจ︎ report
Hierarchy among types of attraction

Does anyone else feel like the world views romantic love as "more" than platonic love, and sexual attraction even "more"? It drives me crazy whenever I start explaining to someone how passionately I love someone platonically and then they're like, "are you sure it's nothing more?" because I don't think romantic love is MORE than platonic love. They exist on equal terms and one isn't stronger than the other. I could love a person platonically with the same strength and passion you love someone romantically, it's just different types of attraction. It's like comparing the temperatures of tea and coffee. They could be both 100ยฐc and people would still say that tea is clearly warmer. NO IT'S NOT, THEY'RE AT THE SAME TEMPERATURE. It obviously changes from person to person but I don't think that romantic love in general should be seen as "more" than platonic love and I hate that it is.

๐Ÿ‘︎ 38
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/nf1tales
๐Ÿ“…︎ Dec 01 2021
๐Ÿšจ︎ report
Anyone have a GitHub for this type of component hierarchy with coupled animations? v.redd.it/v7irwy3ob3u71
๐Ÿ‘︎ 116
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/wingo310
๐Ÿ“…︎ Oct 17 2021
๐Ÿšจ︎ report
It's endlessly funny to me that guys with zero social skills were like "wait, I believe in this hierarchy, but I can't be an alpha because nobody respects me. I guess I'll make up a new type of guy who has no friends on purpose because I'm actually better than everyone else" (swipe...) reddit.com/gallery/oa8gqt
๐Ÿ‘︎ 3k
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Mirror-Distinct
๐Ÿ“…︎ Jun 29 2021
๐Ÿšจ︎ report
It's endlessly funny to me that guys with zero social skills were like "wait, I believe in this hierarchy, but I can't be an alpha because nobody respects me. I guess I'll make up a new type of guy who has no friends on purpose because I'm actually better than everyone else" reddit.com/gallery/oa87nl
๐Ÿ‘︎ 1k
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Mirror-Distinct
๐Ÿ“…︎ Jun 29 2021
๐Ÿšจ︎ report
Still Deep in Type Hierarchy Hell Code, Building DDTJ - Day 5 dev.to/codenameone/still-โ€ฆ
๐Ÿ‘︎ 2
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/u-copycat
๐Ÿ“…︎ Dec 24 2021
๐Ÿšจ︎ report
It's endlessly funny to me that guys with zero social skills were like "wait, I believe in this hierarchy, but I can't be an alpha because nobody respects me. I guess I'll make up a new type of guy who has no friends on purpose because I'm actually better than everyone else" [Swipe...] reddit.com/gallery/oblecu
๐Ÿ‘︎ 625
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Mirror-Distinct
๐Ÿ“…︎ Jul 01 2021
๐Ÿšจ︎ report
Can I walk through the entire hierarchy of object types?

So I can introspect my own class hierarchy by doing something like this:

def all_subclasses(klass):
    subclasses = set()
    to_examine = [klass]
    while to_examine:
        parent = to_examine.pop()
        for child in parent.__subclasses__():
            if child not in subclasses:
                subclasses.add(child)
                to_examine.append(child)
    return subclasses

This lets me examine the hierarchy of classes I've defined, so if I have

class A(object): pass
class B(A): pass
class C(A): pass
class D(B, C): pass
class E(B): pass
class F(D, E): pass

then something like all_subclasses(A) gives me the expected result, listing F, E, D, C, B. I can also do this with many (most?) built-in types, though the results have taught me new things about the Python type system and how it's implemented. Nevertheless, all_subclasses(int) and all_subclasses(str) do what I would expect them to do.

But all_subclasses(object) throws this error:

> TypeError: descriptor '__subclasses__' of 'type' object needs an argument

Is there a way to walk through the hierarchy of all object types, seeing all descendants of object and, recursively, all of their descendants?

๐Ÿ‘︎ 44
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/patrickbrianmooney
๐Ÿ“…︎ Aug 12 2021
๐Ÿšจ︎ report
What is your philosophy on directory hierarchy? (File-type vs source/purpose)

Hey guys, I'm currently in the process of sorting every file I've ever kept for the last 10-15 years. The main issue I find myself running into is if I want to root the structure based on file-type or file-source/purpose.

For example, let's say we have an image containing some old math class I took in college:

math-101-hw-1.png

Based on DataCurators structure, this would likely go into the images directory like so (or something similar):

images/school/college/math/101/homework/math-101-hw-1.png

Or, I could also choose to anchor the file based on source/purpose (i.e school). This would result in a file structure like so:

documents/school/college/math/101/homework/math-101-hw-1.png

The key difference between these two structures is the possibility of the latter containing multiple file types in the same directory. For example, the contents could look something like this:

documents/school/college/math/101/homework/math-101-hw-1.png
documents/school/college/math/101/lectures/math-101-lecture-1.mp4
documents/school/college/math/101/lectures/math-101-lecture-2.mp4

In contrast, using a file-type based hierarchy would look similar to:

images/school/college/math/101/homework/math-101-hw-1.png
videos/school/college/math/101/lectures/math-101-lecture-1.mp4
videos/school/college/math/101/lectures/math-101-lecture-2.mp4

In this scenario, I would generally prefer a source and purpose-based format. My reason being that if I were to want to find a file related to my schooling, then I would likely think of the class first before considering the file-type (possibly because I may not know the exact file-type). This would also result in every file related to my education being located in one directory tree which seems beneficial.

However, this idea doesn't necessarily hold true when I want to find another type of file (and presumably know the file-type). For example, I've played a lot of Rocket League over the past couple of years and have taken many screenshots to document my progress over time. In my mind, when I would think to look up a screenshot, my initial thought would be to move straight into the images directory and continue from there:

images/games/rocket-league/screenshots/2021/04/screenshot-20210421.png

This approach allows all game related screenshots to be located in the same directory tree which looks to be superior to segmenting screenshots across the heirachy:

games/video/computer/rocket-
... keep reading on reddit โžก

๐Ÿ‘︎ 37
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/BroadwayRL
๐Ÿ“…︎ Jun 14 2021
๐Ÿšจ︎ report
Cats: Essential Type Class Hierarchy Explained youtube.com/watch?v=_afyiโ€ฆ
๐Ÿ‘︎ 33
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/danielciocirlan
๐Ÿ“…︎ Jun 03 2021
๐Ÿšจ︎ report
My PC keeps randomly restarting. I am getting error "A fatal hardware error has occurred. Reported by component: Processor Core Error Source: Machine Check Exception Error Type: Cache Hierarchy Error Processor APIC ID: 4 The details view of this entry contains further information"

SOLVED

Hardware

Ryzen 3600, Gigabyte B450i, Gigabyte 5500xt 8Gb, Kingstone HyperX 3200Mhz 2x16Gb, Seasonic Focus Plus 550 Gold

I just received my replacement CPU from AMD. The only component replaced is the CPU. I have never had hard restarts with previous CPU before. Now I get random restarts. I am not sure if this is RAM issue, BIOS, NordVPN, cables perhaps ?

The computer was running fine for days. now i started getting this problem. I do not think it is new CPU. Nothing is overheating.

>Error Type: Cache Hierarchy Error
>
>Processor APIC ID: 4

>The HP LaserJet Service service terminated unexpectedly. It has done this 1 time(s).

>Initialization failed because the driver device could not be created. Use the string "000000000100320000000000D71000C013010000250200C000000000000000000000000000000000" to identify the interface for which initialization failed. It represents the MAC address of the failed interface or the Globally Unique Interface Identifier (GUID) if NetBT was unable to map from GUID to MAC address. If neither the MAC address nor the GUID were available, the string represents a cluster device name.
>
>Initialization failed because the driver device could not be created. Use the string "000000000100320000000000D71000C011010000250200C001000000000000000000000000000000" to identify the interface for which initialization failed. It represents the MAC address of the failed interface or the Globally Unique Interface Identifier (GUID) if NetBT was unable to map from GUID to MAC address. If neither the MAC address nor the GUID were available, the string represents a cluster device name.

I am not sure if this due to updated NordVPN. I have read somewhere that NordVPN can cause this kind of issues ?

I have the newest BIOS / Video card / Chipset drivers installed.

Another thing is my ram. For whatever reason CAS does not change with and without XMP. It stays the same. CAS18 even if XMP is turned off. I never was paying attention to this detail because i never had this problem before.

The crashes occur while browsing the internet.

SOLVED

Update 1:

adding extra PCIe cable solved Bluetooth issues but i still experience random crashes and error 18.

I read that HWinfo is causing WHEA-Logger Event ID and HWinfo is always on on my computer so I have turned it off and let see if this helps with crashes

[**Is HWiNFO causing the dreaded WHEA-Logger Event ID XX Cache Hierarchy Error

... keep reading on reddit โžก

๐Ÿ‘︎ 6
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/bitekr
๐Ÿ“…︎ Feb 16 2021
๐Ÿšจ︎ report
Hierarchy of Card Types

Im interested on the hierarchy of card types. This is what i have found:

Tier-1 Limit: 10,000 to 149,999 Classic Standard Personal Business

Tier-2 Limit: 50,000 to 299,999 Titanium Gold

Tier-3 Limit: 100,000 to more then 1M Platinum Signature Infinite

๐Ÿ‘︎ 14
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Wafu-player
๐Ÿ“…︎ Feb 18 2021
๐Ÿšจ︎ report
Ironsworn encounters in single pages. I made them to use as a deck on tabletop simulator, but I figure they could be used in various ways. Feedback is welcome. Only changes I made were a bit of type hierarchy and diagramming. Hope it's useful :) dropbox.com/sh/04ryl0stf0โ€ฆ
๐Ÿ‘︎ 16
๐Ÿ’ฌ︎
๐Ÿ“…︎ May 09 2021
๐Ÿšจ︎ report
[RockTheJVM] Cats with Scala: Essential Type Class Hierarchy - Daniel Ciocรฎrlan youtube.com/watch?v=_afyiโ€ฆ
๐Ÿ‘︎ 8
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/know_not_much
๐Ÿ“…︎ May 30 2021
๐Ÿšจ︎ report
What does you hierarchy of run types given X days per week look like?

As an injury prone/low mileage runner I've thought about this concept a lot.

For someone training for say a 5k-half the "ideal" training week probably looks something like 4-5 easy runs, 1-2 workouts, and a long run.

But if you could only run once a week what would you do? A race effort? Long Tempo?

What about 2x/week? Long run and a workout? 3x/week? 5x/week? All easy?

Essentially, if you're experienced enough to do more than easy runs but on limited days/mileage what order would you add in different run types to get the most bang for your buck.

For context I'm 25M and have in the past gotten to ~20:00 5k shape off 20-30mpw for a couple months with lots of quality but have biomechanical issues that caused injuries regardless of if it was 20 super slow miles or mostly fast tempos. Coming back to running now post surgery (to help correct some of the issue) and still struggling to even manage 20 mpw.

๐Ÿ‘︎ 60
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/TriGator
๐Ÿ“…︎ Aug 24 2020
๐Ÿšจ︎ report
Hierarchy of insecurity awareness amongst types

Someone asked in another post what types would be the most insecure, I'm well aware every type has its own insecurities but I think some tend to feel/express them more than others, it was fun to write and I want to know if anyone shares these perceptions or not. Your own list is welcome.

Keep in mind that the list is based on my perception of stereotyped average/unhealthy types:

-------------

6 - they tend to be very conscious of their insecurities (counterphobic 6s may be the opposite but I think they are very aware of their insecurities and just refuse them)

4 - their constant negative interpretations tend to lead them towards insecurities

2 - they tend to have soft egos and they may get very insecure of what people think of them

5 - they tend to be insecure during social interactions, also their lucidity can make them very anxious/insecure about reality

1 - they tend to be the most balanced type even when they are average, their egos may be soft or strong, so I would say that some may be insecure some may not (50/50)

3 - they are deeply insecure, but their inconscious strategy tend to lead them to be oblivious about those insecurities, they may have "insecurity crisis", they often have strong "outside" egos

7 - pretty much the same as type 3 with a lesser focus on external opinion of them, they tend to run away from their inner insecurities and usually have strong egos

9 - the most oblivious type that tend to not be affected by much, even tho they don't have strong egos they are so resilient I've rarely seen them showing insecurities

8 - I may be biased as I am an 8: they always have strong egos that lead them to denial, they become oblivious of their insecurities and their fears

-------------

Of course this is just a list based on nothing but tendencies' observations and understanding of my readings, in reality insecurities may depend of many more factors than types.

The healthier the individual, the lesser the type has an impact, in the end we all reach a similar balance whatever our types.

EDIT: People's insights: 9s do feel insecurity but won't show it in order to avoid troubling others, which is an interesting possibility.

๐Ÿ‘︎ 39
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Symbolical_Dream
๐Ÿ“…︎ May 14 2020
๐Ÿšจ︎ report
Hierarchy addon for note types?

Hi there,

does anyone know if there is any addon for notetypes in hierachy? I've got too many different notes and the list is super long.

๐Ÿ‘︎ 4
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/jzeDing
๐Ÿ“…︎ Mar 13 2021
๐Ÿšจ︎ report
Speedbar: Java Type hierarchy

https://preview.redd.it/u3i0nx8zxhv61.png?width=1356&format=png&auto=webp&s=c2d0ef8bcf9c382e0c77eab556cca0fd38a6eb0c

Code: https://gitlab.com/atamariya/emacs/tree/dev

Command: java-type-hierarchy

๐Ÿ‘︎ 2
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/atamariya
๐Ÿ“…︎ Apr 26 2021
๐Ÿšจ︎ report
Is there a way in Xcode to go to a particular class from the view hierarchy without having to type it out using cmd+shift+o?

Whenever I open the view hierarchy of my app to see which classes I should edit, there is no way for me to just tap in the name and go to the class that I want to edit. Is there a way to do this?

๐Ÿ‘︎ 2
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/DarkRick01
๐Ÿ“…︎ Mar 12 2021
๐Ÿšจ︎ report
TIL that Ivy League schools + sister schools used to take nude photos of all incoming freshmen, supposedly to gauge the severity of scoliosis and etc. The two lead psychologists then tried to use the data to justify their theories on body type and social hierarchy. messynessychic.com/2013/1โ€ฆ
๐Ÿ‘︎ 116
๐Ÿ’ฌ︎
๐Ÿ“…︎ Jul 12 2020
๐Ÿšจ︎ report
getting type from a hierarchy of structures

I have two structs like this:

   template<typename T>
   struct A {
        using TYPE T;
        T var;
   };

   struct B {
         A<float>a;
   };

Now I define struct B inside struct C, and I need to get A::TYPE inside C, so basically the type of A::var;

  struct C {
       //not correct - Any alternative way to do this?
       using TYPE = typename B::v::TYPE;
       B b;
  };

I could do it one of the ways below, but this would add too much clutter in my use case and I would like to avoid it if possible.

struct B {
    using TYPE float;
    A<float>a;
};

template<typename T=float>
struct B {
    using TYPE T;
    A<T>a;
};

Could I instead define the type correctly inside struct C with B as is, which I tried to do as using TYPE = typename B::v::TYPE;.

๐Ÿ‘︎ 3
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/blackandwhite345210
๐Ÿ“…︎ Feb 04 2021
๐Ÿšจ︎ report
Anarchism also rejects hierarchy meaning anarcho-capitalism isnโ€™t actually a type of anarchism.
๐Ÿ‘︎ 16
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Leftismisbased
๐Ÿ“…︎ Jan 28 2021
๐Ÿšจ︎ report
ENTPs what are the types of your friends? Also what is your friend hierarchy like...is there a leader amongst your circle?

What is your friend circle like...are you the leader amongst your friends...what is you dynamic amongst your friends if that makes sense(like what role you play)....this question is also open to people whoโ€™s friend group consist of a ENTP.

๐Ÿ‘︎ 3
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Kw7924
๐Ÿ“…︎ Jan 17 2021
๐Ÿšจ︎ report
I feel like this type fan is at the top of the ceiling fan hierarchy. youtube.com/watch?v=eW93Uโ€ฆ
๐Ÿ‘︎ 10
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/randomfree2playguy
๐Ÿ“…︎ Nov 27 2020
๐Ÿšจ︎ report
Hierarchy of types

A great MBTI-based society would have a hierarchical structure as well, yes. I'm suggesting that everybody take a four-question test at two years old and this defines their role in society for the rest of their lives. The NT will obviously be the greatest. Sensors will be subjected to slavery under their superior intellect and anyone who protests will be exiled. If they suspect they are mistyped they will be given the test again but if they are indeed typed correctly they will be executed. Any suggestions?

๐Ÿ‘︎ 56
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/KingdomOfNewDerpia
๐Ÿ“…︎ Apr 04 2020
๐Ÿšจ︎ report
A brief, introductory look at the two differing types of hierarchy in Indigenous societies and what Anarchics can learn from them. iaf-fai.org/2020/11/02/inโ€ฆ
๐Ÿ‘︎ 77
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/E_Insurgente
๐Ÿ“…︎ Nov 02 2020
๐Ÿšจ︎ report

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.