elm A short introduction to Ports and Flags in Elm A simple demonstration on how to work with Elm Flags and Ports, with interactive code
dll Find whether a Windows dll is compiled for 32 or 64 bits on Linux Quick Linux tip to check Windows DLL architecture using objdump command - determine if a Windows DLL is 32-bit or 64-bit without Windows tools like dependency walker.
android onLocationChanged is never called on Android Android development troubleshooting: fixing onLocationChanged never being called - the missing requestLocationUpdates() call despite implementing LocationListener interface and having proper permissions.
stack-overflow Stack Overflow: a hate/love story A developer's conflicted relationship with Stack Overflow - how the platform's incredible efficiency has created dependency, replacing documentation-reading habits with instant-answer seeking, and the decision to take a break.
linux Count the number of lines of code of your projects Learn quick command-line methods to count lines of code in your projects using find, cat, and wc commands - get project size statistics by file extension or entire folders.
latex Insert urls into a Latex document Simple LaTeX tip for inserting clickable URLs into documents using the url package - create active web links that remain functional in PDF output with customizable styling options.
programming Easily change file separator Quick Linux tip to efficiently change file separators in large CSV files using the sed command - transform commas to spaces or any delimiter in seconds, even for 500MB+ files.
sonar Sonar images segmentation and classification fusion Explore automatic sonar image segmentation and classification fusion for underwater mapping using level-sets method and feature-based classification to identify seafloor surfaces and edges with promising preliminary results.
lua Execute a function given its name as a string! Quick Lua programming tip showing how to execute functions dynamically from string names using loadstring(). Demonstrates practical application in embedded web interfaces for computer vision applications on resource-limited systems.
python How to spend nights on the computer Introduction to Project Euler, a programming challenge platform that improves coding skills through mathematical problem-solving. Emphasizes learning Python programming techniques, optimization strategies, and the joy of elegant code solutions.
blog My minimalist dark Pluxml theme Custom dark minimalist theme for PluXML CMS featuring a three-section layout with dark gray/black background and light gray foreground. XHTML 1.0 compliant design available on GitHub for free download.
blog A lightweight dynamic CMS, database free! Introduction to PluXML, a lightweight database-free CMS written in PHP that stores content in XML files. Perfect for portable websites and learning web development, though primarily French-focused with limited English documentation.
python Multiprocessing using Python Introduction to Python multiprocessing for parallel computing. Shows practical examples of creating multiple processes for unrelated tasks.
python Simply print current function name Python tip for debugging: how to dynamically print the current function name using sys._getframe() for better error tracking and code debugging during development.