i
or enter
: go to vim mode
shift + esc
: go back to jupyter mode
i: start writing
GoldenDict
sudo apt-get install goldendict
Install translate-shell
https://github.com/soimort/translate-shell#option-1-direct-download
add Google Source
as Program
GoldenDict
, chose Edit
, then click Dictionaries
, Programs
, Add
import curses | |
from typing import Any | |
try: | |
curses._CursesWindow | |
except Exception as e: | |
curses._CursesWindow = Any | |
IN = False |
#!/bin/bash | |
function hi() { | |
#no matter what get print out, it will get returned | |
author=$1 | |
echo "${author}: \n" | |
echo "hi,\n"; | |
echo "you"; | |
} |
You should finish the following table and get a yes/all percentage.
Take away user's freedom of information sending or receiving (freedom of speech), has a strong censorship system that almost blocks anything that useful and has_high_intelligence inside.
Hide lower level knowledge from user, so the more user use their service, the more likely the user become an idiot. So user will never be able to live without that company.
Take away the root permission from user, so the user can't do anything that really useful in software or hardware level. So the company can do whatever they like in user's device or system.
Lineage 16 download place:
https://archive.org/download/lineage-16.0-20200325-nightly-beryllium-signed
// Linux MIDI input driver, protocol 1.0, there is no need to upgrade to protocol 2.0 | |
// Author: yingshaoxo | |
// Run it in root shell | |
// gcc main.c -o main.run | |
// ./main.run | |
#include <sys/soundcard.h> | |
#include <fcntl.h> | |
#include <unistd.h> | |
#include <stdio.h> |
# Author: yingshaoxo | |
# Python: 3.5 | |
# midi usb protocol: 1.0 ; There has no need to upgrade to 2.0 | |
device_name = "/dev/midi1" # "/dev/dmmidi1" # "/dev/snd/midiC1D0" | |
while True: | |
with open(device_name, "rb") as f: | |
bytes_list = [None] * 3 | |
for index in range(3): |