-
Run the command:
python pixiv_auth.py login
This will open the browser with Pixiv login page.
日時: | 2021-01-29 |
---|---|
作: | @voluntas |
バージョン: | 2021.2 |
url: | https://voluntas.github.io/ |
import requests | |
import re | |
class Twitter: | |
def __init__(self): | |
self.s = requests.Session() | |
self.get_tokens() | |
def get_tokens(self): |
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/arm64 4.9.119 Kernel Configuration | |
# | |
CONFIG_ARM64=y |
/* ==UserStyle== | |
@name Delete "Address" and "Name" from Amazon.co.jp | |
@namespace tomacheese.com | |
@version 1.0.2 | |
@updateURL https://gist.github.com/book000/37d74006dbffc88f69cd87a8c686518b/raw/amazon.co.jp-stylus.user.css | |
@description Chrome/Firefoxの拡張機能であるStylusを使用して、Amazon上に表示される「住所情報」と「登録名情報」を表示させないCSS | |
@author Tomachi (book000) | |
==/UserStyle== */ | |
@-moz-document domain("amazon.co.jp") { | |
#nav-global-location-slot { |
## Flattened Device Tree blob at 01f00000 | |
Booting using the fdt blob at 0x1f00000 | |
reserving fdt memory region: addr=0 size=30000 | |
reserving fdt memory region: addr=1f000 size=1000 | |
reserving fdt memory region: addr=30000 size=d0000 | |
reserving fdt memory region: addr=3200000 size=b800000 | |
reserving fdt memory region: addr=1b00000 size=400000 | |
reserving fdt memory region: addr=2600000 size=c00000 | |
reserving fdt memory region: addr=1ffe000 size=4000 | |
reserving fdt memory region: addr=11000000 size=9200000 |
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/arm64 4.1.17 Kernel Configuration | |
# | |
CONFIG_ARM64=y | |
CONFIG_64BIT=y | |
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y | |
CONFIG_MMU=y | |
CONFIG_ARCH_MMAP_RND_BITS_MIN=18 | |
CONFIG_ARCH_MMAP_RND_BITS_MAX=24 |
Subtitle and caption support for many sites in Firefox's Picture-in-Picture player window is targeted to ship in Firefox 100.
Hi! If you're reading this, then you've asked me about or otherwise expressed interest in supporting captions / subtitles in Firefox's Picture-in-Picture feature.
As of this writing, Firefox does not currently support captions or subtitles in the player window. This is because most sites have invented their own mechanisms for display captions or subtitles. YouTube's captions, for example, are implemented in a completely different way from Netflix's.
This makes it rather difficult for us as a browser to develop a general solution to the subtitles / caption problem.
~Difficult, but not impossible. We're currently working on ways for us to develop site-specific behaviours for Picture-in-Picture. This allows Firefox's Picture-in-Picture feature to be smarter in how it interacts with specific video sites. In theory, this would allow us to detect the subtitles and captions and disp
## template: jinja | |
#cloud-config | |
{% if v1.distro_release == 'focal' %} | |
users: | |
- name: berkant | |
shell: /usr/bin/bash | |
ssh_import_id: gh:berkant | |
sudo: ALL=(ALL:ALL) NOPASSWD:ALL |
// Allows disabling Same-Origin Policy on iOS WKWebView. | |
// Tested on iOS 12.4. | |
// Uses private API; obviously can't be used on app store. | |
@import WebKit; | |
@import ObjectiveC; | |
void WKPreferencesSetWebSecurityEnabled(id, bool); | |
@interface WDBFakeWebKitPointer: NSObject |