zsh compinit: insecure directories, run compaudit for list.Ignore insecure directories and continue [y] or abort compinit [n]?
skip_global_compinit=1
compaudit # find out insecure directoriessudo chown -R yourname /usr/local/share/zsh
Wensheng's journal on web, programming, and more.
zsh compinit: insecure directories, run compaudit for list.Ignore insecure directories and continue [y] or abort compinit [n]?
skip_global_compinit=1
compaudit # find out insecure directoriessudo chown -R yourname /usr/local/share/zsh
E: Problem parsing dependency 21 of libc6-dev-s390x-cross:all=2.31-0ubuntu7cross1E: Error occurred while processing libc6-dev-s390x-cross (NewVersion2)E: Problem with MergeList /var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_focal_main_binary-amd64_PackagesE: The package lists or status file could not be parsed or opened.
Do these:
sudo rm -fr /var/cache/apt/archives/*
sudo dpkg --clear-avail
sudo rm -fr /var/lib/apt/lists/*
sudo apt update
https://static01.nyt.com/elections-assets/2020/data/api/2020-11-03/precincts/PAGeneralConcatenator-2020-11-04T01:02:56.961Z.json
in Firefox, click "Raw Data", then search for "chester" a few times.
How many more of these half million votes are fraudulent? Most of them are. Again realized this fraud vote dump was too apparent, in #11 at 2:22GMT or 9:22PM EST, they removed a total of 586189 votes! Which votes did they remove? I don't know. But I do know that those fraudulent Chester county votes were not removed. The next Chester vote update wouldn't come until 3 hours later at 5:27GMT (or 0:27 EST).
After #11 huge vote reduction, Biden still hold 200K margin over Trump. From this point on, Trump was able to catch up and leap over. The "glitch" that was caught on CNN where exactly 19958 votes were removed from Trump and added to Biden's total, happened at 4:08GMT (11:08pm EST). As Trump continued gain momentum, at 2am EST in the morning he had a 700K margin over Biden. Then came the big nation wide coordinated "halt", and vote dumps afterward that miraculously narrow the gap. They have everyone's attention.
But I think just like the one in Maricopa county, the huge early Biden head-start in Pennsylvania need more attention. The first 50 vote dumps out of Pennsylvania were complete mess. Some of them got cleaned up, but a good number of fraudulent votes are still there and in the final total. They should be investigated and taken out. The 421:233 Chester votes are still there. The 75K Biden/Trump ratio 16.5 Philly votes are still there. The 73K B/T 8:1 ratio Montgomery votes are still there. The 30K 4:1 Centre votes are still there. If even half of 200K early fraudulent Biden margin is taken out, Trump would win Pennsylvania (Biden's margin is 82K)
ffmpeg -protocol_whitelist file,http,https,tcp,tls -allowed_extensions ALL -i playlist.m3u8 -bsf:a aac_adtstoasc -c copy out.mp4
sudo systemctl disable apt-daily.timerthen edit 2 files:
sudo systemctl disable apt-daily-upgrade.timer
sudo vi /etc/apt/apt.conf.d/10periodicIn both files, change "1" to "0".
sudo vi /etc/apt/apt.conf.d/20auto-upgrades
ffmpeg -f concat -i files.txt -vf "select=not(mod(n\,30)),setpts=N/(FRAME_RATE*TB)" -vcodec rawvideo -pix_fmt yuv420p -an raw.yuvBecause this is uncompressed raw video, its size will be huge, probably tens of GigBytes. You probably don't want to play it on your computer, let alone uploaded to youtube. To make it playable, we need to compress it to mp4 format:
ffmpeg -f rawvideo -pix_fmt yuv420p -s:v 1920x1080 -i raw.yuv -vcodec libx264 video.mp4You can see an example of the time lapsed video here:
I run it with "uvicorn example:app", then measure rps using 'ab':from starlette.responses import PlainTextResponse async def app(scope, receive, send): assert scope['type'] == 'http' response = PlainTextResponse('Hello, world!') await response(scope, receive, send)
ab -n 1000 -c 10 127.0.0.1:8000/The result is on average 4200 requests per second.
Using the same measurement, the ab result is a average 1900 requests/second.import tornado.ioloop import tornado.web class MainHandler(tornado.web.RequestHandler): def get(self): self.write("Hello, world") def make_app(): return tornado.web.Application([ (r"/", MainHandler), ]) if __name__ == "__main__": app = make_app() app.listen(8888) tornado.ioloop.IOLoop.current().start()
(and put "from tornado.httpserver import HTTPServer" at the beginning of the file), its performance increases to 4700 requests/second, actually faster than Starlette.server = HTTPServer(app) server.bind(8888) server.start(0)
uvicorn --workers 4 example:appThe result now is 7500 requests/second, surpassing multi-process Tornado again.
cd drjava/drjava
ant jar