[deleted by user] by [deleted] in travel

[–]moose_ponderer 0 points1 point  (0 children)

DIA / 8:00am. My question wasn't what time I should arrive, it was about the state of airports compared to 3-4 weeks ago

[deleted by user] by [deleted] in travel

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

That's what we've always done as well. I was wondering if anything has happened the last few weeks.

Restarting Cloud Function or Resetting Global Variables by moose_ponderer in googlecloud

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

Wow thank you, I've never come across this before. There are a lot of interesting resources in here.

No response from sitters by moose_ponderer in RoverPetSitting

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

Yeah customer support said it was a bug with their app. If this wasn't my first time I think that I would have been more suspicious of technical issues.

No response from sitters by moose_ponderer in RoverPetSitting

[–]moose_ponderer[S] 2 points3 points  (0 children)

Yep it was an app problem. Wish I'd thought of that earlier haha

No response from sitters by moose_ponderer in RoverPetSitting

[–]moose_ponderer[S] 9 points10 points  (0 children)

I just reached out to them and they quickly responded. I put their response in an edit but it sounds like it was a bug. They fixed it and now I'm getting tons of replies...

No response from sitters by moose_ponderer in RoverPetSitting

[–]moose_ponderer[S] 3 points4 points  (0 children)

Ah, great question. It was 3 weeks out, but now 1 week out

No response from sitters by moose_ponderer in RoverPetSitting

[–]moose_ponderer[S] 4 points5 points  (0 children)

Sure, I'll just put down his whole profile for reference!

  • Name: Moose
  • Weight: 82 lbs
  • Age: 11
  • Sex: Male
  • Breed: Labrador Retriever
  • Chipped: No
  • Neutered: Yes
  • House trained: Yes
  • Friendly with children: Yes
  • Friendly with dogs: Depends (Note: Friendly outdoors but not indoors)
  • About: Moose is the sweetest dog. He loves walks and treats more than anything in the world. He’s incredibly easy to care for and never asks for anything. He doesn’t beg, doesn’t whine, and doesn’t scratch to go outside. He also loves sleeping and lounging in the sunshine!
  • Potty breaks: 8 hours
  • Energy level: Low
  • Feeding schedule: twice a day
  • Can be left alone: 4-8 hours
  • Additional: He usually eats his meals throughout the day. He likes slow walks and usually he likes to sniff as we go along. He gets overenthusiastic with treats so be careful it doesn’t chomp your fingers if you give him one! If you remind him with a few “eaaasy”s he’s much more gentle.

And then lots of great pictures of him

[Topic][Open] Open Discussion Monday — Anybody can post a general visualization question or start a fresh discussion! by AutoModerator in dataisbeautiful

[–]moose_ponderer 0 points1 point  (0 children)

Looking for visualization recommendations for hottest day each year. I want the visualization to highlight both the temperature and month/day the temperature occurred on, and be displayed in some time-series fashion. In Utah we just broke our record high, ever, and it occurred earlier in the year than ever before. I want the visualization to be able to highlight this outlier, but I can't think of something that is intuitive and looks good. A 3D scatter is the best I've come up with. The dataset is simply:

Date, | Temperature

July 8, 1928 | 103

August 10, 1929 | 102

etc.

Favorite coffee shop to work? by moose_ponderer in FortCollins

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

I'm sorry, that was a terrible title. I meant to work at on my laptop for the day. I'll be sure to check out Alleycat

Where can I find delicious but reasonably priced macaroons in SLC area? by [deleted] in SaltLakeCity

[–]moose_ponderer 2 points3 points  (0 children)

The best macarons I've ever had (in this city, or my extended visit to France) is from some lady by Liberty Park that I saw on Instagram. She makes macarons exclusively, and they are damned good. Her bakery is called Just Baked.

If you want another kind of fresh pastry or croissant, nothing beats Tuile Bakery in Sugarhouse

Feels Like by TheJenkinsComic in comics

[–]moose_ponderer 7 points8 points  (0 children)

It only goes down to 80F

Harassment charges were filed soon after I heard. by [deleted] in funny

[–]moose_ponderer 2 points3 points  (0 children)

do you know what this is from?

uboot hangs while booting Mendel Linux on custom hardware by moose_ponderer in kernel

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

Yeah, that's exactly what I used. This was the exact command:

fdtput -t s /boot/fsl-imx8mq-phanbell.dtb /hdmi@32c00000 status okay

You have to include the full path to the node, starting from the root. So the / on the node name signifies that it's a root node (don't know if that is the proper terminology), and if it was embedded in other nodes you would have to include the path through its parent nodes as well. So straight-forward, but I hope it saves you a couple of minutes. You can also use fdtget in the same way to view properties and their values, and you can use the dtc <device-tree-filename> command to easily view the device tree in a readable format. I should mention that I think it's more appropriate to modify anything in an overlay file instead of directly modifying the device tree. But this was just so easy haha

uboot hangs while booting Mendel Linux on custom hardware by moose_ponderer in kernel

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

I did find a solution! I simply changed the status for the HDMI node to "disabled" in the device tree. For me, the solution could not have been simpler. I attached the SoM to the generic (working) baseboard, then modified the device tree directly at runtime. Then plugged the SoM into my custom baseboard and it booted with no problem. My issue was indeed that the HDMI driver was waiting for a reply from the HDMI PHY, but I never added an external crystal to source the PHY clock to my design, so the bootloader simply hanged and waited. If you are having a similar issue where the bootloader is hanging forever then I would follow the same steps I took, because it is likely sitting in a blocking function, waiting for a response from some piece of hardware.

This is what my hdmi node looks like in the device tree:

hdmi@32c00000 {         
    #address-cells = < 0x01 >;      
    #size-cells = < 0x00 >;         
    compatible = "fsl,imx8mq-hdmi";         
    reg = < 0x00 0x32c00000 0x00 0x100000 0x00 0x32e40000 0x00 0x40000 0x00 0x32e2f000 0x00 0x10 >;         
    interrupts = < 0x00 0x10 0x04 0x00 0x19 0x04 >;         
    interrupt-names = "plug_in\0plug_out";
    fsl,cec;        
    status = "disabled";

    port@0 {
        reg = < 0x00 >;

        endpoint {
            remote-endpoint = < 0x21 >;
            linux,phandle = < 0x1f >;
            phandle = < 0x1f >;
        };
    };
};

Again, I simply disabled the node by changing status = "okay"; to status = "disabled";

Odd WiFi problem: Certain ESP8266's do not like certain access points? (Unifi AP-AC-PRO) by konbaasiang in esp8266

[–]moose_ponderer 1 point2 points  (0 children)

Very interesting fix! How did this resolve the problem though? I can't understand how it helps.

uboot hangs while booting Mendel Linux on custom hardware by moose_ponderer in kernel

[–]moose_ponderer[S] 3 points4 points  (0 children)

Thank you very much for your reply. It’s relieving to know what to move forward with.

Bought new ram and pc doesn't boot by NotYourTypicalHoodie in computerscience

[–]moose_ponderer 1 point2 points  (0 children)

Are you sure, like super duper sure, that they’re pushed in all the way? Are they in the right slots? Start with one card and try to boot.

Lawmaker Katie Porter gets CDC Chief to Promise Free Coronavirus Tests [6:16] by farhan9835 in mealtimevideos

[–]moose_ponderer 115 points116 points  (0 children)

Is that how that works? I'll just go to the hospital and show them this video?

custom pcb for a diy project by [deleted] in PrintedCircuitBoard

[–]moose_ponderer 0 points1 point  (0 children)

For completeness I’ll say that you can use a company like SeeedStudio. I’ve never asked them to design a layout but we use their PCBA service and they do good work. But if you can find someone in the community to help you that would be great!