At least it is royality free compared to HDMI which has a large annual fee + per unit fee for manufacturers
At least it is royality free compared to HDMI which has a large annual fee + per unit fee for manufacturers
Such an iconic video
I just pay the qobuz subscription and use this inofficial script which can download the high res flac files from qobuz. (You can also buy music on qobuz and you get the flac file without drm or so as a download, compared to other services which don’t give you the file itself)
And then I use jellyfin to host my music library. Jellyfin has many music player apps which you can use.
https://github.com/vitiko98/qobuz-dl
https://jellyfin.org/downloads/clients/all
But most of the time I’m just streaming through qobuz directly.
Well you can also pray for Israel to stop
Okay got it, thank you.
I just measured it, and this takes 0.17 seconds. And it’s really reliable, I added another zero to that number and it was 1.7 seconds
Mhm yes that’s what I understood, but I didn’t understans whats funny about this? What does “I’m your father” mean if the movie is jaws?
Can anyone explain the funny for me?
+ 3/4 french fry
Same I just went with Tridactyl without a particular reason. Though their native messaging part, where you can execute stuff like your editor with a keybinding is a nice addon that others don’t have.
Still got space gladiators? (I DMed you, but I don’t know if this worked, that’s why I’m answering here too)
Have been using these features on waylane for a while, works like a charm
Sure, but I really like to look at this when I’m deciding on wether an open source project is worth to use, if you can see that the author is relatively active.
If you have a variable called exit
you’ve overwritten the function in that scope, and won’t be able to execute it.
e.g.
>>> exit=1
>>> exit()
Traceback (most recent call last):
File "", line 1, in
TypeError: 'int' object is not callable
>>>
This is the code (Github link):
class Quitter(object):
def __init__(self, name, eof):
self.name = name
self.eof = eof
def __repr__(self):
return 'Use %s() or %s to exit' % (self.name, self.eof)
def __call__(self, code=None):
# Shells like IDLE catch the SystemExit, but listen when their
# stdin wrapper is closed.
try:
sys.stdin.close()
except:
pass
raise SystemExit(code)
What happens is that the python repl calls __repr__
automatically on each variable/statement that you type into the repl (except assignments e.g. x = 1
).
But this basically only happens in the repl. So “executing” only exit
wouldn’t work in a python script as it is not calling __repr__
automatically, so better you learn how to do it right than using just exit
in your python scripts and scratching your head why it works in the repl but not in your code.
That’s mineblowing
) Plesse close that parentheses