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
[...document.querySelectorAll('[valign="top"]')].slice(3).map(item => item.children[9].textContent) |
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/bash | |
TIMEDOCTOR=~/./timedoctor-desktop_latest_linux-x86_64.AppImage | |
TOOLBOX=~/./jetbrains-toolbox-1.16.6319.tar.gz | |
PGSQLPWD=postgres | |
apt update | |
apt autoremove | |
apt install vim | |
snap install spotify | |
snap install slack |
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
#include <iostream> | |
struct node { | |
int dado; | |
struct node *prox; | |
}; | |
typedef struct _lista { | |
node *inicio; | |
} lista; |
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
In yout app create a folder name "templatetags", into him one file __init__.py | |
and web_extras.py (This second is just a example name). | |
Into web_extras.py insert: | |
from django import template | |
register = template.Library() | |
@register.filter() |