{
    "version": "https://jsonfeed.org/version/1",
    "title": "Omair Khattak",
    "home_page_url": "https://omairkhattak.com/",
    "feed_url": "https://omairkhattak.com/feed.json",
    "description": "Omair Khattak on the Internet",
    "icon": "https://omairkhattak.com/apple-touch-icon.png",
    "favicon": "https://omairkhattak.com/favicon.ico",
    "expired": false,
    
    "author": "Omair Khattak",
    
"items": [
    
        {
            "id": "https://omairkhattak.com/2025/11/11/apple-shortcuts-unrar-here",
            "title": "Solving the macOS RAR Problem: From Terminal to Shortcuts",
            "summary": null,
            "content_text": "In the future year of 2025 we always envisioned technology as a seamlessextension of our support system. Yet here I am, with a three thousand dollarcomputer that can’t open a .rar file. It’s December 2024, the .rar was inventedin 1993, about 32 years ago. For 32 years, no thought to license and integratethe RAR format. It’s quite admirable really, a testament.RAR is proprietary and other formats arent so its making a point by not usingit. I shouldn’t have to dig through Homebrew documentation or fall down Redditrabbit holes just to open a rar file though. I could install unrar through theterminal and call it a day, but I didn’t want to open terminal every singletime I want to open a file. I should be able to click on it and it opens. Iwould like to experience the computer like a normal person. So I automated thewhole thing.  First in Automator.  Secondly, I believe sharing is caring…  Thirdly, and finally, converted the automation to Shortcuts.Step One: Getting the Actual ToolBefore I could automate anything, I needed the extraction tool itself. Homebrewmade this pretty straightforward:brew install unrarOnce installed, I had to figure out exactly where it lived on the system. Thisis important with macOS automation because their tools for some reason don’talways know where your stuff is.which unrar  \tOutput: /usr/local/bin/unrar (or /opt/homebrew/bin/unrar)First Try: Automator Quick ActionMy first move was to build a macOS Quick Action. This would let me right-clicka file in Finder and run a custom command from the menu. I threw together aShell Script workflow with pretty straightforward logic: grab the selectedfile, find its directory, and run unrar.The Scriptfor f in \"$@\"  do      cd \"$(dirname \"$f\")\"      /usr/local/bin/unrar x \"$f\"  doneThe Annoying PartNotice I couldn’t just write unrar x \"$f\" and be done with it.When Automator (or Shortcuts) runs a shell script, it doesn’t load your userprofile. No .zshrc, no .bash_profile, nothing. So it has zero clue whereHomebrew puts things. I had to hardcode the full path: /usr/local/bin/unrar.This worked, but it felt dated. Sharing Automator workflows is a pain. You haveto physically send the .workflow file, the recipient has to install it in somespecific library folder, there’s signing, there’s permissions. I wantedsomething cleaner.Second Try: Moving to ShortcutsI decided to rebuild everything in Shortcuts. Better UI, easier sharing (justan iCloud link), and it syncs across all my Macs automatically.The core logic stayed the same, but the implementation felt way cleaner.I created a new Shortcut, enabled it for Quick Actions in Finder, and used theRun Shell Script action with /bin/zsh as the shell.The Setup  Input: Receives Files from Quick Actions  Action: Run Shell Script  Shell: /bin/zsh  Pass Input: as argumentsSame as before, I had to be explicit with the file path:for f in \"$@\"  do      cd \"$(dirname \"$f\")\"      /usr/local/bin/unrar x \"$f\"  doneThe End ResultNow when I download a RAR file, I don’t touch the terminal at all. Right-click,hit “Unrar Here,” and the folder just appears. I uploaded the shortcut to RoutineHub so I can manage updates and versions without any hassle.Download on RoutineHubMy Profile on RoutineHub",
            "content_html": "<p>In the future year of 2025 we always envisioned technology as a seamlessextension of our support system. Yet here I am, with a three thousand dollarcomputer that can’t open a .rar file. It’s December 2024, the .rar was inventedin 1993, about 32 years ago. For 32 years, no thought to license and integratethe RAR format. It’s quite admirable really, a testament.</p><p>RAR is proprietary and other formats arent so its making a point by not usingit. I shouldn’t have to dig through Homebrew documentation or fall down Redditrabbit holes just to open a rar file though. I could install unrar through theterminal and call it a day, but I didn’t want to open terminal every singletime I want to open a file. I should be able to click on it and it opens. Iwould like to experience the computer like a normal person. So I automated thewhole thing.</p><ol>  <li>First in Automator.</li>  <li>Secondly, <em>I believe sharing is caring…</em></li>  <li>Thirdly, and finally, converted the automation to Shortcuts.</li></ol><h2 id=\"step-one-getting-the-actual-tool\">Step One: Getting the Actual Tool</h2><p>Before I could automate anything, I needed the extraction tool itself. Homebrewmade this pretty straightforward:</p><div class=\"language-plaintext highlighter-rouge\"><div class=\"highlight\"><pre class=\"highlight\"><code>brew install unrar</code></pre></div></div><p>Once installed, I had to figure out exactly where it lived on the system. Thisis important with macOS automation because their tools for some reason don’talways know where your stuff is.</p><div class=\"language-plaintext highlighter-rouge\"><div class=\"highlight\"><pre class=\"highlight\"><code>which unrar  \tOutput: /usr/local/bin/unrar (or /opt/homebrew/bin/unrar)</code></pre></div></div><h2 id=\"first-try-automator-quick-action\">First Try: Automator Quick Action</h2><p>My first move was to build a macOS Quick Action. This would let me right-clicka file in Finder and run a custom command from the menu. I threw together aShell Script workflow with pretty straightforward logic: grab the selectedfile, find its directory, and run unrar.</p><h3 id=\"the-script\">The Script</h3><div class=\"language-plaintext highlighter-rouge\"><div class=\"highlight\"><pre class=\"highlight\"><code>for f in \"$@\"  do      cd \"$(dirname \"$f\")\"      /usr/local/bin/unrar x \"$f\"  done</code></pre></div></div><h3 id=\"the-annoying-part\"><strong>The Annoying Part</strong></h3><p>Notice I couldn’t just write <code class=\"language-plaintext highlighter-rouge\">unrar x \"$f\"</code> and be done with it.</p><p>When Automator (or Shortcuts) runs a shell script, it doesn’t load your userprofile. No .zshrc, no .bash_profile, nothing. So it has zero clue whereHomebrew puts things. I had to hardcode the full path: <code class=\"language-plaintext highlighter-rouge\">/usr/local/bin/unrar</code>.</p><p>This worked, but it felt dated. Sharing Automator workflows is a pain. You haveto physically send the .workflow file, the recipient has to install it in somespecific library folder, there’s signing, there’s permissions. I wantedsomething cleaner.</p><h2 id=\"second-try-moving-to-shortcuts\"><strong>Second Try: Moving to Shortcuts</strong></h2><p>I decided to rebuild everything in Shortcuts. Better UI, easier sharing (justan iCloud link), and it syncs across all my Macs automatically.</p><p>The core logic stayed the same, but the implementation felt way cleaner.</p><p>I created a new Shortcut, enabled it for Quick Actions in Finder, and used theRun Shell Script action with /bin/zsh as the shell.</p><h3 id=\"the-setup\"><strong>The Setup</strong></h3><ul>  <li><strong>Input:</strong> Receives Files from Quick Actions</li>  <li><strong>Action:</strong> Run Shell Script</li>  <li><strong>Shell:</strong> /bin/zsh</li>  <li><strong>Pass Input:</strong> as arguments</li></ul><p>Same as before, I had to be explicit with the file path:</p><div class=\"language-plaintext highlighter-rouge\"><div class=\"highlight\"><pre class=\"highlight\"><code>for f in \"$@\"  do      cd \"$(dirname \"$f\")\"      /usr/local/bin/unrar x \"$f\"  done</code></pre></div></div><h2 id=\"the-end-result\"><strong>The End Result</strong></h2><p>Now when I download a RAR file, I don’t touch the terminal at all. Right-click,hit “Unrar Here,” and the folder just appears. I uploaded the shortcut to RoutineHub so I can manage updates and versions without any hassle.</p><p><a href=\"https://routinehub.co/shortcut/24410/\">Download on RoutineHub</a><br /><a href=\"https://routinehub.co/user/omairkhattak\">My Profile on RoutineHub</a></p>",
            "url": "https://omairkhattak.com/2025/11/11/apple-shortcuts-unrar-here",
            
            
            
            "tags": ["dev","dev-portfolio","Automation","macOS","Shortcuts"],
            
            "date_published": "2025-11-11T01:30:00+00:00",
            "date_modified": "2025-11-11T01:30:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2025/03/23/moveyourmusic",
            "title": "Spotify-to-YouTube Playlist Transfer Tool",
            "summary": null,
            "content_text": "Languages / Technology used: JavaScript (TypeScript), Next.js, VercelTool to transfer Spotify playlists to Youtube.",
            "content_html": "<p>Languages / Technology used: JavaScript (TypeScript), Next.js, Vercel</p><p>Tool to transfer Spotify playlists to Youtube.</p>",
            "url": "https://omairkhattak.com/2025/03/23/moveyourmusic",
            
            
            
            "tags": ["dev","dev-portfolio"],
            
            "date_published": "2025-03-23T00:00:00+00:00",
            "date_modified": "2025-03-23T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2025/03/23/yung-jake-archive",
            "title": "Master Archivist for The Yung Jake Archive",
            "summary": null,
            "content_text": "Part of a team building an archive of artist Jake Patterson (Yung Jake) using Sanity CMS.Part of my work has involved me using skills learnt from a previous personal project SMDDMDWRITER to build a custom CLI tool to streamline NDJSON metadata management.Langauges / Technology used: Python, JavaScript, Sanity.io, NDJSONProject is still in-progress.",
            "content_html": "<p>Part of a team building an archive of artist Jake Patterson (Yung Jake) using Sanity CMS.</p><p>Part of my work has involved me using skills learnt from a previous personal project <a href=\"https://omairkhattak.com/2024/11/15/smddmdwriter\">SMDDMDWRITER</a> to build a custom CLI tool to streamline NDJSON metadata management.</p><p>Langauges / Technology used: Python, JavaScript, Sanity.io, NDJSON</p><p><em>Project is still in-progress.</em></p>",
            "url": "https://omairkhattak.com/2025/03/23/yung-jake-archive",
            
            
            
            "tags": ["dev","dev-portfolio"],
            
            "date_published": "2025-03-23T00:00:00+00:00",
            "date_modified": "2025-03-23T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2025/03/02/grinch-ii-screenplay",
            "title": "Grinch II Screenplay & Trailer",
            "summary": null,
            "content_text": "Wrote a 138 page screenplay based on a 90-page script of a Grinch sequel written by a Reddit User’s Uncle.Fundraised $90 to make the screenplay a real live-action indie film GoFundMe)Adjusted product &amp; expectations based on budget limitations by using OpenAI Sora to create a movie trailer.###🔗 Google Drive containing script🔗 Grinch II Film Trailer (Youtube)",
            "content_html": "<iframe width=\"100%\" height=\"400\" src=\"https://www.youtube.com/embed/atHmaYAvlmY?si=6dwBzfdTB0A6oyBA\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe><p>Wrote a 138 page screenplay based on a <a href=\"https://www.scribd.com/document/807085962/GRINCH-2\">90-page script</a> of a Grinch sequel written by a Reddit User’s Uncle.</p><p>Fundraised $90 to make the screenplay a real live-action indie film <a href=\"https://www.gofundme.com/f/help-bring-grinch-2-to-life-support-indie-film\">GoFundMe)</a></p><p>Adjusted product &amp; expectations based on budget limitations by using OpenAI Sora to create a <a href=\"https://youtu.be/atHmaYAvlmY\">movie trailer</a>.###🔗 <a href=\"https://drive.google.com/drive/folders/1CKTXXcC2Tfzm9wFiMZ8de-MAfCL-LdxZ\">Google Drive containing script</a></p><p>🔗 <a href=\"https://youtu.be/atHmaYAvlmY\">Grinch II Film Trailer (Youtube)</a></p>",
            "url": "https://omairkhattak.com/2025/03/02/grinch-ii-screenplay",
            
            
            
            "tags": ["writing","video","AI"],
            
            "date_published": "2025-03-02T00:00:00+00:00",
            "date_modified": "2025-03-02T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2024/11/15/smddmdwriter",
            "title": "Social Media Data Download Metadata Writer",
            "summary": null,
            "content_text": "Social Media Data Download Metadata Writer (SMDDMDWRITER) SMDDMDWRITER makes it easy to organize and rewrite metadata back into your social media data exports. After your export is analyzed, it’s neatly formatted and organized in a csv for you to make any edits you want. Your post captions, sender usernames, geolocation data, tagged users, date uploaded, mismanaged files, all processed and cleaned into two csv files. Utilizing kDMItems and Quicktime tags, SMDDMDWRTIER prepares media for Apple Photos and displaying accurate metadata in macOS Finder.Features  Processes Instagram data exports in JSON and HTML formats.  Organizes &amp; formats metadata into clean CSV files for editing.  Supports geolocation, captions, usernames, and tagging.  Prepares media for Apple Photos, macOS Finder, and UNIX filesystem indexing.Languages used: Python, JSON, Javascript##AcknowledgmentsThis project would not have been possible without the contributions of the open-source community. The following libraries and tools played a role in development:  bs4 (v0.0.2): A wrapper around BeautifulSoup for web scraping.  beautifulsoup4 (v4.12.3): A library for parsing HTML and XML documents.  soupsieve (v2.6): A CSS selector library used to imrpove HTML parsing with BeautifulSoup.  ftfy (v6.3.1): A library for fixing Unicode issues in text processing.  wcwidth (v0.2.13): A library for measuring the width of Unicode characters.  pytz (v2024.2): A library for timezone conversions and handling.  numpy (v2.2.1): The fundamental package for numerical computing in Python.  pandas (v2.2.3): A library for data manipulation and analysis.  python-dateutil (v2.9.0.post0): A library for date and time manipulation.  six (v1.17.0): A utility library for writing Python code compatible with both Python 2 and 3.🔗 Check the project out on Github!",
            "content_html": "<p>Social Media Data Download Metadata Writer (SMDDMDWRITER) SMDDMDWRITER makes it easy to organize and rewrite metadata back into your social media data exports. After your export is analyzed, it’s neatly formatted and organized in a csv for you to make any edits you want. Your post captions, sender usernames, geolocation data, tagged users, date uploaded, mismanaged files, all processed and cleaned into two csv files. Utilizing kDMItems and Quicktime tags, SMDDMDWRTIER prepares media for Apple Photos and displaying accurate metadata in macOS Finder.</p><p>Features</p><ul>  <li>Processes Instagram data exports in JSON and HTML formats.</li>  <li>Organizes &amp; formats metadata into clean CSV files for editing.</li>  <li>Supports geolocation, captions, usernames, and tagging.</li>  <li>Prepares media for Apple Photos, macOS Finder, and UNIX filesystem indexing.</li></ul><p>Languages used: Python, JSON, Javascript</p><p>##AcknowledgmentsThis project would not have been possible without the contributions of the open-source community. The following libraries and tools played a role in development:</p><ul>  <li>bs4 (v0.0.2): A wrapper around BeautifulSoup for web scraping.</li>  <li>beautifulsoup4 (v4.12.3): A library for parsing HTML and XML documents.</li>  <li>soupsieve (v2.6): A CSS selector library used to imrpove HTML parsing with BeautifulSoup.</li>  <li>ftfy (v6.3.1): A library for fixing Unicode issues in text processing.</li>  <li>wcwidth (v0.2.13): A library for measuring the width of Unicode characters.</li>  <li>pytz (v2024.2): A library for timezone conversions and handling.</li>  <li>numpy (v2.2.1): The fundamental package for numerical computing in Python.</li>  <li>pandas (v2.2.3): A library for data manipulation and analysis.</li>  <li>python-dateutil (v2.9.0.post0): A library for date and time manipulation.</li>  <li>six (v1.17.0): A utility library for writing Python code compatible with both Python 2 and 3.</li></ul><p>🔗 <a href=\"https://github.com/drwavy/smddmdwriter\">Check the project out on Github!</a></p>",
            "url": "https://omairkhattak.com/2024/11/15/smddmdwriter",
            
            
            
            "tags": ["dev","dev-portfolio"],
            
            "date_published": "2024-11-15T00:00:00+00:00",
            "date_modified": "2024-11-15T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2024/09/26/eyeball-video",
            "title": "Eyeball Short-form financial content",
            "summary": null,
            "content_text": "September 2024Short-form content commissioned for Eyeball, a short-form content platform for in-depth financial news.📺 Playlist on YouTube",
            "content_html": "<p><em>September 2024</em></p><p>Short-form content commissioned for <a href=\"https://www.eyeball.com\">Eyeball</a>, a short-form content platform for in-depth financial news.</p><p>📺 <a href=\"https://www.youtube.com/playlist?list=PL84LJLG_hf8-k9EotWMrjbx1jIR2V1D5j\">Playlist on YouTube</a></p>",
            "url": "https://omairkhattak.com/2024/09/26/eyeball-video",
            
            
            
            
            
            "date_published": "2024-09-26T00:00:00+00:00",
            "date_modified": "2024-09-26T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2024/08/29/tixscan",
            "title": "Technical Cofounder @ Tixscan",
            "summary": null,
            "content_text": "Cofounded with Jacob Koziphatt (Susquehanna, Axal.io) and Shize Che (Comp Eng. PhD student), TixScan is an Augmented Reality Ticketing System designed for Apple Vision Pro.Languages used: Swift, Swift-UI, C",
            "content_html": "<p>Cofounded with Jacob Koziphatt (Susquehanna, Axal.io) and Shize Che (Comp Eng. PhD student), TixScan is an Augmented Reality Ticketing System designed for Apple Vision Pro.</p><p>Languages used: Swift, Swift-UI, C</p>",
            "url": "https://omairkhattak.com/2024/08/29/tixscan",
            
            
            
            "tags": ["dev","dev-portfolio"],
            
            "date_published": "2024-08-29T00:00:00+00:00",
            "date_modified": "2024-08-29T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2024/05/01/nov",
            "title": "iOS Engineer @ NOV",
            "summary": null,
            "content_text": "May 2024 - June 2025iOS Engineer at Non-Obvious Ventures (NOV)As an iOS Engineer I  Prototyped an efficient bridge inspection documentation system in Swift for field engineers.Languages used: Swift, AWS (Spark, S3, Managed Services)Preview of demos available upon approved request.",
            "content_html": "<p><em>May 2024 - June 2025</em></p><p>iOS Engineer at Non-Obvious Ventures (NOV)</p><p>As an iOS Engineer I</p><ul>  <li>Prototyped an efficient bridge inspection documentation system in Swift for field engineers.</li></ul><p>Languages used: Swift, AWS (Spark, S3, Managed Services)</p><p><em>Preview of demos available upon approved request.</em></p>",
            "url": "https://omairkhattak.com/2024/05/01/nov",
            
            
            
            "tags": ["dev","dev-portfolio"],
            
            "date_published": "2024-05-01T00:00:00+00:00",
            "date_modified": "2024-05-01T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2023/05/01/kanye-west-le-ravissement-de-frank-n-stein",
            "title": "Kanye West and Le Ravissement de Frank N. Stein",
            "summary": null,
            "content_text": "  IntroductionAt 10pm Sunday August 22nd Kanye posted an image of a room with two rectangular prisms in each corner to his Instagram. My first impression was that it may have had something to do with Drake because of how the prisms appear to be the same size but one has a larger shadow than the other. Later on twitter I came across the link to the video, posted by 81 point bean @beeayeembeeeye under a Watching The Throne @KanyePodcast tweet. The YouTube video is titled Le Ravissement de Frank N. Stein and was posted by William Scanlon on the 25th of August 2013. Could August 25 be a protentional release date? Two days from the upload of this photo? Unlikely. The description of the YouTube video is “by Georges Schwizgebel, 1982”. This is the only video William Scanlon has ever uploaded since joining the site 4 months prior on May 1st 2013.Metadata AnalysisHere we have the metadata of William Scanlon’s channel. The channel was created 2013-05-01T21:36:18Z, the first of May 2013 at 11:36 pm Zulu time, more commonly known as UTC, coordinated universal time. His subscriber count is hidden. I didn’t know you could do that all the way back in 2013.Here we have the metadata of the video itself. 2013-08-25T09:28:36Z, the 25th of August 2013 at 9:30 in the morning. That’s a 115 days, 21 hours, 52 minutes and 18 second difference between his channel creation and this videos upload. The video was uploaded with three tags; “Abstract Expressionism (Art Period/Movement)”, “Experimental”, “Animation” and “Time (Dimension)”. The tags Experimental, Animation and Abstract Expressionism are pretty self-explanatory. (joke) it kinda feels like Francis Bacon’s take on those YouTube gamer commentary videos but instead of some hype song its just an aphex twin track. What gets me is the “Time (Dimension)” tag. What does this video have to do with time? The metadata also details that the video is 2 dimensional, I think this actually about the video but it could have something to do with how YouTube had those 3d &amp; 360 videos for a while. All that exists of the topic details is a Wikipedia link to a page on Entertainment.Georges SchwizgebelThere isn’t much information about the artist Georges Schwizgebel himself. His Wikipedia is bare and all we know is that he is a Swiss animation film director. Georges Schwizgebel made all his films under an animated film production company he founded with 3 friends, Studio GDS. Even the website doesn’t have any deeper information on Georges.Le Ravissement de Frank N. SteinLe Ravissement de Frank N. Stein is French for The Rapture of Frank N. Stein. Rapture is an interesting word to use because I don’t see any rapturing happening in this video. However this does remind me of the second DONDA listening party where Kanye raptured himself. Another translation of “ravissement” is ecstasy. Could this have something to do with Kanye’s single, XTCY?There is a painting that goes by a very similar title, Le ravissement de saint Paul by Paul Scarron, known in English as the ecstasy of saint paul, not the rapture of saint paul. It does certainly look like he’s being raptured in the painting thought. Saint paul was an apostle of christ, considered one of the most important people in Christianity after Jesus. I don’t know what else to takeaway from the possible saint paul reference aside from maybe Kanye is the most important thing in Christianity now after Jesus. Idk, im not Christian, the painting might have nothing at all to do with anything. The point is this could be the rapture of Frankenstein or the ecstasy of Frankenstein. Judging by the end of the video where Frankenstein doesn’t get raptured &amp; by the possible painting reference, I’m going with the ecstasy of Frankenstein.The Studio GDS website provides a short description of the film. The film is explained as “The slow construction of an image on a rhythm of steps, ends with the meeting of the monster and his fiancée”.Malibooyah1789 on r/WestSubEver linked an animation review blog that gave the video some more context.  ‘Le ravissement de Frank N. Stein’ starts with very abstract images, which resolve into Frankenstein’s laboratory as depicted in the film from 1931.  After 1’40 we become the monster itself, walking through endless chambers and corridors and staircases in an almost computer animation-like long sequence of perspective animation. The rooms, initially filled with abstract shapes, become more and more complex. They contain more and more windows and human forms, and finally moving human forms, ending with multiple copies of the monster’s bride. In the end we watch the monster itself, in his depiction by Boris Karloff. He smiles at his bride, but she only screams…So, it’s pretty solid to assume that Kanye is Frankenstein’s monster. Let’s get into the analysis of the video itself.AnalysisThe beginning of the video starts off with abstracts. These abstracts slowly take form to show us Frankenstein’s laboratory. Once we see Frankenstein’s laboratory we begin to move in the perspective of Frankenstein’s monster. This is where we begin to go thru this seemingly endless number of rooms, one after the other. The rooms themselves are constant, with the only changes being the geometric figures appearing and taking a more human shape, the shape being of the monsters bride.The monsters bride in this context is Kanye’s ex-wife, Kim Kardashian. Kanye’s hinted in the past that he doesn’t like LA, mostly because the city took his mother from him. The way I see this is in relation to the Kim K effect. Lots of influencers come to LA and the majority of them end up looking like Kim or Kylie. This is no secret, plastic surgeons say that Kim’s face is the most requested face without a close second. Circling back to the video, it could be assumed that Kanye is walking thru LA and seeing these clones of his wife, imperfect clones because even though they resemble Kim, they’re not fully detailed. The lack of detail could indicate two things; either they’re just attempts to copy Kim or they’re part of a second possible meaning; Kanye is becoming more aware.The second possible reason for these geometric figures to be gaining definition as the film progresses is that it’s Kanye becoming more conscious of his surroundings and literally looking closer at the details. Kanye is becoming hyperaware of the people around him and moving thru these rooms to get away from them and to his wife, which we’ll also get into in the final scene.At the point the room disappears and it’s just the figures, here is Kanye is in the dark before the light. After the last dark room Kanye walks into the light again. This time it’s a hallway. The arches are reminiscent of the Jesus is King Arches &amp; the arched hallways in his own home. The music makes this scene feel like a transition because the music changes as soon as he enters the hallway and quickly becomes chaotic as the scene changes from the hallway to a few seconds of a boat on water and then back to the dark rooms. The boat scene reminds me of the snippet Ye posted to twitter for the Believe What I Say snippet. I believe in when he posted that snippet he was quiet before and after on twitter, possibly alluding to how this was a momentary break thru him trying to get out of the dark rooms.He’s in the dark rooms once again but this time there are windows shining light to illuminate the room a little. This is all feeling like his strong awakening as a Christian and his searching of faith. This bit is short and soon he’s in what appears to be on the outside of a building. The walls on the right are gone and you can see what looks like a sunrise or sunset.If it’s a sunrise its continuing the theme of awakening, if it’s a sunset it could indicate that he feels like he’s running out of time and is trying to get to something before it’s too late. Then we’re back into the darkness. This time its not just clones of Kim, but of Kanye as well. I’m not sure what this could depict aside from this one bar from I Love Kanye;  See I invented Kanye, it wasn’t any Kanyes, And now I look and look around and there’s so many KanyesWhen the view is taking us down some stairs to a room with two doors, it’s an optical illusion and shows us Frankenstein’s monsters face. I believe this is telling us that this entire Journey was in his mind, Kanye going thru all these rooms, perceptions and this mental journey within himself.He walks down the stairs smiling to his wife, who responds with a scream. This could be something personal in Ye’s relationship and how maybe Kim perceived Kanye to be a different person when he was in different mental states or how Kim reacted to the changes Kanye made in himself or his actions over time and episodes.The ending scene zooms out of the monsters face out to a theater and out a strip of film. I think this ending scene is the most obvious. It’s Kanye West, the celebrity, being watched by the world as he goes thru his horrors. His existence, broadcasted to the world, for better or for worse for their entertainment, their reaction to his life recorded and put online all for him to see again from a twisted perspective not of his own, a feedback loop fading to black.",
            "content_html": "<p align=\"center\">  <img src=\"https://image.tmdb.org/t/p/w780/6wNYgoJTrMyDkKUg9O6ikGzUL7T.jpg\" alt=\"Image Description\" /></p><h1 id=\"introduction\">Introduction</h1><p>At 10pm Sunday August 22nd Kanye posted an image of a room with two rectangular prisms in each corner to his Instagram. My first impression was that it may have had something to do with Drake because of how the prisms appear to be the same size but one has a larger shadow than the other. Later on twitter I came across the link to the video, posted by 81 point bean @beeayeembeeeye under a Watching The Throne @KanyePodcast tweet. The YouTube video is titled <em>Le Ravissement de Frank N. Stein</em> and was posted by William Scanlon on the 25th of August 2013. Could August 25 be a protentional release date? Two days from the upload of this photo? Unlikely. The description of the YouTube video is “by Georges Schwizgebel, 1982”. This is the only video William Scanlon has ever uploaded since joining the site 4 months prior on May 1st 2013.</p><h1 id=\"metadata-analysis\">Metadata Analysis</h1><p>Here we have the metadata of William Scanlon’s channel. The channel was created 2013-05-01T21:36:18Z, the first of May 2013 at 11:36 pm Zulu time, more commonly known as UTC, coordinated universal time. His subscriber count is hidden. I didn’t know you could do that all the way back in 2013.</p><p>Here we have the metadata of the video itself. 2013-08-25T09:28:36Z, the 25th of August 2013 at 9:30 in the morning. That’s a 115 days, 21 hours, 52 minutes and 18 second difference between his channel creation and this videos upload. The video was uploaded with three tags; “Abstract Expressionism (Art Period/Movement)”, “Experimental”, “Animation” and “Time (Dimension)”. The tags Experimental, Animation and Abstract Expressionism are pretty self-explanatory. (joke) it kinda feels like Francis Bacon’s take on those YouTube gamer commentary videos but instead of some hype song its just an aphex twin track. What gets me is the “Time (Dimension)” tag. <strong>What does this video have to do with time?</strong> The metadata also details that the video is 2 dimensional, I think this actually about the video but it could have something to do with how YouTube had those 3d &amp; 360 videos for a while. All that exists of the topic details is a Wikipedia link to a page on Entertainment.</p><h2 id=\"georges-schwizgebel\">Georges Schwizgebel</h2><p>There isn’t much information about the artist Georges Schwizgebel himself. His Wikipedia is bare and all we know is that he is a Swiss animation film director. Georges Schwizgebel made all his films under an animated film production company he founded with 3 friends, Studio GDS. Even the website doesn’t have any deeper information on Georges.</p><h2 id=\"le-ravissement-de-frank-n-stein\">Le Ravissement de Frank N. Stein</h2><p><em>Le Ravissement de Frank N. Stein</em> is French for <em>The Rapture of Frank N. Stein</em>. Rapture is an interesting word to use because I don’t see any rapturing happening in this video. However this does remind me of the second DONDA listening party where Kanye raptured himself. Another translation of “ravissement” is ecstasy. <strong>Could this have something to do with Kanye’s single, XTCY?</strong></p><p>There is a painting that goes by a very similar title, <em>Le ravissement de saint Paul</em> by Paul Scarron, known in English as the ecstasy of saint paul, not the rapture of saint paul. It does certainly look like he’s being raptured in the painting thought. Saint paul was an apostle of christ, considered one of the most important people in Christianity after Jesus. I don’t know what else to takeaway from the possible saint paul reference aside from maybe Kanye is the most important thing in Christianity now after Jesus. Idk, im not Christian, the painting might have nothing at all to do with anything. The point is this could be the rapture of Frankenstein or the ecstasy of Frankenstein. Judging by the end of the video where Frankenstein doesn’t get raptured &amp; by the possible painting reference, I’m going with the ecstasy of Frankenstein.</p><p>The Studio GDS website provides a short description of the film. The film is explained as <strong>“The slow construction of an image on a rhythm of steps, ends with the meeting of the monster and his fiancée”.</strong></p><p>Malibooyah1789 on r/WestSubEver linked an animation review blog that gave the video some more context.</p><blockquote>  <p><strong><em>‘Le ravissement de Frank N. Stein’ starts with very abstract images, which resolve into Frankenstein’s laboratory as depicted in the film from 1931.</em></strong> <br /><br /> <em>After 1’40 we become the monster itself, walking through endless chambers and corridors and staircases in an almost computer animation-like long sequence of perspective animation. The rooms, initially filled with abstract shapes, become more and more complex. They contain more and more windows and human forms, and finally moving human forms, ending with multiple copies of the monster’s bride. In the end we watch the monster itself, in his depiction by Boris Karloff. He smiles at his bride, but she only screams…</em></p></blockquote><p>So, it’s pretty solid to assume that Kanye is Frankenstein’s monster. Let’s get into the analysis of the video itself.</p><h1 id=\"analysis\">Analysis</h1><p>The beginning of the video starts off with abstracts. These abstracts slowly take form to show us Frankenstein’s laboratory. Once we see Frankenstein’s laboratory we begin to move in the perspective of Frankenstein’s monster. This is where we begin to go thru this seemingly endless number of rooms, one after the other. The rooms themselves are constant, with the only changes being the geometric figures appearing and taking a more human shape, the shape being of the monsters bride.</p><p>The monsters bride in this context is Kanye’s ex-wife, Kim Kardashian. Kanye’s hinted in the past that he doesn’t like LA, mostly because the city took his mother from him. The way I see this is in relation to the Kim K effect. Lots of influencers come to LA and the majority of them end up looking like Kim or Kylie. This is no secret, plastic surgeons say that Kim’s face is the most requested face without a close second. Circling back to the video, it could be assumed that Kanye is walking thru LA and seeing these clones of his wife, imperfect clones because even though they resemble Kim, they’re not fully detailed. The lack of detail could indicate two things; either they’re just attempts to copy Kim or they’re part of a second possible meaning; Kanye is becoming more aware.</p><p>The second possible reason for these geometric figures to be gaining definition as the film progresses is that it’s Kanye becoming more conscious of his surroundings and literally looking closer at the details. Kanye is becoming hyperaware of the people around him and moving thru these rooms to get away from them and to his wife, which we’ll also get into in the final scene.</p><p>At the point the room disappears and it’s just the figures, here is Kanye is in the dark before the light. After the last dark room Kanye walks into the light again. This time it’s a hallway. The arches are reminiscent of the Jesus is King Arches &amp; the arched hallways in his own home. The music makes this scene feel like a transition because the music changes as soon as he enters the hallway and quickly becomes chaotic as the scene changes from the hallway to a few seconds of a boat on water and then back to the dark rooms. The boat scene reminds me of the snippet Ye posted to twitter for the Believe What I Say snippet. I believe in when he posted that snippet he was quiet before and after on twitter, possibly alluding to how this was a momentary break thru him trying to get out of the dark rooms.</p><p>He’s in the dark rooms once again but this time there are windows shining light to illuminate the room a little. This is all feeling like his strong awakening as a Christian and his searching of faith. This bit is short and soon he’s in what appears to be on the outside of a building. The walls on the right are gone and you can see what looks like a sunrise or sunset.</p><p>If it’s a sunrise its continuing the theme of awakening, if it’s a sunset it could indicate that he feels like he’s running out of time and is trying to get to something before it’s too late. Then we’re back into the darkness. This time its not just clones of Kim, but of Kanye as well. I’m not sure what this could depict aside from this one bar from I Love Kanye;</p><blockquote>  <p>See I invented Kanye, it wasn’t any Kanyes, <br />And now I look and look around and there’s so many Kanyes</p></blockquote><p>When the view is taking us down some stairs to a room with two doors, it’s an optical illusion and shows us Frankenstein’s monsters face. I believe this is telling us that this entire Journey was in his mind, Kanye going thru all these rooms, perceptions and this mental journey within himself.</p><p>He walks down the stairs smiling to his wife, who responds with a scream. This could be something personal in Ye’s relationship and how maybe Kim perceived Kanye to be a different person when he was in different mental states or how Kim reacted to the changes Kanye made in himself or his actions over time and episodes.</p><p>The ending scene zooms out of the monsters face out to a theater and out a strip of film. I think this ending scene is the most obvious. It’s Kanye West, the celebrity, being watched by the world as he goes thru his horrors. His existence, broadcasted to the world, for better or for worse for their entertainment, their reaction to his life recorded and put online all for him to see again from a twisted perspective not of his own, a feedback loop fading to black.</p><p><br /></p><iframe width=\"100%\" height=\"400\" src=\"https://www.youtube.com/embed/XmMyx2_4STg?si=s2MM7h60OtT98G2L\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe>",
            "url": "https://omairkhattak.com/2023/05/01/kanye-west-le-ravissement-de-frank-n-stein",
            
            
            
            
            
            "date_published": "2023-05-01T00:00:00+00:00",
            "date_modified": "2023-05-01T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2022/08/28/much-adoge-about-nothing-podcast",
            "title": "Much Adoge About Nothing Podcast",
            "summary": null,
            "content_text": "Much Adoge About Nothing was a Podcast I started to interview the early adopters of Helladoge, a web3 social network that allowed users to attain dogecoin for their participation. Podcast guests include Mahbod Moghadam, Zevon Odelberg, and Shanaz Khan.📺 Playlist on YouTubeMahbod MoghadamJanuary 7, 2022Click here to read Mahbod’s WikipediaZevon OdelbergApril 10, 2022Click here to listen to Zevon’s Podcast Kinda MurderyShanaz KhanAugust 28, 2022Click here to read about Shanaz on HackerNoon",
            "content_html": "<p>Much Adoge About Nothing was a Podcast I started to interview the early adopters of Helladoge, a web3 social network that allowed users to attain dogecoin for their participation. Podcast guests include Mahbod Moghadam, Zevon Odelberg, and Shanaz Khan.</p><p>📺 <a href=\"https://www.youtube.com/playlist?list=PL84LJLG_hf89BdJAayquOoTCF3diBayRf\">Playlist on YouTube</a></p><hr /><h2 id=\"mahbod-moghadam\">Mahbod Moghadam</h2><p><em>January 7, 2022</em></p><iframe width=\"100%\" height=\"400\" src=\"https://www.youtube.com/embed/ph4soPNiQe4?si=8GXow8gVIc3OtE2a\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe><p><a href=\"https://en.wikipedia.org/wiki/Mahbod_Moghadam\">Click here to read Mahbod’s Wikipedia</a></p><hr /><h2 id=\"zevon-odelberg\">Zevon Odelberg</h2><p><em>April 10, 2022</em></p><iframe width=\"100%\" height=\"400\" src=\"https://www.youtube.com/embed/zhusQY4Qa04?si=tqAHVP6C_Juc-dut\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe><p><a href=\"https://podcasts.apple.com/us/podcast/kinda-murdery/id1533998299\">Click here to listen to Zevon’s Podcast <strong>Kinda Murdery</strong></a></p><hr /><h2 id=\"shanaz-khan\">Shanaz Khan</h2><p><em>August 28, 2022</em></p><iframe width=\"100%\" height=\"400\" src=\"https://www.youtube.com/embed/a7F8psxZ3bM?si=GB0qIl71IWkaF1ZJ\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe><p><a href=\"https://hackernoon.com/about/shanaz\">Click here to read about Shanaz on HackerNoon</a></p>",
            "url": "https://omairkhattak.com/2022/08/28/much-adoge-about-nothing-podcast",
            
            
            
            
            
            "date_published": "2022-08-28T00:00:00+00:00",
            "date_modified": "2022-08-28T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2021/09/01/helladoge",
            "title": "HellaDoge",
            "summary": null,
            "content_text": "September 2021 - June 2022The third member and first employee of Helladoge, a Web3 Social Network with a mission to end poverty via fair distribution of profits paid to users in crypto. Cofounded by Mahbod Moghadam, serial entrepreur (Genius, Everipedia, HellaDoge) and Zeeshan Mughal of Quovo (sold to Plaid), former HFT at JPMorgan.As a software engineer I  Debugged Onboarding Process User Flow  Developed tokenomics-based algorithms to facilitate automated Dogecoin-to-USD direct deposits.  Prototyped the HellaDoge iOS ApplicationLanguages used: Python, Ruby on Rails, Javascript, Swift##HellaDoge is now defunct. Below are articles about HellaDoge:🔗 THE HELLADOGE MANIFESTO: Why Web3 Ads are Like Instagram Ads on Steroids🔗 HellaDoge WeFundr🔗 HellaDoge WeFundr🔗 TechGraph Article by Krishna Mali",
            "content_html": "<p><em>September 2021 - June 2022</em></p><p>The third member and first employee of Helladoge, a Web3 Social Network with a mission to end poverty via fair distribution of profits paid to users in crypto. Cofounded by Mahbod Moghadam, serial entrepreur (Genius, Everipedia, HellaDoge) and Zeeshan Mughal of Quovo (sold to Plaid), former HFT at JPMorgan.</p><p>As a software engineer I</p><ul>  <li>Debugged Onboarding Process User Flow</li>  <li>Developed tokenomics-based algorithms to facilitate automated Dogecoin-to-USD direct deposits.</li>  <li>Prototyped the HellaDoge iOS Application</li></ul><p>Languages used: Python, Ruby on Rails, Javascript, Swift##HellaDoge is now defunct. Below are articles about HellaDoge:</p><p>🔗 <a href=\"https://hackernoon.com/the-helladoge-manifesto-why-web3-ads-are-like-instagram-ads-on-steroids\">THE HELLADOGE MANIFESTO: Why Web3 Ads are Like Instagram Ads on Steroids</a></p><p>🔗 <a href=\"https://wefunder.com/helladoge\">HellaDoge WeFundr</a></p><p>🔗 <a href=\"https://wefunder.com/helladoge\">HellaDoge WeFundr</a></p><p>🔗 <a href=\"https://techgraph.co/social/mahbod-moghadam-speaks-on-helladoge-mark-zuckerberg/\">TechGraph Article by Krishna Mali</a></p>",
            "url": "https://omairkhattak.com/2021/09/01/helladoge",
            
            
            
            "tags": ["dev","dev-portfolio"],
            
            "date_published": "2021-09-01T00:00:00+00:00",
            "date_modified": "2021-09-01T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2020/05/27/drwavy-simp-to-pimp",
            "title": "SIMP 💩 2 PIMP 💎 AMAZING VIDEO RARE ART!!IN THERE! Music Video for DRWAVY",
            "summary": null,
            "content_text": "Originally uploaded May 27, 2020",
            "content_html": "<p>Originally uploaded May 27, 2020</p><iframe width=\"100%\" height=\"400\" src=\"https://www.youtube.com/embed/grC08cACkN4?si=QktK4BEcsnMYjYIG\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe>",
            "url": "https://omairkhattak.com/2020/05/27/drwavy-simp-to-pimp",
            
            
            
            
            
            "date_published": "2020-05-27T00:00:00+00:00",
            "date_modified": "2020-05-27T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2019/11/02/cj-skate-edit",
            "title": "Skate Edit for CJ",
            "summary": null,
            "content_text": "Orginally uploaded on November 11, 2019",
            "content_html": "<p>Orginally uploaded on November 11, 2019</p><iframe width=\"100%\" height=\"400\" src=\"https://www.youtube.com/embed/ogFZsDRWhUA?si=e7IExU1EiMXmRtcZ\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe>",
            "url": "https://omairkhattak.com/2019/11/02/cj-skate-edit",
            
            
            
            
            
            "date_published": "2019-11-02T00:00:00+00:00",
            "date_modified": "2019-11-02T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2017/12/27/drake-one-dance-iridocyclitis-edition",
            "title": "Drake One Dance, Iridocyclitis Edition",
            "summary": null,
            "content_text": "Originally uploaded on December 12, 2017Exploration of MIDI mapping and sampling.",
            "content_html": "<p>Originally uploaded on December 12, 2017</p><p>Exploration of MIDI mapping and sampling.</p><iframe width=\"100%\" height=\"400\" src=\"https://www.youtube.com/embed/WZhNNbDsh2Q?si=L_vjye9Qufsp2hwx\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe>",
            "url": "https://omairkhattak.com/2017/12/27/drake-one-dance-iridocyclitis-edition",
            
            
            
            "tags": ["audio","video"],
            
            "date_published": "2017-12-27T00:00:00+00:00",
            "date_modified": "2017-12-27T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2017/04/17/count-em-john-music-video",
            "title": "Music Video for Count Em by John",
            "summary": null,
            "content_text": "Orginally uploaded November 2nd, 2019",
            "content_html": "<p>Orginally uploaded November 2nd, 2019</p><iframe width=\"100%\" height=\"400\" src=\"https://www.youtube.com/embed/nVt24n8FT4w?si=bHULlsO5i-zekZQJ\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe>",
            "url": "https://omairkhattak.com/2017/04/17/count-em-john-music-video",
            
            
            
            
            
            "date_published": "2017-04-17T00:00:00+00:00",
            "date_modified": "2017-04-17T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2017/04/17/myp-pp",
            "title": "HipHop and its Message",
            "summary": null,
            "content_text": "Orginally uploaded on April 17, 2017Click here to read the PDF (24 pages, Word Count 3375)",
            "content_html": "<p>Orginally uploaded on April 17, 2017</p><iframe width=\"100%\" height=\"400\" src=\"https://www.youtube.com/embed/4kUiR_XVywI?si=RgRnYLSqHHHKrxJi\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe><p><a href=\"/assets/files/Personal-Project-HipHop-and-its-message.pdf\"><strong>Click here</strong> to read the PDF (24 pages, Word Count 3375)</a></p>",
            "url": "https://omairkhattak.com/2017/04/17/myp-pp",
            
            
            
            "tags": ["media analysis","writing"],
            
            "date_published": "2017-04-17T00:00:00+00:00",
            "date_modified": "2017-04-17T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2013/07/25/top-10-mac-apps",
            "title": "top 10 mac apps",
            "summary": null,
            "content_text": "Orginally uploaded on July 25, 2013",
            "content_html": "<p>Orginally uploaded on July 25, 2013</p><iframe width=\"100%\" height=\"400\" src=\"https://www.youtube.com/embed/9Qx_qK8Et54?si=XOa8DuM8oPhNYS4d\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe>",
            "url": "https://omairkhattak.com/2013/07/25/top-10-mac-apps",
            
            
            
            
            
            "date_published": "2013-07-25T00:00:00+00:00",
            "date_modified": "2013-07-25T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        },
    
        {
            "id": "https://omairkhattak.com/2012/09/22/ipod-touch-4-review",
            "title": "iPod Touch 4 Review",
            "summary": null,
            "content_text": "Orginally uploaded on September 22, 2012",
            "content_html": "<p>Orginally uploaded on September 22, 2012</p><iframe width=\"100%\" height=\"400\" src=\"https://www.youtube.com/embed/OmWKhnNE2Hs?si=wJs3eXdbLMnO29iL\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe>",
            "url": "https://omairkhattak.com/2012/09/22/ipod-touch-4-review",
            
            
            
            
            
            "date_published": "2012-09-22T00:00:00+00:00",
            "date_modified": "2012-09-22T00:00:00+00:00",
            
                "author": 
                "Omair Khattak"
                
            
        }
    
    ]
}