- Intermittent fasting (as noted earlier): increases synaptic adaptation, promotes neuron growth, improve overall cognitive function, and decreases the risk of neurodegenerative disease;
- Traveling: exposes your brain to novel stimuli and new environments, opening up new pathways and activity in the brain;
- Using mnemonic devices: memory training can enhance connectivity in the prefrontal parietal network and prevent some age-related memory loss;
- Learning a musical instrument: may increase connectivity between brain regions and help form new neural networks;
- Non-dominant hand exercises: can form new neural pathways and strengthen the connectivity between neurons;
- Reading fiction: increases and enhances connectivity in the brain;
- Expanding your vocabulary: activates the visual and auditory processes as well as memory processing;
- Creating artwork: enhances the connectivity of the brain at rest (the “default mode network” or DMN), which can boost introspection, memory, empathy, attention, and focus (see art therapy activities);
- Dancing: reduces the risk of Alzheimer’s and increases neural connectivity;
- Sleeping: encourages learning retention through the growth of the dendritic spines that act as connections between neurons and help transfer information across cells
Hard-to-find tips on otherwise easy-to-do tasks involving everyday technology, with some advanced insight on history and culture thrown in. Brought to you by a master dabbler. T-S T-S's mission is to boost your competitiveness with every visit. This blog is committed to the elimination of the rat from the tree of evolution and the crust of the earth.
Friday, January 24, 2025
How You Can Promote Neuroplasticity in Your Brain
Saturday, January 11, 2025
The Navalmanack - Your Most Precious Resource
Naval's recommended reading ("Read what you love till you love to read"): https://www.navalmanack.com/navals-recommended-reading
Wednesday, January 08, 2025
How You Can Squeeze Notebook LM
It claims to be happy with a URL. Try it and you find it doesn't do much - in fact, nothing at all..
So, what *can* you do?
Download the website - say it's one of those ancient online books with a TOC and Previous/Next buttons on each page. Use httrack.
Then, use this script (click to select) to (since Notebook LM takes markdown) pull the text from each page *meaningfully*. That is, you're saying Notebook LM is smart enough to make something out of headings. Else, you could just give it text. Ja? :)
Yes, you might need to ask chatGPT for a bash script to put all the text files into one - since N LM says something about a 50 file limit.
Then, just upload the files from this destination directory and you're ready to start chatting with your data. It does work!
import sys import os import html2text def convert_html_to_text(input_path, output_path): # Read the HTML content from the input file try: with open(input_path, "r", encoding="utf-8") as infile: html_content = infile.read() except FileNotFoundError: print(f"Error: The file '{input_path}' was not found.") sys.exit(1) except Exception as e: print(f"Error reading the file '{input_path}': {e}") sys.exit(1) # Convert HTML to text text_maker = html2text.HTML2Text() text_maker.ignore_links = True # Optional: Ignore links in the output text = text_maker.handle(html_content) # Write the plain text to the output file try: with open(output_path, "w", encoding="utf-8") as outfile: outfile.write(text) print(f"Text successfully written to '{output_path}'.") except Exception as e: print(f"Error writing to the file '{output_path}': {e}") sys.exit(1) if __name__ == "__main__": # Ensure correct usage if len(sys.argv) != 3: print("Usage: python html2text_converter.py <input_file> <output_file_or_directory>") sys.exit(1) # Get command-line arguments input_file = sys.argv[1] output_arg = sys.argv[2] # Check if input file exists if not os.path.isfile(input_file): print(f"Error: The input file '{input_file}' does not exist.") sys.exit(1) # Determine output path if os.path.isdir(output_arg): # If output_arg is a directory, create the output file path output_file = os.path.join( output_arg, os.path.splitext(os.path.basename(input_file))[0] + ".md" ) else: # If output_arg is a file, use it directly output_file = output_arg # Perform conversion convert_html_to_text(input_file, output_file)And then:
$ for fil in download_folder_name/www.websitename.com/somefolder/text/*.html ; do python3 script.py $fil destination_dir; done
Saturday, January 04, 2025
At Least One Person Understands Me (and You Maybe?)
From LinkedIn - signs of an intelligent employee by Cesar Solis
- They cheat on their job with a side hustle.
- They treat everybody equal (including the cleaner).
- They rebel against micromanagement and dictator leaders.
- They know when to say no to a meeting.
- They help others advance in their career.
- They don't respond to most emails.
- They stay away from gossip and corporate politics.
- They create passive income so if they get fired it matters less.
- They try entrepreneurship at least once to see what it feels like.
- They're fine to be the dumbest person in the room.
- They ruthlessly protect their time.
- They focus on outcomes not KPls.
- They're wildly open to new ideas.
- They create stuff people want.
- They learn without being told.
- They're humble.
Friday, January 03, 2025
Paul Chin and Eldad Eilam - Your Reverse Engineering Gurus
What Paul teaches in his Udemy course :
By the end of this course, you will be equipped with the basic knowledge to understand dis-assembled code and be able to modify exe files, to insert new instructions and inject new functionality to any exe files. (using x64dbg)
- Assembly Language Basics
- Reverse Engineering
- x64dbg Debugging Basics
- Modifying exe files
- Hollowing out an exe file and inserting new code
- CPU and Flag Registers
- Arithmetic Operations
- Accessing Main Memory (RAM)
- The Stack
- Function Calls
- Code Caves (unused space that can be used later without increasing size of the binary)
- Jumps
- Structured Programming
- Signed and Bit Operations
- How to crack software serial number keys
- Remove Nag Screen Reminders asking you to register
- Convert Trial Software to Fully Functional Software
- Extend 30-day Trial Period Software
- Learn Reverse Engineering and Assembly Language
- Protect your software by learning how software is being cracked
- How to Crack Software For Fun by solving CrackMe Challenges
- C/C++, delphi, VB, p-code, Assembly, C# programs covered
- Removing obfuscation, unpacking, patching, creating keygens, loaders