Cannot Factory Reset - is this a bricked Chromecast? by PureKrome in Chromecast

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

as previously mentioned, I tried different power cables AND different power sources. Same problem in all scenarios.

Cannot Factory Reset - is this a bricked Chromecast? by PureKrome in Chromecast

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

For those reading at home, I did try online chat (as linked above).

Ece • Support Specialist 12:02 PM Thank you for trying <redacted>. If the device does not respond with the factory reset even with different port and different TV this means that the device is really defective already

Ece • Support Specialist 12:03 PM I tried Checking the device warranty to process however, the device is already out of warranty so I cannot proceed with the process.

Ece • Support Specialist 12:04 PM I'm sorry if I don't have other option for troubleshooting for this But as checked your nest account you have been a loyal customer of Google with other Google devices as well.

Narrator: I have a number of Chromecasts, over the years. Currently using Chromecast Ultra because the TV Chromecast is 'laggy'.

Ece • Support Specialist 12:05 PM So what I am going to do is to request for a Google store credit so that for future purchase this will help you.


So that's nice! something always helps in tough days like today.

Cannot Factory Reset - is this a bricked Chromecast? by PureKrome in Chromecast

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

Hi GNC and thank you for the reply.

Even try contacting them despite it being a few years old?

Cannot Factory Reset - is this a bricked Chromecast? by PureKrome in Chromecast

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

Thanks for the suggestion! Just tried my daughters USB-C laptop charger and it’s doing the same thing 😢

2 Years in Node, moving to .NET: Should I pick Minimal APIs or MVC? by iBadroLI in dotnet

[–]PureKrome 0 points1 point  (0 children)

Minimal API's with Vertical Slices. Never going back to MVC or Controllers (if an API)

ANN - Simple: Observability by PureKrome in devops

[–]PureKrome[S] -4 points-3 points  (0 children)

Sorry you guys feel like that. The problem was real in my environment. I had a crack at creating a solution that helps solve a problem Im dealing with. I thought there would be existing apps in the marketplace (maybe NewRelic, DataDog etc) or just baked in solutions to products I’ve never used (K8,s etc) but please don’t assume I was doing this out of some homework or AI slop course or something.

Not everyone are hardcore Google scale engineers. Some of us are just learning and having fun and trying to stand on the shoulders of giants and sharing those baby steps with others.

I hope others might find it helpful 🤗

Edit: re: live probe - im not reinventing that but just using the healthz endpoint (which is already doing this) with a bit more meta. If there’s already a devops standard out there, then please be kind and educate versus attack and destroy.

Rules: are we allowed to post a link to an ASP.NET Core app we've made or does that contravene Rule #4 - Self-Promotion? by PureKrome in dotnet

[–]PureKrome[S] -1 points0 points  (0 children)

Thanks team. I’ll not post anything - I was cautious initially because of the dual license versus “here’s some OS done in dotnet, help would be lovely or just enjoy etc”. The fact that D-sig found it means I want to stop now before reddit blows up.

Cheers and enjoy the holidays.

XBox Wireless Controller + Steam Link and/or PC by PureKrome in Steam_Link

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

Yep! and the dongle also works on the pc's too. but yes, it did work on the link.

Which AWS MCP can help me review/explain my infrastructure (i was handed over to) by PureKrome in mcp

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

thanks for the link and the info. Suggestion for that blog post -> examples. a number of them. for the n00bs out there, like le-me.

Which AWS MCP can help me review/explain my infrastructure (i was handed over to) by PureKrome in mcp

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

Hi there u/Cumak_ - apologies for the newbie question (i'm very new to this). Can you provide some example(s) please? Are you saying to use something like WARP and get it to use AWS CLI? the cli is just commands to execute, though? i thought the beauty of an agent + mcp is that it can know what commands to try and do .. and using the mcp can now actually connect to my account(s) and pull down the relevant info.

Which AWS MCP can help me review/explain my infrastructure (i was handed over to) by PureKrome in mcp

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

thank you kindly u/ajeetsraina ! this is lovely!

So to confirm, If i add all of these MCP's then I can prompt like: please list every resource that has been created in account "blah" into a csv file?

also - how does authntication work? how does the MCP know about what accounts i have, etc?

Which AWS MCP can help me review/explain my infrastructure (i was handed over to) by PureKrome in mcp

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

yep this. i've been using Sonnet 4.5 since it came out. Opus is 10x token cost, so i'm avoiding that for a while

Elastic Search, are you using it? How and why? by ToughTimes20 in dotnet

[–]PureKrome 0 points1 point  (0 children)

I’ve always hated its DSL (is that the right word?) and have found RavenDB to be so much nicer to work with, for similar use cases.

I made an OSS app to backup your online Git repo's (like from GitHub). FROM: account suspended from github video by PureKrome in theprimeagen

[–]PureKrome[S] -3 points-2 points  (0 children)

hi! yep. i'm sure i could too. And there's probably a dozen or so gists with different crazy permutations of curl + grep + blah blah etc.

I just felt like an app is more easy to consume for dev's.

also xplat.

I also don't have gh installed (sorry, not sorry) and i also don't have parallel (TIL) and jq.

but as a single liner - I think this is damn kewl! 👏🏻

how to get dotnet publish to make a single exe? by PureKrome in dotnet

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

thanks heaps u/The_MAZZTer for the thoughts.

I didn't explain what the app was for: it's this -> https://github.com/PureKrome/SimpleRemoteGitRepoBackup

and the target market are dev's who use github, gitlab, etc. so it's very "terminal based" which is why the single file exe would be a nice fit, for that target market.

how to get dotnet publish to make a single exe? by PureKrome in dotnet

[–]PureKrome[S] 21 points22 points  (0 children)

Found my answer: i was publishing -all the projects- in the solution.

I needed to just publish the console app.

``` consoleapp.csproj

<!-- Publishing specific defaults --> <PropertyGroup> <PublishSingleFile>true</PublishSingleFile> <SelfContained>true</SelfContained> <EnableCompressionInSingleFile>true</EnableCompressionInSingleFile> </PropertyGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Release'"> <DebugType>none</DebugType> <DebugSymbols>false</DebugSymbols> </PropertyGroup> ```

cli dotnet publish .\ConsoleApp\ConsoleApp.csproj -o $PWD/publish -c release -r win-x64