This is not a Next.js project. It's a Vite-based SPA (Single Page Application) served from Perplexity AI's CDN. The build identifier is web-resources-build: 2026.4.21.646.
Full record of the build process: prompts, decisions, scripts, data sources, enrichment logic, and deployment steps.
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Claude CLI + tmux on WSL2 — The Complete Setup Guide</title> | |
| <style> | |
| :root { | |
| --bg: #F7F6F2; | |
| --surface: #FFFFFF; |
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
- Create a bare clone of the repository.
(This is temporary and will be removed so just do it wherever.)
git clone --bare git@github.com:usi-systems/easytrace.git
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
| cd ~ | |
| sudo yum update | |
| sudo yum install java-1.7.0-openjdk.i686 -y | |
| wget https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.19.9.tar.gz -O elasticsearch.tar.gz | |
| tar -xf elasticsearch.tar.gz | |
| rm elasticsearch.tar.gz | |
| mv elasticsearch-* elasticsearch | |
| sudo mv elasticsearch /usr/local/share |
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
| //using the RazorEngine @http://razorengine.codeplex.com/ | |
| // I am using this with ASP.NET forms (.NET 4.0) for email templates | |
| // 1. Email HTML Templates Location: | |
| // ~/templates/email/MyEmailTemplate.cshtml (name something useful like Page, Master where email is being sent) | |
| //Helper methods - put this shit in a common helper class like below: | |
| using RazorEngine; |
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
| Tools to use for .NET and Web development: | |
| - Resharper | |
| http://confluence.jetbrains.net/display/ReSharper/ReSharper+6.1.1+Nightly+Builds | |
| - Reflector | |
| http://www.reflector.net/ | |
| - Linqpad | |
| http://www.linqpad.net/ | |
| - Autocode (add-in for Visual Studio 2010) | |
| http://www.devprojects.net/ |
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
| //SQL Script to backup database to a path using Query Analyzer | |
| declare @dbname varchar(50) | |
| declare @filestamp varchar(20); | |
| declare @backuppath varchar(50); | |
| declare @filepath varchar(200); | |
| set @backuppath = 'C:\backups\data\full\mylivedb\'; | |
| set @filestamp = replace(replace(convert(varchar, getdate(), 120), ' ', '_'), ':', ''); | |
| set @filepath = @path + @filestampname + '.bak'; |
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
| //Linqpad script : Get all all Titles in all Courses | |
| //Language: C# Expression | |
| //Database: http://www.pluralsight-training.net/Odata/ (Add connection WCF Data Service (OData) Connection) | |
| var plcourses = from c in Courses | |
| orderby c.Category | |
| select new { Title = c.Title, Lenght = c.VideoLength, Category = c.Category, Name = c.Name}; | |
| plcourses.Dump(); |
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
| //Linqpad script : Get all Netflix Movies with rating > 4 | |
| //Language: C# Expression | |
| //Database: http://odata.netflix.com/Catalog/ (Add connection WCF Data Service (OData) Connection) | |
| from lang in Languages | |
| from title in lang.Titles | |
| where lang.Name == "English" && title.Type == "Movie" | |
| && title.AverageRating > 4 | |
| orderby title.AverageRating descending |
NewerOlder