Siva

Results 34 comments of Siva

> It's telling you exactly what you need to do. Just add the `-l` option to `tex4ebook` Thanks for pointing it out, I'll try that option. ``` ! Fatal Package...

I've converted to AZW3 from epub format as stated in #46 More information can be found in the below GIST link, also I have attached AZW3 format file in it....

@oddg, I've used the same [site](https://github.com/onlurking/category-theory-for-programmers) for conversion from epub to azw3. Its _Originally posted by @onlurking in https://github.com/hmemcpy/milewski-ctfp-pdf/issues/46#issuecomment-340605105_ > I just tried an epub -> mobi conversion on [epubconverter.com](https://www.epubconverter.com/epub-to-kindle-converter/)...

Im able to download messages but not image attachment. Im thinking is it because of proxy server I had put in my machine to remove ads. I understand the requests...

I'm using v0.1.1, it worked after commenting ``` // if err != whatsapp.ErrMediaDownloadFailedWith410 && err != whatsapp.ErrMediaDownloadFailedWith404 { // fmt.Printf("%v\n", err) // return // } ```

> ```shell > export LD_LIBRARY_PATH=/usr/local/lib > ``` I faced the same issue, The problem got resolved after adding `ld_library_path` in ~/.bashrc ``` cat ~/.bashrc | tail export LD_LIBRARY_PATH=/usr/local/lib ``` ```...

I'm sharing my insights and solutions. **Issue with File Overrides: Impact on Visual Studio Code Startup** **Issue:** Encountering challenges with file overrides while attempting to provide access to Docker from...

To make it work in NixOS, I followed the steps below (using jpkl). 1. Downloaded jpkl: ```bash curl -L -o jpkl https://repo1.maven.org/maven2/org/pkl-lang/pkl-cli-java/0.25.2/pkl-cli-java-0.25.2.jar ``` 2. Made the script executable: ```bash chmod...

output ``` ~/jpkl eval bird.pkl name = "Swallow" job { title = "Sr. Nest Maker" company = "Nests R Us" yearsOfExperience = 2 } ``` ``` ~/jpkl eval -f json...

I've written a brief blog post on setting up Pkl using Nix flakes on NixOS. Details available at [https://byteshiva.medium.com/simplifying-configuration-with-pkl-cli-on-nixos-08790fbe4e5c](https://byteshiva.medium.com/simplifying-configuration-with-pkl-cli-on-nixos-08790fbe4e5c)