Build Hello

Build Hello Build Hello is web design and development agency delivering websites and content to businesses and persons.

https://www.facebook.com/share/1Hh6V2bbJv/
05/08/2026

https://www.facebook.com/share/1Hh6V2bbJv/

The collaboration between Alex Tourville and Sawyer Merritt was the primary catalyst behind the rebranding of Twitter to X. Tourville, a Canadian physics engineer, originally created the mathematical-style “X” logo for his podcast. When Elon Musk crowdsourced ideas for a new visual identity, Merritt, a high-profile Tesla influencer, submitted Tourville’s design. The logo is a refined version of a Unicode character, reflecting a minimalist, Art Deco aesthetic that appealed to Musk’s preference for sleek, futuristic branding. Both men are deeply embedded in the Musk ecosystem as long-term investors and vocal advocates, making their contribution a symbolic bridge between the company and its most dedicated community members.

The X logo shares a common thread of high-contrast, geometric simplicity with Musk’s other ventures. The Tesla logo features a stylized "T" representing a cross-section of an electric motor, while the SpaceX "X" includes a trajectory line symbolizing a rocket’s flight path. Neuralink utilizes a sinusoidal wave to mimic neural threads, and The Boring Company features a thick "O" representing a tunneling pipe. Finally, Grok’s slashed circle aligns with the angular, mathematical visual style found across Musk’s entire portfolio of futurist companies.

https://www.facebook.com/share/p/18GVnHhj3y/
03/02/2026

https://www.facebook.com/share/p/18GVnHhj3y/

In 1974, Richard Danne, alongside Bruce Blackburn, designed NASA's iconic "Worm" logo as part of the Federal Graphics Improvement Program. Tasked with modernizing NASA's outdated "Meatball" logo, Danne & Blackburn proposed a sleek, minimalist logotype featuring bold, red, stylized letters spelling "NASA." The design process was arduous, involving extensive research and simplification to ensure versatility across applications like publications, signage, and spacecraft. The logo's futuristic aesthetic, with crossbar-less A's evoking rocket nosecones, aimed to reflect NASA's forward-thinking mission. Despite initial resistance from NASA staff and skepticism from administrators over its abstract design, the logo was adopted in 1975. It served as NASA's official insignia until 1992, was revived in 2020 fIn 1974, Richard Danne, alongside Bruce Blackburn, designed NASA's iconic "Worm" logo as part of the Federal Graphics Improvement Program. Tasked with modernizing NASA's outdated "Meatball" logo, Danne & Blackburn proposed a sleek, minimalist logotype featuring bold, red, stylized letters spelling "NASA." The design process was arduous, involving extensive research and simplification to ensure versatility across applications like publications, signage, and spacecraft. The logo's futuristic aesthetic, with crossbar-less A's evoking rocket nosecones, aimed to reflect NASA's forward-thinking mission. Despite initial resistance from NASA staff and skepticism from administrators over its abstract design, the logo was adopted in 1975. It served as NASA's official insignia until 1992, was revived in 2020 for select missions, and earned Danne the NASA Exceptional Public Achievement Medal in 2023. The Worm remains a timeless symbol of innovation, celebrated globally.

https://www.facebook.com/share/p/1AJW7ypGWB/
02/25/2026

https://www.facebook.com/share/p/1AJW7ypGWB/

Wieden+Kennedy London's design process for the Formula 1 logo, unveiled in November 2017, was a meticulous, fan-informed endeavor led by Executive Creative Director Richard Turley. Tasked with rebranding the sport for the first time in 23 years, the agency began with a six-month global research study engaging Formula 1 fans to understand their emotional connection to the sport. This revealed a desire for a modern yet authentic identity that honored F1’s heritage while embracing its future as a dynamic entertainment brand.

02/21/2026

Carter Wong, founded by Phil Wong and Phil Carter in 1984, is a London-based design studio known for creating the iconic 1994 Formula 1 (F1) logo. This logo featured a slanted "F" with red speed marks, forming a "1" in the negative space, symbolizing speed, power, and passion with its black, red, and white palette. Used until 2017, it became a motorsport legend, reflecting F1's dynamic essence, though it faced challenges with digital scalability.

02/21/2026
https://www.facebook.com/share/p/1Aw1jzooF1/
01/29/2026

https://www.facebook.com/share/p/1Aw1jzooF1/

Gary Dean Anderson is an American designer best known for creating the universal recycling symbol, an image that has become one of the most recognizable icons in the world. In 1970, while he was a college student, Anderson entered a design competition centered on environmental awareness and developed the now-famous three-arrow loop. The logo, often referred to as the Möbius loop, features arrows chasing one another in a continuous cycle, representing the process of reducing, reusing, and recycling materials. A lesser-known but meaningful detail of the design is the use of negative space, which subtly forms the shape of a pine tree, reinforcing the symbol’s connection to nature and environmental protection. The logo’s clean, minimal form allows it to communicate across cultures and languages with ease. Rather than being decorative, Anderson’s design is functional and symbolic, proving how thoughtful graphic design can shape global attitudes toward sustainability and conservation.

Not exactly our wheelhouse, but interesting nonetheless.The PDF may be sandboxed, and without Jit compilation, but if it...
01/28/2026

Not exactly our wheelhouse, but interesting nonetheless.

The PDF may be sandboxed, and without Jit compilation, but if it's still closer to a webpage than a static document someone could figure out how to put a CSP in there, and then treat it like an actual webpage.

https://www.facebook.com/share/p/1ApCUcSXyo/

Linux running inside a PDF. An actual working operating system with a terminal where you can type commands. Open a PDF in Chrome. Wait 30 seconds. You now have a working Linux terminal. No installation, no software, just a 6MB file that boots an entire operating system.

A high school student named Allen built this, the same kid who previously crammed Doom into a PDF. Before that, he made tools to bypass school software restrictions and exploits to boot Linux on locked-down Chromebooks.

I love this kind of stuff because someone sees a limitation and thinks: what if I just ignore that? What if I push it further? That mindset is exactly what hacking is about.

PDFs can run JavaScript, and not just simple form validation, but full computational logic. The specification allows 3D rendering, HTTP requests, and even detection of how many monitors are connected to a system. Adobe built an entire programming environment into what most people think is just a document format.

Think about that for a second. The invoice your accountant sends you, the resume someone emails, the boarding pass you download... all of them could theoretically run code.

Allen took a RISC-V emulator called TinyEMU that was originally created by Fabrice Bellard. If that name sounds familiar, Bellard also created QEMU and FFmpeg, and back in 2011 he built the first JavaScript-based PC emulator that could run Linux in a browser. The guy once held the world record for calculating pi to 2.7 trillion digits, so Allen is building on the shoulders of a legend here.

The trick was getting the emulator to run inside Chrome's limited PDF JavaScript engine. Modern browsers use WebAssembly for heavy computation but PDF engines do not support it, so Allen found an old version of Emscripten from 2019 that compiles C code to asm.js instead. That older format works inside the PDF sandbox.

The display renders as ASCII characters where each line of the terminal output sits in a separate text field, and keyboard input comes through a virtual keyboard made of PDF buttons or by typing into a text box.

→ Boot time: 30 to 60 seconds
→ File size: 6MB
→ Performance: roughly 100 times slower than normal Linux
→ Works in: Chrome, Edge, Brave, and other Chromium browsers
→ Does not work in: Adobe Reader, Firefox

I tested it on my Linux system first, and the emulator ran fine, but the terminal display did not render correctly. Chrome on Linux has issues with the text field rendering in PDFs, so the emulator was working but I could not see the output. After trying Chromium, a Firefox fork, and adjusting Chrome flags I finally got it running properly on a different system where it booted, showed the kernel messages, and let me run commands like uname -a and df -h.

Seeing a working Linux shell inside a PDF is something else, an operating system running inside a document format with all the possibilities that brings.

Why is it so slow? Chrome intentionally disables the JIT compiler when running JavaScript inside PDFs as a security measure. JIT compilation creates executable code at runtime, which attackers could potentially abuse, so by forcing the engine to interpret code instead of compiling it Chrome trades performance for safety.

The irony here is thick because a security feature meant to protect users is exactly what makes this possible. Without JIT disabled, running an entire operating system inside a PDF would be an obvious attack vector, but with JIT disabled, it becomes a harmless yet impressive demonstration.

And that brings up the real question: if someone can run Linux in a PDF, what else can run in a PDF?

Security researchers have been warning about PDF JavaScript for years. In May 2024 CVE-2024-4367 exposed arbitrary JavaScript ex*****on in PDF.js, the engine Firefox uses for PDFs. The vulnerability allowed attackers to execute code just by getting someone to open a malicious file, and in Electron apps without proper sandboxing this led to full native code ex*****on on the target machine.

Check Point Research published data showing 22% of all email-based cyberattacks now use PDF files as the delivery mechanism, which means the format that everyone trusts as safe has become one of the most common attack vectors.

Allen does not seem worried, though. In an interview with The Register, he said embedding JavaScript in PDFs is nothing new and that modern PDF engines were built with these risks in mind. He thinks opening a PDF in Chrome is probably safer than visiting a random webpage.

He has a point because the sandbox is real, the JIT is disabled, and the attack surface is limited compared to a full browser tab. But the gap between what PDFs can theoretically do and what most people assume they can do remains massive.

Thomas Rinsma, a security analyst, started this whole trend on January 5, 2025, when he released PDFTris, a playable Tetris game inside a PDF. Allen had Doom running, and a month after that, a full Linux system.

The progression tells a story about how hackers think: see a constraint, find a workaround, push the boundary, see what breaks. Each project builds on the last, and each one reveals a little more about what the format can actually do. PDFTris was a toy, DoomPDF was a flex, and LinuxPDF is proof that documents are not just data.

For defenders, the takeaway is simple: PDFs are executable formats, and they have been for decades. The JavaScript specification, 3D rendering capabilities, and network access built into the format mean that a PDF is closer to a webpage than a piece of paper, and most security training still treats PDFs as safe documents, which needs to change.

Understanding how file formats actually work is a core part of security research. I cover reconnaissance, system internals, and attack surfaces in my ethical hacking course:
https://www.udemy.com/course/ethical-hacking-complete-course-zero-to-expert/?couponCode=FEBRUARY26

Hacking is not a hobby but a way of life. 🎯

Read the article:
https://hackingpassion.com/linux-inside-pdf/

Try LinuxPDF yourself (Chromium browsers only):
→https://linux.doompdf.dev/linux.pdf

GitHub:
https://github.com/ading2210/linuxpdf



Research & writing: Jolanda de Koff | HackingPassion.com
Sharing is fine. Copying without credit is not.

https://www.facebook.com/share/p/189XSHUKcv/
01/14/2026

https://www.facebook.com/share/p/189XSHUKcv/

The iconic octagonal MG badge was designed by Ted Lee (also referred to as Edmund Lee), a cost accountant at Morris Garages who was an amateur artist. Cecil Kimber, the founder and driving force behind the MG marque (as general manager of Morris Garages), spotted Lee's sketches and enthusiastically adopted the design in 1923 to give the emerging brand its distinctive identity.The octagonal shape with the "MG" monogram first appeared in an advertisement in The Oxford Times on March 2, 1923, and was used in promotions for the early "MG Super Sports Morris" models throughout late 1923. It was officially registered as a trademark by Morris Garages on May 1, 1924 (sometimes cited as a key milestone). While some popular sources mention 1927 as the introduction year, this actually refers to the classic brown-and-gold color scheme and more prominent use on car badges/radiators, the octagonal form itself debuted in 1923.

The original posters were handed to participants of the 20th Annual MG Summer Party in Grand Rapids, MI (August 1996).

Address

Vancouver, BC

Alerts

Be the first to know and let us send you an email when Build Hello posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Build Hello:

Share

Category