12/28/20
Biden's 11/4 Early Morning Vote Jump in Michigan (Un-)Explained.
12/20/20
Pennsylvania Election Night Data Irregularity
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)
5/10/20
Healthy lifestyle and life expectancy
4/10/20
Extracting video from blob url
On a command line(Win, Mac, Linux), type youtube-dl followed by pasting the m3u8 link, then enter.
Of course you should already have youtube-dl installed.
ffmpeg -protocol_whitelist file,http,https,tcp,tls -allowed_extensions ALL -i playlist.m3u8 -bsf:a aac_adtstoasc -c copy out.mp4
4/9/20
Disable ubuntu update manager, timer from command line
On command lines:
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
4/4/20
Creating Time Lapsed video from dashcam videos
First move all videos into a single folder, then list files and redirect output into a text file. On linux, it's `ls > files.txt`, on Windows, it's `dir /B > files.txt`.
Then edit this file. This file should list videos in the order of timestamp, if not, adjust them manually. Remove any files that's not video or any videos that you don't want to be included in the final video. Put 'file ' at the beginning of every line. (In Vim, you can do this by :%s/^/file /g)
Then create a raw video by select one frame in every 30 frames from all the videos in the file:
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: