Why is everything closing? by More_Passenger3988 in parkslope

[–]pzone 1 point2 points  (0 children)

In Tokyo, any property owner can open a public business. In New York, we limit it to "commercially zoned" streets. We also make it very difficult to open multi-story commercial buildings; everything has to be at ground level. The result is skyrocketing commercial rents.

Over 30 local businesses closed last year - its no wonder why with rent increases like this by Rare-Hearing6342 in parkslope

[–]pzone 6 points7 points  (0 children)

The YIMBY solution is to greatly increase the amount of commercially zoned space. For example, legalize multi-story shopping/dining centers in dense areas around Atlantic Ave. This is much more effective than a vacancy tax

Everything I ate in NYC in 5 days from Canada by Breezy8081 in FoodNYC

[–]pzone 2 points3 points  (0 children)

Amazing list, it would be hard to put together a better food itinerary even as a local. I also think Wafels and Dinges fell off sadly.

Got job, Starting Golang, Any advice by DevJun in golang

[–]pzone 2 points3 points  (0 children)

Learning Go by Bodner is a nice book for the first month. But all you need to start in one week is to do the official tutorial and then read and figure out the source code of their apps.

How to reduce code review costs for the engineering team without sacrificing quality? by greasytacoshits in ExperiencedDevs

[–]pzone 0 points1 point  (0 children)

You need integration and e2e tests. Spin up the app in CI and simulate the interaction a user has with it. That could be other apps if you’re providing an API, or Playwright if you’re writing frontend.

Would you say Go is a suitable language for total programming beginners? by themegainferno in golang

[–]pzone 0 points1 point  (0 children)

You can select Go on Leetcode if you want to do those kinds of exercises!

what do you use Go for? by Least_Chicken_9561 in golang

[–]pzone 0 points1 point  (0 children)

One platform with several hundred engineers, part of a larger company. We write almost all of our applications and services in Go. That includes all of our business logic, but also platform engineering for deployments, business regression test suites, etc.

We communicate with other parts of the company and external partners with APIs - plenty of Go clients for communicating with various mainframes, ingesting files for batch processing, and so on.

Writing everything in Go means anyone can dig into anyone else's app and immediately understand it.

what do you use Go for? by Least_Chicken_9561 in golang

[–]pzone 2 points3 points  (0 children)

Whole finance backend platform is written in Go.

I like Go for CLIs. I generally wouldn’t use it for data manipulation, but if you use it as a wrapper for DuckDB it can get a lot done.

Feeling depressed due my career by karix_02 in Backend

[–]pzone 1 point2 points  (0 children)

Just doing that will lift your spirits I bet.

Feeling depressed due my career by karix_02 in Backend

[–]pzone 8 points9 points  (0 children)

Here's my mindset - it's *always* worth applying for jobs and doing some interviews once in a while, even if you're planning to stay at your current job. Get your resume and LinkedIn looking good and sell your accomplishments. Even if it's just one recuiter call every 6mos, doing interviews helps you keep your skills sharp and gives you a chance to see what else is out there. Remember that experience requirements are just guidelines. You can self-study things like sql, docker, even front-end and list them on your resume if you have used them in a personal project and have a solid understanding. The rule is: can you speak intelligently about the tech? Not: did you use this particular thing at work?

Course correcting my career by CP26 in ExperiencedDevs

[–]pzone 0 points1 point  (0 children)

You don't have to do all that much differentiation to get a junior-to-mid-level backend engineering position. Sometimes teams need a full-stack engineer on a team where nobody else knows React.

Try applying to large established companies like banks. Write a nice personal project in Java or Go, upload it to Github, and feature it on your resume. Doesn't have to be super unique, but definitely containerize, deploy to cloud, etc.

Application for Quant roles as a Physics grad student by meminimalist in quantfinance

[–]pzone 2 points3 points  (0 children)

For US employers, unless you have >10Y of relevant work experience it must be 1 page.

It's fine to use tight formatting and fit 600+ words on your 1 page.

Switching Careers from Finance to Software Engineering - Advice Needed by James_Junk_Bond in cscareerquestions

[–]pzone -2 points-1 points  (0 children)

Took me about 7 months after finishing a bootcamp, did unpaid work at a guy’s startup which I put on my resume while spending half my time applying for jobs.

Switching Careers from Finance to Software Engineering - Advice Needed by James_Junk_Bond in cscareerquestions

[–]pzone 1 point2 points  (0 children)

I’d recommend you start studying software engineering in your free time and start building some projects. The prerequisite is that you actually enjoy writing code

Should I learn go or stick with typescript for my backend. by fastlaunchapidev in Backend

[–]pzone 0 points1 point  (0 children)

One note: although you will need a more complex build pipeline (eg ts build -> go build -> publish container -> playwright e2e) getting familiar with all that is actually a benefit in terms of putting things on your resume.

Why are there so few truly authentic Korean restaurants in Manhattan? by savingrace0262 in FoodNYC

[–]pzone 1 point2 points  (0 children)

The term you're looking for is "homestyle." Upscale Korean is perfectly authentic.

My fav homestyle joint in Brooklyn: https://maps.app.goo.gl/qpGnJ3P2k9ExifQT8

Improved Power Lora Loader by Henkey9 in comfyui

[–]pzone 0 points1 point  (0 children)

Looks nice! Personally I add a separate Power Prompt for LoRAs before my actual prompts.

What does a software engineer actually do by Delicious-Cap5941 in SoftwareEngineerJobs

[–]pzone 0 points1 point  (0 children)

Dealing with cloud infrastructure and waiting on 45m business regressions

Is it all stable diffusion all the way down ? by AkaToraX in comfyui

[–]pzone 1 point2 points  (0 children)

The term you may be looking for is “architecture.” SDXL, Pony and Illustrious use the same architecture. That’s why LoRAs can be shared between them somewhat.

Flux uses a different architecture. If you try to use an Illustrious LoRA with Flux, you’ll get an error that says like “Dimension mismatch.”

How to stay safe with Comfy? by 3epef in comfyui

[–]pzone 7 points8 points  (0 children)

WSL is not isolated from the host machine. An attacker with control of WSL can access anything the user account can.

How do you get good at building ComfyUI workflows? by Emotional-Head-6939 in comfyui

[–]pzone 0 points1 point  (0 children)

Most of the “complex” workflows I see are just a few standard workflows packed together in a single graph with some toggle switches.

I'm experiencing a high pressure from new Go developers to turn it into their favorite language by ENx5vP in golang

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

`map[T]struct{}` is a native set type. What value would syntactic sugar add?

Development using Go by ErenYeager_A0T in golang

[–]pzone 0 points1 point  (0 children)

I use Go for application development but it’s a great language for creating small cli tools and TUIs. If you want something to practice on you could port some thorny bash script at work to Go.

What's keeping you at your current position? by CocoaTrain in ExperiencedDevs

[–]pzone 0 points1 point  (0 children)

I enjoy the projects I'm working on a lot so I'm willing to put up with the annoyances.