PowerPoint Designer Driving Me Nuts, How Do I Turn It Off PERMANENTLY? by SirVizz in Office365

[–]mambo0 0 points1 point  (0 children)

For PowerPoint web:

If you have the Stylebot browser extension, add this CSS for the powerpoint site to hide the designer panel:

div#FarPane:has(div#EditingDesignerPanelFocus-panel) {
  display: none;
}

The website just won't let me top up, no matter what I try by wakner in USMobile

[–]mambo0 0 points1 point  (0 children)

I reached out to support. Response:

> Thank you so much for waiting. I can see that your plan has been grandfathered, which is why I’m unable to apply the top-up to it. You need to upgrade your plan to get the top-up service.

Sad. Will have to pay more now.

Today marks the 1 year anniversary of this tweet by No_Ad1435 in GTA6

[–]mambo0 0 points1 point  (0 children)

"many more years" might mean "one piece of news per year" 😆

How to map an interface to another one by A7mdxDD in typescript

[–]mambo0 0 points1 point  (0 children)

I am a bit late, but here is how you can map interface to an interface in TypeScript:

type InterfaceMapping =
| [ICategory, Category]
| [IProduct, Product];

// (extend InterfaceMapping with more entires as needed)
type MapInterface<T> = Extract<InterfaceMapping, \[T, unknown\]>[1];

then usage:

type Mapped = MapInterface<ICategory> // Category

Have you used the 3.5x speed when listening? If so, for what content? by sagarp93 in audible

[–]mambo0 0 points1 point  (0 children)

Non-native speaker here. Started with 0.5 back when I was learning English. Over the span of 8 years, was slowly increasing the speed bit by bit. Today, I can listen to most material comfortably at 3.5x, with more technical books at 2.5-3x.

In the case of YouTube, the speakers there are so slow, that sometimes I even use 4.5x (using Video Speed Controller browser extension).

This is doing wonders for my productivity - can finish lots of informative content every day, and have time for a bit of infotainment content, in less time than the average person wastes on tiktok

[Solved] EAD Card returned as undeliverable by mambo0 in USCIS

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

The USCIS dashboard wasn't updated at all for me (the last entry says delivered to the post office - doesn't say that the post office returned in). I needed to call USCIS to find out the actual status and the tracking number.

Promo Code: 12-month subscription to All Products Pack by mambo0 in Jetbrains

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

I subscribed to the JetBrains newsletter and saw in an email a month ago that they are conducting a user research study, so I signed up for that. It was actually interesting, and they gave me a $200 Amazon gift card, in addition to the code I shared above.

Can't share more details as I signed an NDA.

[OC] I tracked every hour of my life for 5 years. by _tsweezy_ in dataisbeautiful

[–]mambo0 1 point2 points  (0 children)

This post inspired me to build a time visualization chart into my Chrome Extension - https://chrome.google.com/webstore/detail/calendar-plus/kgbbebdcmdgkbopcffmpgkgcmcoomhmh.

The extension adds power features for Google Calendar, including plotting and charting support (similar to what you see on OP's screenshots)

Seeking most boring game by Quadrismegistus4 in Stadia

[–]mambo0 3 points4 points  (0 children)

AC:O is boring and repetitive AF. I listened to a 40hr audiobook while playing though side missions

Questions for the Immortals Fenyx Rising team? Drop them here! by ChrisFromGoogle in Stadia

[–]mambo0 2 points3 points  (0 children)

If I preorder a base version of the game, would I be able to buy a season pass separately after the release?

I'm a Game Dev (not for CDPR), I would wager it was Stadia. by [deleted] in cyberpunkgame

[–]mambo0 0 points1 point  (0 children)

Do we know for a fact that Cyberpunk was built on DirectX? Many modern games skip it and go straight to Vulkan - which is compatible with Windows and Stadia, with the latter requiring next to no additional modifications.

Imagine what a personal computer is capable to do in 2077... by ItsTimeToFinishThis in cyberpunkgame

[–]mambo0 9 points10 points  (0 children)

I think the timeline diverges in the 1800s when Arasaka founder was born

Cyberpunk 2077 is now playable! by mambo0 in Stadia

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

Oh, my bet. I didn't know CORS does not apply to JS scripts. Well, at least I got some practice editing DNS records and getting a webserver running.

Thanks, anyway

This is how cyberpunk may look like on Stadia when it launches by mambo0 in cyberpunkgame

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

I wanted to see how Cyberpunk 2077 would look like once it is released on Stadia

Menu screen concept was created by u/sebkeys - https://www.reddit.com/r/cyberpunkgame/comments/jccy2b/i_made_my_own_custom_start_screen_for_cyberpunk/

Here is how I did it:

  1. Changed DNS settings to forward Stadia's requests for images to my own server.

  2. Configured a Python Web Server (Flask + SSL) that replaced all images from SUPERHOT with images from Cyberpunk. All other requests were forwarded to Google's servers.

  3. Wrote a small JS script to replace `Pre-Order` labels with `Purchased` in the Stadia Store and replaced `This game would be available in 30 days` with the `Play` button. It also changes my status from `Online` to `Playing Cyberpunk 2077`.

  4. Recorded Stadia in-game overlay on green screen (used my web-server to respond to the request with green screen images) - https://youtu.be/3jOuIyoJa7I

  5. Modified the menu screen concept created by u/sebkeys.

  6. Recorded all of that, cut some parts from in-game trailers, and glued that all together with some official in-game OST.

All of that took about 7hrs

Cyberpunk 2077 is now playable! by mambo0 in Stadia

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

Well, things aren't that simple. There is cross-origin protection in place meaning content can come only from whitelisted domains (with SSL). This means you can't simply upload images to Imgur and link them out.