Skip to content

Instantly share code, notes, and snippets.

View ccdatatraits's full-sized avatar

Sohail M. Khan ccdatatraits

View GitHub Profile
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Sohail M. Khan",
"label": "🚀 CTO | AI & Cloud Innovator | Business Transformation & Optimization | Generative AI | Scaling Tech Startups",
"image": "",
"email": "sohail.munir@gmail.com",
"phone": "+92 300 1890380",
"url": "https://registry.jsonresume.org/editor",
"summary": "With more than 20 years of experience in the technology industry, I am a seasoned expert in solving complex business and technical challenges with artificial intelligence, cloud computing, and data analytics. I am passionate about applying practical AI solutions to various domains, such as advertising, marketing, finance, and education. As a Fractional CTO and Founder at Quantum Edge, I leverage my extensive network and knowledge to create and run technology companies in the United Arab Emirates and beyond. As a Principal - Technical Solutions at The Product Counsel, I design and showcase end-t
@ccdatatraits
ccdatatraits / embed.txt
Created March 12, 2024 18:58
Mediocre life of a Job Description to Employment with its Sentiments colored
This file has been truncated, but you can view the full file.
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAACIwAABnICAYAAAByjDEcAAAAAXNSR0IArs4c6QABMEd0RVh0bXhmaWxlACUzQ214ZmlsZSUyMGhvc3QlM0QlMjJhcHAuZGlhZ3JhbXMubmV0JTIyJTIwbW9kaWZpZWQlM0QlMjIyMDI0LTAzLTEyVDE4JTNBNTYlM0EwMS4zODlaJTIyJTIwYWdlbnQlM0QlMjJNb3ppbGxhJTJGNS4wJTIwKE1hY2ludG9zaCUzQiUyMEludGVsJTIwTWFjJTIwT1MlMjBYJTIwMTBfMTVfNyklMjBBcHBsZVdlYktpdCUyRjUzNy4zNiUyMChLSFRNTCUyQyUyMGxpa2UlMjBHZWNrbyklMjBDaHJvbWUlMkYxMjIuMC4wLjAlMjBTYWZhcmklMkY1MzcuMzYlMjIlMjBldGFnJTNEJTIyQ1lOZFhMVEhyYUtFZGpVWk1lRG0lMjIlMjB2ZXJzaW9uJTNEJTIyMjQuMC40JTIyJTIwdHlwZSUzRCUyMmRldmljZSUyMiUzRSUwQSUyMCUyMCUzQ2RpYWdyYW0lMjBuYW1lJTNEJTIyUGFnZS0xJTIyJTIwaWQlM0QlMjJ4UmpicEJkbnp2VFA4S3VTNXpvQiUyMiUzRSUwQSUyMCUyMCUyMCUyMCUzQ214R3JhcGhNb2RlbCUyMGR4JTNEJTIyMjE0NSUyMiUyMGR5JTNEJTIyMTM3OSUyMiUyMGdyaWQlM0QlMjIwJTIyJTIwZ3JpZFNpemUlM0QlMjIxMCUyMiUyMGd1aWRlcyUzRCUyMjElMjIlMjB0b29sdGlwcyUzRCUyMjElMjIlMjBjb25uZWN0JTNEJTIyMSUyMiUyMGFycm93cyUzRCUyMjElMjIlMjBmb2xkJTNEJTIyMSUyMiUyMHBhZ2UlM0QlMjIwJTIyJTIwcGFnZVNjYWxlJTNEJTIyMSUyMiUyMHBhZ2VXaWR0aCUzRCUyMjgy
@ccdatatraits
ccdatatraits / thoughts_plus_template.txt
Created March 11, 2024 18:07
Quantum Edge's new dimensions + How to execute them at a high level
@startuml
start
:User;
:1. Auth ( WebAuthn ) + Auth ( Feature Flags );
fork
:- Performance Oriented + Mobile First;
:- [ Quantum AI App ] Streaming;
:- [ Quantum AI App ] Video;
:- IAB ( 3.0 ) + Sentiment;
:- ?? Custom Content Feed ( Push ) ??;
@ccdatatraits
ccdatatraits / usecase_diagram-with-business_value.txt
Created March 2, 2024 11:39
PlantUML (QE trademark) Usecase with Business Value Versioned PlantUML Diagramming
@startuml
skinparam actorStyle awesome
skinparam usecase {
BackgroundColor<< EPIC >> DeepSkyBlue
}
'"User" as User
'"System" as System
'"Auth" as Auth
@ccdatatraits
ccdatatraits / ineed.zsh
Created March 2, 2024 11:26
Search functionality for brew ( Hack using Debian Package Search )
#!/usr/bin/env zsh
ineed() {
curl -sk "https://packages.debian.org/search?suite=default&section=all&arch=any&searchon=contents&keywords=$1" | sed 's%</*tr>%\\n%g' | grep 'class="file"' | sed 's/<[^>]*>//g' | column -t | grep --color -i -w "$1"
}
ineed $*