raphael10-collab

Results 111 comments of raphael10-collab

The tests are all OK : raphy@raohy:~/PDF-Writer$ ctest --test-dir ./builddir/ Internal ctest changing into directory: /home/raphy/PDF-Writer/builddir Test project /home/raphy/PDF-Writer/builddir Start 1: AppendAndReplaceURLAnnotations 1/78 Test #1: AppendAndReplaceURLAnnotations ......... Passed 0.01 sec...

Taking this https://github.com/galkahana/PDF-Writer/blob/master/PDFWriterTesting/EmptyFileTest.cpp as reference, In `main.cpp` : #include "PDFWriter.h" using namespace PDFHummus; EStatusCode status; PDFWriter pdfWriter; Output : `Segmentation fault (core dumped)` The line that causes the crash is...

I actually took the `FetchContent_Declare` from https://github.com/galkahana/pdf-text-extraction/blob/master/CMakeLists.txt The only difference I see, but may be there are others, is in the cpack declaration : https://github.com/galkahana/pdf-text-extraction/blob/master/CMakeLists.txt#L33 Do I need to install...

I've made an interesting test I removed the previous references to PDFWriter in the source code, and I moved all the PDFWriter-related code into an .h file and an .cpp...

I downloaed the first SpatiaLite database at the bottom of the page, the one with administrative boundaries https://data.geocode.earth/wof/dist/spatial/whosonfirst-data-admin-latest.spatial.db.bz2 , root@WorldMap:~/airmail/data# ls -lah total 94G drwxr-xr-x 3 root root 4.0K Apr...

Hi @ellenhp after 3 weeks this is the output : root@WorldMap:~/airmail# cargo run --bin indexer -- --wof-db data/whosonfirst-data-admin-latest.spatial.db --index data/index/ load-osm-pbf data/planet-daily.osm.pbf [2025-04-26T18:51:25Z INFO airmail_indexer::importer] 90130000 POIs parsed in 1705765...

@ellenhp which hardware problems do you see in my Contabo 10 Core Storage VPS? https://contabo.com/en/storage-vps/storage-vps-10c/?image=ubuntu.332&qty=1&contract=12 ![Image](https://github.com/user-attachments/assets/e975ced2-c7e6-41fe-85c1-89f0f6ad2771) root@WorldMap:~# df -h Filesystem Size Used Avail Use% Mounted on tmpfs 2.6G 1004K 2.6G...

@ellenhp based on these hardware settings : https://github.com/ellenhp/airmail/issues/34#issuecomment-2838773710 How to make it work?

@galkahana I removed the win32 and macos flags : `CMakeLists.txt` : cmake_minimum_required(VERSION 3.5) project(WebView) find_package(wxWidgets REQUIRED COMPONENTS base core webview stc xml richtext) include(${wxWidgets_USE_FILE}) include(FetchContent) find_package(PkgConfig REQUIRED) FetchContent_Declare( PDFHummus GIT_REPOSITORY...

@galkahana As second attempt to make PDF-Writer available and working in my Ubuntu 23.10 , I git cloned, compiled, built and then installed the library: raphy@raohy:~$ git clone https://github.com/galkahana/PDF-Writer.git Cloning...