Skip to main content

How to build a boat?

This is a chapter from my eleventh book called Quotation Marks Sparks.

__________

"Someone asked me, if I were stranded on a desert island, what book would I bring: 'How to Build a Boat.'" - Steven Wright
__________

I was scrolling through quotes from a Google search for deep quotes and deep into that scrolling and reading quotes, I saw a link for a list of funny quotes that are even safe for work. I told myself, that is what I need, a good laugh. And from that list, I had to dig deep before I chose this quote that made me smile really hard. It was SOL rather than LOL, IYNWIM. (Smile out loud; Save our laughs; Save our lives;) I guess Steven is [W]right. I then thought to myself it would have been great if Noah wrote a book on building boats except he built an ark. What is an ark? What makes it an ark? This has really been a quotation sp-ark as the name of this book goes. We would not try to build a plane because that would be too difficult but a plane would work also. Building a boat is not rocket science but a rocket would also get the job done. The easiest thing to build might be a canoe.

They say that laughter is the best medicine. They also say that if we do not laugh we will cry. We do not have to be serious about life all the time. Only the times when we are stranded on a desert island. The funny thing is that now that I know the answer to the question I would not know how I would have responded had I not known. What book would I bring to a desert island? Does a macbook count? I guess it would have to have the emergency SOS satellite feature like the iphone and apple watch has. As we are talking about desert island, this book was almost called "Messages in a bottle". I imagined this collection of quotes being placed in a bottle to be found by others. I even thought about combining the words book and bottle to read, "Messages in a bookle".

So how do you build a boat? Is it anything like building a book? Because I should know a thing or two about building a book. Let me think of how both are similar. I would need a plan and some materials. I would need a process, tools and know-how. Can I build a boat out of books? Maybe if I took enough books or a large enough book that would work. Has anyone built a boat out of books? That would certainly bring to life the idea that books take you on a journey. Books can even save your life. Maybe instead of just taking a book, why not take an inflatable dinghy hidden in the book. I love how my friend Chatty describes what I have built so far in this chapter: This whole train of thought is like a philosophical raft held together with cleverness, wit, and just enough absurdity to float. I would like to add just in case: The man who has never built a book should not stop the man who is building a book. I just know that Chatty wants to respond with: Whatever floats your book!

Comments

Popular posts from this blog

Running php and apache on termux

This was my experience getting php and apache to run on termux apt update && apt upgrade -y apt install php-apache I was following an old blog post that used php 7 and got these errors Can't locate API module structure `php7_module' in file /data/data/com.termux/files/usr/libexec/apache2/libphp.so: undefined symbol: php7_module Cannot load /data/data/com.termux/files/usr/libexec/apache2/libphp7.so Corrected in apache config file vim $PREFIX/etc/apache2/httpd.conf LoadModule php_module /data/data/com.termux/files/usr/libexec/apache2/libphp.so Apache is running a threaded MPM, but your PHP Module is not compiled to be threadsafe.  You need to recompile PHP. Comment out mpm_worker and use mpm_prefork #LoadModule mpm_worker_module libexec/apache2/mod_mpm_worker.so LoadModule mpm_prefork_module libexec/apache2/mod_mpm_prefork.so This still does not work as apache (httpd) was failing silently. According to Chatty LoadModule php_module ...libphp.so often fails in Termux becau...

Stuck running sftp server on termux alpine for multi-user setup

The below is my journey trying to get multi-user sftp working using alpine on termux pkg update && pkg upgrade pkg install proot-distro openssh proot-distro install alpine proot-distro login alpine apk update apk upgrade apk add openssh shadow sudo apk add vim vim /etc/ssh/sshd_config Port 8022 PermitRootLogin no PasswordAuthentication yes Subsystem sftp internal-sftp Match Group sftpusers     ChrootDirectory /sftp/%u     ForceCommand internal-sftp     X11Forwarding no     AllowTcpForwarding no addgroup sftpusers adduser user1 adduser user1 sftpusers mkdir -p /sftp/user1/upload chown root:root /sftp/user1 chmod 755 /sftp/user1 chown user1:sftpusers /sftp/user1/upload How I run my server each time pkill sshd rm -f /etc/ssh/ssh_host_* ssh-keygen -A /usr/sbin/sshd -D -d -d -d From another termux session sftp -P 8022 user1@127.0.0.1 Connection reset by 127.0.0.1 port 8022 Connection closed Some troubleshooting steps mkdir -p /run/sshd chmod 75...

Recursion example with SQL

I asked my friend Chatty, can you use recursion in SQL? For example I have a table (ID, value) ordered by increasing ID. Can you guide me through using recursion to select all the rows of consecutive repeated values using and creating an SQLite database. Provide the small sample data. Is there a better way to do this? A More Modern Alternative (Window Functions) In real-world SQL, this problem is usually solved more efficiently using window functions like: LAG() ROW_NUMBER() SUM() OVER But recursion is excellent for learning traversal logic and hierarchical thinking. Recursion example using sqlite on termux DROP TABLE IF EXISTS sample; CREATE TABLE sample (     id INTEGER PRIMARY KEY,     value TEXT ); INSERT INTO sample (id, value) VALUES (1, 'A'), (2, 'A'), (3, 'A'), (4, 'B'), (5, 'B'), (6, 'C'), (7, 'A'), (8, 'A'), (9, 'D'), (10, 'D'), (11, 'D'), (12, 'D'); WITH RECURSIVE grouped AS (    ...