Logseq roll over task Query

{ :title [ :b "ROLL OVER TASKS"] :query [ :find (pull ?b [*]) :where [?b :block/marker ?m] [(contains? #{"TODO" "LATER" "DOING"} ?m)] ] } #+END_QUERY

Setup Development environment for PDFKit

Objective: Setup an development environment to create PDF generation using PDFKit Problem faced The version node 18 and react 18 has some lagency issues that prevented pdfkit to function properly.…

Installing MySQL on MAC

https://dev.mysql.com/downloads/mysql/ requires to update the my.cnf to access the local sql setup. however there is non. Hence the solution is to open MySQLWorkbench and enter the password to connect. the…

Convert JSON to C# Structure

Objective Convert Received JSON from API to useful C# data structure Overview Process involved with the following: Using online tool to convert the json schema into C# data structure Save…

Data access in WP using PHP

Objective and raw data Obtaining a raw data created by WP forms from database $result = $wpdb->get_results( $wpdb->prepare(" SELECT `Position` FROM `wp_meta` WHERE `post_id` = %d ", $post_id, ) By…