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
code analysis | |
ext install SonarSource.sonarlint-vscode | |
sevlte | |
ext install svelte.svelte-vscode | |
ext install ardenivanov.svelte-intellisense | |
ext install fivethree.vscode-svelte-snippets | |
tailwind | |
ext install bradlc.vscode-tailwindcss |
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
Develop a Market Thesis: Understand your target market and the problem you're trying to solve. This involves talking to potential customers and understanding their pain points. | |
Focus on the Problem, Not the Solution: Listen to your customers' problems and not their proposed solutions. Customers may not know the best solution, but they can accurately describe the problems they face. | |
Rapid Prototyping: Develop a functional prototype as quickly as possible. Don't worry about scaling or monetization at this stage. The goal is to get something in front of users for feedback. | |
User Testing: Conduct user testing sessions with your target customers. Encourage them to use your product or service and provide open and honest feedback. | |
Iterate Based on Feedback: Use the feedback from user testing sessions to refine your product. Expect to go through multiple iterations before finding a product-market fit. |
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
let jspdf = document.createElement( "script" ); | |
jspdf.onload = function () { | |
let pdf = new jsPDF(); | |
let elements = document.getElementsByTagName( "img" ); | |
for ( let i in elements) { | |
let img = elements[i]; | |
if (!/^blob:/.test(img.src)) { | |
continue ; | |
} | |
let canvasElement = document.createElement( 'canvas' ); |
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
sudo apt-get install -y git curl | |
# install jetbeans | |
https://www.jetbrains.com/toolbox-app/download/download-thanks.html | |
sudo apt-get install -y libfuse2 | |
mv jetbrains-toolbox /opt/ | |
cd /opt | |
./jetbrains-toolbox | |
# install sublime |
OlderNewer