Skip to main content

Scrapping my broken laptop

I bought this laptop in 2016 when I started my consultancy. It is a Toshiba Satellite S55-C5274. It came with an i7 processor and 12 GB of RAM. My uncle help me with funds to buy it. I was in a rush of excitement and on a budget and I made a quick buy. It was not a good buy in hindsight. The speakers stopped working properly. The edge of the screen and hinge became broken. Keys stopped working and I had to use an external keyboard. The battery no longer holds charge. Years later it became extremely slow and unusable until one day it stopped working.

I did some research on youtube and came to the conclusion that I dont have the expertise or tools to fix this. It would cost money I dont have to fix. Even if I was able to fix it then something else would break and it would stop working. I gave up on this laptop and decided to take it apart and scrap it for learning and experience and curiosity. I have seen people create art by taking apart devices and framing it. I do everything on mobile phone now and I can get by. Apple or Dell or Samsung or any laptop maker, if you are reading this, maybe you can sponsor one of your latest fully speced out models. That would be greatly appreciated.

The CPU is soldered to the motherboard. The inside was not as dusty as I thought it might be for the length of time I had it. The CPU is tiny. The fan was dusty. The cooling system was very basic. The battery is removeable. The insides look cheaply made. The laptop uses Samsung branded memory. I will keep the 1 TB hard drive as backup. The laptop was easy to take apart, mostly a small phillips-head screw driver was all that was needed. What attracted me to this laptop was the high specs for the lower price. In hindsight maybe I should have gone for lower specs but better build quality and better parts. I was not thinking long term.

Nonetheless, I made many good memories with this laptop. I never named my laptop. Maybe I should give my laptop a name. My laptop was with me in Tobago as I sat outside skewers doing work. My laptop was part of my jam sessions listening to UB40 as I pretended to be a DJ. My laptop was with me when I went on a job site in deep south to setup a turnstile for a gym. I decorated the top of my laptop with stickers I got from Amazon as most coders do. Share your thoughts with us in the comments below.





Comments

Nasif said…
Very nice, the story is a sweet one. It's a shame the build quality was lacking but it seems to have helped with your journey a lot.

Popular posts from this blog

Hobby project - Store and view exchange rates

The next step in my project was to test out being able store and display the rates in a database. I decided to use nodejs and supabase for this. Everything worked beautifully. Only hickup was the following error due to my package.json not being correct. SyntaxError: Cannot use import statement outside a module Added this to package.json   "type": "module" This works beautifully. Right now I am just testing fragments of what could be part of a bigger system to see what is possible and what works and how easy to code on a mobile. There is no fully functioning integrated end to end system just yet. This is also what I tested. A serverless append-only database using GitHub + Actions + Pages. That’s basically a lightweight backend system. This was the ChatGPT prompt I used. Guide me through each step. This is what I want. A manually run github actions that adds to docs/data.json with the current date and time. docs/index.html displays all the entries in data.json. Make s...

What is important

Every now and again, I get reminded of the why. Why I have handed my life over to God. It is 3:08 p.m. and I have decided to write. Honestly, I feel like I could end this blog post right here. What more is there to say? God above all else. God is our compass on this journey called life. Everything else can become a distraction. Maybe not everything, but certainly many things. You get the point. What is important? What do we prioritise? What do we make time for? The answers look different for everyone. Our lives are different. We are tested differently. We are all products of our circumstances, and those circumstances vary from person to person. Yet God is the common thread across humanity and throughout time. God always was and always will be. One day, we will answer to God. We will give account to God. We cannot live without food, water, and oxygen, but all of those things come from God. So how can we live without God? How timely. I just received a notification from the Quranly app: S...

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...