Ricardo Mendonça Ferreira
Ricardo Mendonça Ferreira
Thanks, @Zopolis4 ! 😃 I still have the same issue as before (using @satmandu 's script). One thing changed, though: when I tested a few days ago, the image was...
> ``` > docker run --platform linux/amd64 --rm -it zopolis4/crewbuild:cyan.m103 /bin/bash > ``` > > should have what you're looking for Awesome! 😄 Thank you so much! I'm already running...
Thanks again! And finally... what would it take for Chromebrew to support older ChromeOS versions OOTB, so `crew` could install binaries compatible with the installed libc version?
I also miss (a lot!) options to set the resolution, quality and type of image compression when creating PDF files. For now, I end up editing the PDF generated by...
I don't use NAPS2 anymore (mostly due to this issue), so please excuse me if I'm stating the obvious or talking about something that is already implemented. Here are some...
Hi there! I just tried UnrealLibretro for the 1st time, and it worked fine, even with a ROM in a subfolder. Details: - UnrealLibretro [v0.2.1-alpha](https://github.com/N7Alpha/UnrealLibretro/releases), UE 4.27.2 - LibretroWorld >...
One issue with this approach is that adding a new attribute to a .enex file, which is an XML file structured according to its [DTD](http://xml.evernote.com/pub/evernote-export4.dtd), could potentially make the file...
I already wrote a conversion tool using the evernote-backup database instead of .EXEX files, so it can keep all links among all notes, as long as you export all linked...
In Evernote, each note has a GUID that is used to link to it, so you can rename the title of the note or rename the text in the link...
I found the issue in [getResourceFileProperties()](https://github.com/obsidianmd/obsidian-importer/blob/e2ad99f78a282bcefe01d3c5b287682a20c624aa/src/formats/yarle/utils/filename-utils.ts#L39) (`/src/formats/yarle/utils/filename-utils.ts`): importer limits resource names to just 50 characters. ``` const fileNamePrefix = resource['resource-attributes']['file-name'].substr(0, 50); ``` As a workaround, I removed the `.substr(0, 50)`...