Skip to content

Instantly share code, notes, and snippets.

View quangdaon's full-sized avatar

Quangdao Nguyen quangdaon

View GitHub Profile
@quangdaon
quangdaon / gist:7cd816744f0a4fabe426f3a2e240ae6f
Created April 10, 2023 19:33
ChatGPT Personal Brand Transcript
Q: How to I decide on colors for my personal brand?
A:
Choosing colors for your personal brand is an important decision as it can have a significant impact on how your audience perceives your brand. Here are some steps you can take to decide on colors for your personal brand:
Consider your target audience: Who is your target audience and what colors resonate with them? For example, if your target audience is primarily women, you may want to consider colors such as pink, purple, or pastels.
Think about the personality of your brand: What kind of personality do you want your brand to have? Do you want it to be playful, serious, or sophisticated? Different colors can evoke different emotions, so it's important to choose colors that align with your brand's personality.
Look for inspiration: Look at other brands or personal brands that you admire and take note of their color palettes. This can give you some ideas and inspiration for your own brand.
Choose a color scheme: Once you have a general idea of the colors
@quangdaon
quangdaon / tasks.json
Created September 8, 2021 12:57
Start Jekyll VS Code Task
{
"version": "2.0.0",
"tasks": [
{
"label": "Start Jekyll",
"type": "shell",
"command": "bundle exec jekyll serve --open",
"problemMatcher": [],
"group": {
"kind": "build",
@quangdaon
quangdaon / pre-commit
Created September 3, 2021 16:18
Precommit Flag Guard
#!/bin/bash
your_name="Q"
dont_push_flag="QSTOP"
matched_files=`git grep --name-only "$dont_push_flag" $(git diff --cached --name-only)`
if [ -n "$matched_files" ]
then
echo "$your_name, what are you doing?! A $dont_push_flag flag was found in your commit."
printf "$matched_files"
exit 1