javascript:document.body.contentEditable = 'true'; document.designMode='on'; void 0
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
| { | |
| "yaml.customTags": [ | |
| "!Equals sequence", | |
| "!FindInMap sequence", | |
| "!GetAtt", | |
| "!GetAZs", | |
| "!ImportValue", | |
| "!Join sequence", | |
| "!Ref", | |
| "!Select sequence", |
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
| mkdir aged | |
| cd aged | |
| export cwd=$(pwd) | |
| wget https://ftp.postgresql.org/pub/source/v13.3/postgresql-13.3.tar.gz | |
| tar xzf postgresql-13.3.tar.gz | |
| cd postgresql-13.3/ | |
| mkdir data | |
| chown $(whoami) data |
- Ignore file locally
git update-index --skip-worktree <file-list>
git update-index --no-skip-worktree <file-list>- Add to .ignore index locally ('/.vscode/*') for example
echo '/.vscode/*' >> .git/info/exclude
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 libgl1-mesa-dev |
- PNSI:
struct ParseNamespaceItem
{
RangeTblEntry *p_rte; /* The relation's rangetable entry */1- I started when the project started (learned some along the way some parts and already have been good with other parts)
2- I have picked the project based on my previous experience and skills alongside the project's criteria
3- Have no contribution to any open-source project yet? is okay as long as you are having the required experience
4- Nothing is late just start with whatever you want to start with
5- If you start early, you get more chance to get accepted for sure
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
| #!/bin/sh | |
| # install PPA | |
| sudo add-apt-repository ppa:deadsnakes/ppa | |
| # update and install | |
| sudo apt update | |
| sudo apt install python3.8 python3.8-dev python3.8-venv | |
| # setup alternatives |
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
| @app.route("/sitemap") | |
| @app.route("/sitemap/") | |
| @app.route("/sitemap.xml") | |
| def sitemap(): | |
| """ | |
| Route to dynamically generate a sitemap of your website/application. | |
| lastmod and priority tags omitted on static pages. | |
| lastmod included on dynamic content such as blog posts. | |
| """ | |
| from flask import make_response, request, render_template |
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
| if [ ! -f .env ] | |
| then | |
| export $(cat .env | xargs) | |
| fi |
NewerOlder