name: vsl-hyperframes description: | Generate a complete Video Sales Letter (VSL) from a script or product brief: cloned-voice narration (ElevenLabs), HTML-rendered motion graphics (HyperFrames), muxed into a final MP4 — fully local rendering, no cloud render credits. Triggers on: "make a VSL", "sales video", "promo video", "launch video" from a script or offer/product description. Proven 2026-07-05 across two brands (RDU, AI5x) and two models (Claude, GPT-5.5), including one hardening cycle for overlap prevention and design quality.
Prepared by Navi | March 10, 2026 Task: Update LinkedIn to reflect RDU and thewolves.ai
- Followers: 21K
- Recent articles: 2023 vintage (needs fresher activity)
- Bio teaser: "See if you qualify for a GUARANTEED senior role" (RDU funnel hook — keep this direction)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| internal static void SplitDirectoryFile(string path, out string directory, out string file) | |
| { | |
| directory = null; | |
| file = null; | |
| // assumes a validated full path | |
| if (path != null) | |
| { | |
| int length = path.Length; | |
| int rootLength = GetRootLength(path); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Items = new Meteor.Collection("items"); | |
| if (Meteor.isClient) { | |
| Template.list.helpers({ | |
| items: function() { | |
| return Items.find(); | |
| }, | |
| doneClass: function() { | |
| if(this.done) | |
| return "done"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <head> | |
| <title>Spartan TODO</title> | |
| </head> | |
| <body> | |
| <h1>DO OR DIE!</h1> | |
| {{> list}} | |
| {{> controls }} | |
| </body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void LoginAsCustomer(LoginInfo loginInfo, CustomerType customerType = CustomerType.NEW_CUSTOMER, int numberOfTries = 3) | |
| { | |
| // ... | |
| } | |
| var loginInfo = new LoginInfo("Darth Vader", "ihatewookes"); | |
| LoginAsCustomer(loginInfo); | |
| // What if we need to override a default? No problem. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void ValidateCustomer(int maximumAge) | |
| { | |
| //... | |
| } | |
| ValidateCustomer(25); | |
| // Using an Age class to restrict values | |
| public class Age |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public enum CustomerType | |
| { | |
| NEW_CUSTOMER, | |
| REWARDS_CUSTOMER, | |
| REGULAR_CUSTOMER | |
| } | |
| public void LoginAsCustomer(LoginInfo loginInfo, CustomerType customerType, int numberOfTries) | |
| { | |
| // ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void LoginAsCustomer(LoginInfo loginInfo, string customerType, int numberOfTries) | |
| { | |
| // ... | |
| } | |
| var loginInfo = new LoginInfo("Darth Vader", "ihatewookes"); | |
| LoginAsCustomer(loginInfo, "New Customer", 3); |
NewerOlder