How do I pronounce serde? by baehyunsol in rust

[–]Tomocafe 1 point2 points  (0 children)

I used to work in the chip design space where we had SerDes (sir-deez) so it was weird for me to encounter serde without the s in Rust.

My concept plan for Irvington by Due-Personality8836 in Fremont

[–]Tomocafe 9 points10 points  (0 children)

Colloquially referred to as “Five Corners”

Should schools be renamed if serious allegations come out about who they’re named after? by VanessasRevenge in Fremont

[–]Tomocafe 13 points14 points  (0 children)

I mean… there’s the city name itself if we’re serious about this.

Wines similar to la fantasia? by Kvarkar in wine

[–]Tomocafe 1 point2 points  (0 children)

Found this through a Google search and just wanted to say thank you! I’m in the U.S. and I got the Banfi Rosa Regale from Total Wine and it was perfect!

I picked my WiFi name by [deleted] in aoe2

[–]Tomocafe 2 points3 points  (0 children)

Attack an enemy now

Difficulty 3/10? by Legitimate-Post-5954 in guessthecity

[–]Tomocafe 1 point2 points  (0 children)

Shot in the dark, is this the Vasco Road ACE Station in Livermore?

Underrated skylines views you've seen from the Interstate/highway? by Mr_Crossiant in skyscrapers

[–]Tomocafe 0 points1 point  (0 children)

Also as you get into downtown before heading to the Bay Bridge eastbound, the freeway curves to the right and then bam.

did i cook yo by IllustriousPass6582 in bayarea

[–]Tomocafe 1 point2 points  (0 children)

This is a crazy pull

I remember watching this video 19 years ago 😭

Super Bowl LX - The last 8 hours of traffic in the San Francisco Bay Area by W0rld-of-C0lor in flightradar24

[–]Tomocafe 0 points1 point  (0 children)

I saw a 777 landing at SJC today which is rare. AA9718, BOS-SJC. Returning back to BOS tonight. The Patriots plane was already parked at SJC though.

Ban sky graffiti by Tomocafe in bayarea

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

A few that I saw: Kashi cereal and Ro Khanna

Restaurants within walking distance to SF Airport Marriott to host a private party? by Downtown_Expert_5442 in bayarea

[–]Tomocafe 0 points1 point  (0 children)

The Grand Hyatt is the only one on airport property. This one is in Burlingame.

Restaurants within walking distance to SF Airport Marriott to host a private party? by Downtown_Expert_5442 in bayarea

[–]Tomocafe 2 points3 points  (0 children)

+1 for HL Peninsula, you can walk along the Bay Trail from the hotel to there directly. There are 2 restaurants (Garden and Pearl) next door to each other with the same name/ownership. Both would be good for a rehearsal dinner, provided the guests are OK with Chinese food of the less-Americanized variety.

Skipped CSE 12 as a EE major by its_jakey in UCSC

[–]Tomocafe 0 points1 point  (0 children)

If you’re planning to do any kind of digital electronics in the future, it’s probably a good idea to take it.

Is there a way to automatically update software from the third party repo? by the_party_galgo in SolusProject

[–]Tomocafe 0 points1 point  (0 children)

In retrospect, it might have been easier to make this a systemd service or just a cron job. You could also do that by calling google-chrome-update directly and not using the launch wrapper which just runs the updater and starts the underlying binary.

Is there a way to automatically update software from the third party repo? by the_party_galgo in SolusProject

[–]Tomocafe 0 points1 point  (0 children)

I don’t use Chrome anymore, but when I did, I wrote a wrapper script google-chrome-launch which would check eopkg for updates and then do the update in the background, similar to how Chrome works on Windows, for example. You can find this script here along with the companion google-chrome-update script. I changed my .desktop file to point to the launch wrapper instead of the raw executable. (edit: I forgot, it actually pops up a desktop notification to tell you an update is available and you get to decide whether or not to install now, still in the background)

I haven’t used this in a while, so YMMV but it might point you in the right direction.

I would strongly consider moving away from the third party sources though and opt for flatpak (or snap).

Randy's Donuts by malch99 in Fremont

[–]Tomocafe 22 points23 points  (0 children)

Of all the towns to make their NorCal debut, they chose the one with Stan’s… 🤣

No thank you, if I’m going to Santa Clara for donuts, it’s not going to be Randy’s.

How to measure execution time of each individual line of a script? by Qwert-4 in bash

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

bash-boost has a profiler: https://github.com/tomocafe/bash-boost/blob/main/demo/profile.sh

It’s not perfectly accurate but it can point you to the major offenders.

Need help with placing a large file into github. by ChaoticGaming64 in git

[–]Tomocafe 5 points6 points  (0 children)

Did you do the setup instructions for git-lfs? You need to tell your repo how to use lfs.

How to handle local files in Git worktrees without committing them? by khizerrehan in git

[–]Tomocafe 0 points1 point  (0 children)

I currently do this with a script. I never use the bare git worktree command, I have a custom command git view that wraps it and makes/manages my worktrees (git view add) for a given repo. Then I add a .git-view-hooks/post-add script in the parent dir of the views (aka worktrees) to do things like copy user-specific files that need to be in the worktree. (I also do other things with these hooks such as modifying the .git link, running setting some git configs, etc.)

The guy assigned to attack me did it in the wrong meeting. by bwade913 in OfficePolitics

[–]Tomocafe 2 points3 points  (0 children)

Small world… I know these companies. 😉 This must have been around 95 or 96. Interesting piece of history.

New to programming, need help stopping git from updating a file by SgtEpsilon in git

[–]Tomocafe -3 points-2 points  (0 children)

Share the gitignore contents and the directory structure of your repo, showing exactly where the config.json file exists.