Install Dokploy
01-install-dokploy.webm
Official Docs: https://docs.dokploy.com/docs/core/installation
Official Docs: https://docs.dokploy.com/docs/core/installation
<fargate-profile-namespace>. Guidekube-system namespace, refer guide from previous step)Refer Helm Installation to install helm command
| <?php | |
| $query = <<<'GRAPHQL' | |
| query GetUser($user: String!) { | |
| user (login: $user) { | |
| name | |
| repositoriesContributedTo { | |
| totalCount | |
| } |
| function specialPythagoreanTriplet(n) { | |
| let sumOfabc = n | |
| let abc = 1 | |
| for (let a = 1; a < n / 2; a++) { | |
| for (let b = a + 1; b < n / 2; b++) { | |
| let c = sumOfabc - a - b | |
| if (a * a + b * b === c * c) { | |
| abc = a * b * c |
This document describes how to set up Windows 10 for cross-platform development (Go, NodeJS, etc) with Windows Subsystem for Linux (WSL).
Most of the information here is collected from
Ok. I'm going to list off some ideas for projects. You will have to determine if any particular idea is good enough to include in a portfolio. These aren't creative ideas. They likely already exist. Some are way too advanced while others are simplistic.
I will recommend to post any project you make to github and make a github project page for it. Explain in as much detail as possible how you made it, how it can be improved etc. Document it.
If you pick an advanced idea, setup a development roadmap and follow it. This will show some project management skills.
Another piece of advice for those who are design challenged. Use different front end frameworks and use different themes for those frameworks to provide appealing designs without looking like yet another bootstrap site.
| #include <stdio.h> | |
| #include <cs50.h> | |
| #include <string.h> | |
| #include <ctype.h> | |
| int main(int argc, string argv[]) | |
| { | |
| //Beginning of the program | |
| //Check key length | |
| if (argc != 2) |