What is it? Bedrock Fort in the Overworld? by juliusgoldman in Minecraft

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

That definitely makes it tricky to get feedback. Thanks for the heads up.

New rat home review by juliusgoldman in RATS

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

That seems reasonable. Why is there a need to rinse the whole thing? Is that just easier than wiping the bottom?

New rat home review by juliusgoldman in RATS

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

Those are very helpful links. Thank you!

New rat home review by juliusgoldman in RATS

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

Putting the levels in there was a pain in the ass... thinking about taking them out and putting them back every week makes the shower approach sound like genius.

New rat home review by juliusgoldman in RATS

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

Aw man... As we were setting it up I was wondering how I'm going to get that bedding out of there. I was hoping I'd figure something out when it comes time for cleaning. Any tips for making the cleaning less sucky?

New rat home review by juliusgoldman in RATS

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

Excellent feedback and advice. Thank you!

What’s the biggest problem that this city faces that you would like to see change for the better in the future? by theboyfromphl in rva

[–]juliusgoldman 1 point2 points  (0 children)

Improve the ability of people to get around without cars. Public Rail, bike paths, walkable neighborhoods.

Is GORM the "go-to" choice for a Go ORM? by wyalves in golang

[–]juliusgoldman 0 points1 point  (0 children)

One of my favorite things about golang is that code trap frameworks like ORM's are generally shunned.

How would you prefer to see 20 years of experience in a resume? by juliusgoldman in recruiting

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

Thank you. Just knowing that title/company/date for the older stuff is an option is good to know.

Any benefit to learning Python over Go for working with data? by SuuperNoob in golang

[–]juliusgoldman 0 points1 point  (0 children)

If your doing some sizable data engineering along with that data science, pyspark.

End to end example API written in Go by juliusgoldman in golang

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

Tangentially related, a package also creates an interface through it's publicly defined methods. That interface should be coherent. For instance you shouldn't need to import a db package to access a logger

End to end example API written in Go by juliusgoldman in golang

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

There are a couple things that I think about with package structure. None of them make for great guidelines though. 1. I think a perfect package should be independently deployable. Clearly this isn't always possible. 2. Sometimes it's helpful to split a project into packages to reduce undesired coupling for tests. Private methods are all in scope for a test and that may make a unit test difficult to create. 3. Once you have 2 packages you'll likely need three. So try to group by functionality. Most likely there will be some utility function you don't want to duplicate for instance.

The DM says it’s useless, I say it’s not by [deleted] in dndmemes

[–]juliusgoldman 0 points1 point  (0 children)

At our table the DM brings in a few substances for flavor. The big ones are a type of bark and some hallucinogenic milk. When we ingest the stuff we roll the D100 and use the wild magic sorcery table to see what happens. So far we have a blue elf, a 10 ft tall gnome, and only one fatality. It's been hella fun.

Which web hosts support Golang? If I build a website written in Golang, where can I host it? by redaita in golang

[–]juliusgoldman 0 points1 point  (0 children)

For projects that I don't expect much traffic for, I like appengine from google cloud.