Pretinho Básico - Sou Designer [Village People version] https://www.youtube.com/watch?v=T-m4PaAgLxc
Caneca DESIGNER É REI [eucompraria <3] https://eucompraria.com.br/produto/caneca-designer-e-rei
Bookmarks da Tutu
| # The command finds the most recent tag that is reachable from a commit. | |
| # If the tag points to the commit, then only the tag is shown. | |
| # Otherwise, it suffixes the tag name with the number of additional commits on top of the tagged object | |
| # and the abbreviated object name of the most recent commit. | |
| git describe | |
| # With --abbrev set to 0, the command can be used to find the closest tagname without any suffix: | |
| git describe --abbrev=0 | |
| # other examples |
| # If this commit is applied, it will: | |
| # Why was this change made? | |
| # Any references to tickets, articles etc? | |
Pretinho Básico - Sou Designer [Village People version] https://www.youtube.com/watch?v=T-m4PaAgLxc
Caneca DESIGNER É REI [eucompraria <3] https://eucompraria.com.br/produto/caneca-designer-e-rei
Bookmarks da Tutu
| # -*- coding: utf-8 -*- | |
| from __future__ import absolute_import | |
| import logging | |
| from contextlib import contextmanager | |
| LOG = logging.getLogger(__name__) | |
| class HealthCheckError(Exception): |
| javascript: | |
| document.querySelectorAll('.load-diff-button').forEach(node => node.click()) |
| div.window-title, div.panel-header div.title, a.editor-status-mode, | |
| div.results-group, span.quick-open-entry-description>span.monaco-highlighted-label:first-child, | |
| .input, div.column.when span, | |
| .Equinusocio-vsc-material-theme-themes-Material-Theme-Palenight-json .mtk12, | |
| .Equinusocio-vsc-material-theme-themes-Material-Theme-Palenight-json .mtk9, | |
| .Equinusocio-vsc-material-theme-themes-Material-Theme-Palenight-json .mtk4, | |
| .Equinusocio-vsc-material-theme-themes-Material-Theme-Palenight-json .mtk3.mtki.detected-link, | |
| .Equinusocio-vsc-material-theme-themes-Material-Theme-Palenight-json span.mtk11.mtki, | |
| .Tyriar-theme-sapphire-theme-bright-json .mtk6, | |
| .zhuangtongfa-Material-theme-themes-OneDark-Pro-json .mtk6, |
This was only tested on a 'partial' SentinelOne installation on the High Sierra beta, where SentinelOne was never allowed to enable it's kernel extension. (Some things failed while I was messing around with OS betas.)
A lot happens in 2+ years, at this point there's a good chance this script will do more harm than good. Read the comments before using!
| After automatically updating Postgres to 10.0 via Homebrew, the pg_ctl start command didn't work. | |
| The error was "The data directory was initialized by PostgreSQL version 9.6, which is not compatible with this version 10.0." | |
| Database files have to be updated before starting the server, here are the steps that had to be followed: | |
| # need to have both 9.6.x and latest 10.0 installed, and keep 10.0 as default | |
| brew unlink postgresql | |
| brew install [email protected] | |
| brew unlink [email protected] | |
| brew link postgresql |
| from github import Github | |
| import os | |
| import sys | |
| release = str(sys.argv[1]) | |
| # or using an access token | |
| GITHUB_ACCESS_TOKEN = os.environ['GITHUB_ACCESS_TOKEN'] | |
| g = Github(GITHUB_ACCESS_TOKEN) | |
| FEATURES = 'Feature' |