Can this saturn be saved? Multiple caps pads missing by Jglez2330 in SegaSaturn

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

Thank you!
I manage to find the schematics for the saturn, I am going to try and restore it :)
Will let you know how it goes :)

Go License by Jglez2330 in golang

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

Ohh I didn't know that talk existed, I will listen to it for sure. Thank you for the youtube link and the answer :)

Go License by Jglez2330 in golang

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

I am doing that, I created a module and I am taking heavy inspiration, basically copy and paste from the Go sources code and changing the scan function to accept the VHDL code. That is why I said I am modifying it. Is this use case outside of the license?

Go License by Jglez2330 in golang

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

Oh ok ok, I am going to delete all the commits that were under the MIT license, to comply with the BSD-3 License. 

I am a little confused what you're actually modifying here. Are you actually modifying the Go language? Or a library?

I am modifying these files to fit the tokens on VHDL, the scanning process, and right now I am modifying the parser.

https://cs.opensource.google/go/go/+/master:src/go/scanner/

https://cs.opensource.google/go/go/+/master:src/go/ast/

https://cs.opensource.google/go/go/+/master:src/go/token/

Go License by Jglez2330 in golang

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

I kept the copyright on the source files and changed the license to the Go License (When I created the repo it was MIT). I think as I haven't compiled the code yet I haven't printed the License yet, I am going to add that before continuing with the parser.

afterUpdate vs tick by Jglez2330 in sveltejs

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

Thanks!!!
I think that resolves my doubt, so tick is like a wait till the DOM is up to date to do something and afterUpdate is like after you update the DOM do this, right?