Sakib Hadžiavdić

Results 27 comments of Sakib Hadžiavdić

Doesnt have to be a macro.. just a simple plugin/task

https://golb.hplar.ch/2020/04/java-javascript-engine.html#:~:text=The%20GraalVM%20JavaScript%20engine%20is,Nashorn%20only%20supports%20ECMAScript%205.1.

https://github.com/SeanSobey/ChartjsNodeCanvas

I'm planning to migrate my [sbt-hepek](https://github.com/sake92/sbt-hepek) to CBT also. Which should be trivial, since it is just ~100 lines of code. It's similar to Scalatex but pure Scala, kinda follows...

First, a quick intro to my solution. A common practice in Java projects (I think Maven first started this) is to put Java sources in `src/main/java`. If so, it's easy...

@formulahendry I don't see how this would break current users. We could leave the settings as they are now and just add `javaClassFullyQualifiedName` property. A better solution could be to...

@IdiosApps I tried using https://github.com/jenkinsci/lib-file-leak-detector to find which files remain unclosed. Found that there are 3 places where it gets stuck/unclosed. You can see attached file for stacktraces. Couldn't find...

Seems to work now, maybe https://github.com/com-lihaoyi/mill/pull/1230 fixed it.. 😄 ```sh sake@DESKTOP-4KROVCU:/mnt/c/scala/mill/0.9.9/example-1$ ../mill-0.9.9.bat foo.compile Preparing Java 11.0.11 runtime; this may take a minute or two ... Compiling /mnt/c/scala/mill/0.9.9/example-1/build.sc [26/26] foo.compile [info]...

I did PDF generation in my Hepek project (static content generator). Feel free to use/copy [this code](https://github.com/sake92/hepek/blob/master/src/main/scala/ba/sake/hepek/pdf/PdfGenerator.scala). It uses https://github.com/danfickle/openhtmltopdf to parse HTML and generate PDF. But I needed some...

For some reason it works when you specify the type explicitly: `val page: com.gargoylesoftware.htmlunit.html.HtmlPage = webClient.getPage("http://deeplearning.thoughtworks.school/")`