Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
tatskaari
searching PlanetScale…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
4 ms
·
1.
▲
by
tatskaari
8mo ago
You don't need a JS bootloader to write an OS in JS. The bootloader just drops the machine into some memory address for it to start executing your OS init script. that bit could be a Javascript interpreter. You can't do much with
2.
▲
by
tatskaari
6y ago
I wonder if it has something to do with how tech companies are relatively unaffected by the big sick.
3.
▲
by
tatskaari
6y ago
It's pretty easy to wrap the typescript compiler however I've not seem many people use pure TS like that. Mostly people want to use webpack and TS together. Unfortunately webpack doesn't expose anything that would allow us to
4.
▲
by
tatskaari
6y ago
Please takes sandboxing a bit further using kernel name-spacing to isolate builds and tests. It's an opt-in feature but you can bind to port 8080 in your tests and run them in parallel if you do ;)
5.
▲
by
tatskaari
6y ago
I recently added a config option so plz test will run tests in the package directory rather than the repo root (just like go test). Should make things a little easier.
6.
▲
by
tatskaari
6y ago
In a word: simplicity Bazel has a lot of magic and crazy abstractions. Please is far easier to get your head around and as a result, far easier to bend to your iron will.
7.
▲
by
tatskaari
6y ago
Hey guys! Thanks for checking Please out! I see a lot of recurring themes in the comments so I thought I would clear some things up. What is Please? Please is a multi-language build system designed for huge mono-repos. It was created by a c
8.
▲
by
tatskaari
6y ago
Hey, Please maintainer here! One of the big differences to the other Blaze like build systems is Please actually doesn't treat any of the built in languages any differently to other languages. They are implemented entirely in the build
9.
▲
by
tatskaari
6y ago
Please excels in a mono-repo situation. We built Please because we struggled to get Buck to handle Python, Javasript, and Java while having protobuf code generation for all these languages. Fast forward 5 years, now we're using Please
10.
▲
by
tatskaari
6y ago
Yup fair enough. Migrating build systems is hard. I've put some work into making migrating from a `go build` project to Please a bit easier. Banzai cloud recently migrated their [Pipeline]( https://github.com/banzaicloud
11.
▲
by
tatskaari
6y ago
Hey! Glad you liked it :D Please is owned by Thought Machine. They’ve recently (8 months) brought me on the project full time. We’re planning on putting together a dedicated IDE team together but no promises.
12.
▲
by
tatskaari
6y ago
Hey, I maintain please and will be the first one to admit we’re not the best at marketing it. We’ve mostly been focused on getting it up to scratch and only recently have we been trying to publicise it. With that being said I have put a goo
13.
▲
Please 15.9.0 Is Here
(please.build)
2 points
by
tatskaari
6y ago
|
0 comments
14.
▲
by
tatskaari
6y ago
Can I shamelessly plug my build system https://please.build ? It’s a Bazel-like written in go with a focus on simplicity. I feel your pain, We had a lot of the same complaints with Bazel, Buck, Pants etc.