http://mysql.rjweb.org/doc.php/partitionmaint
создание табл. 13го числа:
CREATE TABLE t
(
date date NOT NULL,
a int(11) NOT NULL,
b int(11) not null,
PRIMARY KEY (a, date),
# May be used to match JSON strings in nested array/hashes | |
# Example: | |
# RSpec.describe( | |
# { a: 1, | |
# whatever: 'else', | |
# nested_json: '[{"c":3},{"whatever":"else"}]' | |
# } | |
# ) do | |
# it { is_expected.to match( | |
# a_hash_including( |
<%* | |
/* | |
You need to install yt-dlp and jq to use this template: | |
$ brew install yt-dlp jq # on macOS | |
You need to define user function in Templater plugin settings named "ytmeta" with the following command: | |
/opt/homebrew/yt-dlp -j "https://www.youtube.com/watch?v=${id}" | /opt/homebrew/jq "${query}" | |
replace /opt/homebrew with your path to yt-dlp and jq |
s.youtube.com |
server { | |
listen 80; | |
server_name localhost; | |
location /oauth2/ { | |
proxy_pass http://oauth-proxy:4180; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Scheme $scheme; | |
proxy_set_header X-Auth-Request-Redirect $request_uri; |
http://mysql.rjweb.org/doc.php/partitionmaint
создание табл. 13го числа:
CREATE TABLE t
(
date date NOT NULL,
a int(11) NOT NULL,
b int(11) not null,
PRIMARY KEY (a, date),
/* for Stylebot chrome extension */ | |
div.cell.text_cell.rendered.selected .prompt { | |
border-left: 5px solid #e22978; | |
border-right: 2px dotted #e22978; | |
} | |
div.cell.text_cell.selected .prompt { | |
border-right: 2px dotted #e22978; | |
} |
require 'json' | |
require 'nokogiri' | |
require 'curb' | |
Pry.config.editor = "vim" | |
if `uname` =~ /Darwin/ | |
['pbcopy', 'pbpaste'] | |
else |