Prefix | Name | URL |
---|---|---|
F | pyflakes | https://pypi.org/project/pyflakes/ |
E, W | pycodestyle | https://pypi.org/project/pycodestyle/ |
C90 | mccabe | https://pypi.org/project/mccabe/ |
I | isort | https://pypi.org/project/isort/ |
N | pep8-naming | https://pypi.org/project/pep8-naming/ |
D | pydocstyle | https://pypi.org/project/pydocstyle/ |
UP | pyupgrade | https://pypi.org/project/pyupgrade/ |
YTT | flake8-2020 | https://pypi.org/project/flake8-2020/ |
This file contains 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
Cannot mix incompatible Qt library (6.7.3) with this library (6.7.2) | |
SIGABRT: abort | |
PC=0x82d60510a m=0 sigcode=65543 | |
signal arrived during cgo execution | |
goroutine 1 gp=0x8980061c0 m=0 mp=0x37292a0 [syscall, locked to thread]: | |
runtime.cgocall(0x361f050, 0x8981c5bf8) | |
/usr/local/go1.23.2/src/runtime/cgocall.go:167 +0x4b fp=0x8981c5bd0 sp=0x8981c5b98 pc=0x20fa66b | |
github.com/mappu/miqt/qt6/multimedia._Cfunc_QMediaPlayer_new() | |
_cgo_gotypes.go:8483 +0x48 fp=0x8981c5bf8 sp=0x8981c5bd0 pc=0x3130648 |
This file contains 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
package main | |
import ( | |
"os" | |
qt "github.com/mappu/miqt/qt6" | |
) | |
func main() { | |
qt.NewQApplication(os.Args) |
This file contains 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
C:\Users\64087>pyglossary | |
[INFO] Automatically switching to SQLite mode for writing Stardict | |
[INFO] Using sortKeyName = 'stardict' | |
[WARNING] Unsupported operating system (no os.statvfs) | |
[WARNING] Unrecognized mimetype='undefined' | |
[WARNING] Unrecognized mimetype='undefined' | |
[WARNING] Unrecognized mimetype='undefined' | |
[WARNING] resource title: mw/skins.minerva.base.reset|skins.minerva.content.styles|ext.cite.style|site.styles|mobile.app.pagestyles.android|mediawiki.page.gallery.styles|mediawiki.skinning.content.parsoid.css | |
[WARNING] Unrecognized mimetype='image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0"' | |
[WARNING] Unrecognized mimetype='image/svg+xml; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/SVG/1.0.0"' |
This file contains 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
from matplotlib import pyplot | |
import numpy as np | |
n = 10000 | |
m = n // 5 | |
scale = 10 | |
def f(x): | |
y = 0 |
This file contains 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
// You can edit this code! | |
// Click here and start typing. | |
package main | |
import "fmt" | |
import "io" | |
type Gen interface { | |
Next(args any...) (any, error) // EOF | |
End() bool |
This file contains 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
#!/usr/bin/env python | |
import sys | |
from os.path import extsep, join, splitext | |
from pyglossary import slob | |
from pyglossary.core import cacheDir | |
from pyglossary.entry import Entry | |
from pyglossary.glossary_v2 import Glossary | |
from pyglossary.plugins.aard2_slob import Writer as SlobWriter |
This file contains 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
function docker-running-by-name() { | |
# docker ps --filter name=$1 --quiet # does not always work! | |
docker ps | grep "$@" | sed 's/ .*//' | head -n1 | |
} | |
function docker-shell-to-name() { | |
ID=$(docker-running-by-name $1) | |
if [ -z $ID ] ; then | |
echo "No running container by image name $1" | |
return |
This file contains 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
#!/usr/bin/env python | |
import json | |
import sys | |
import biplist | |
plistPath = sys.argv[1] | |
try: |
NewerOlder