A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
| Name | Stars | Last Commit | Description |
|---|---|---|---|
| three.js | ![GitH |
| # Why? | |
| # To paste text into windows that normally don't allow it or have access to the clipboard. | |
| # Examples: Virtual machines that do not yet have tools installed, websites that hijack paste | |
| # | |
| # Extended vs Simple? | |
| # * Includes an initial delay to allow you to change active windows | |
| # * Adds small delay between keypresses for slower responding windows like SSH sessions | |
| # * Better handling of numbers | |
| # * VMWare bug fix | |
| # |
| # Stat Installation | |
| # XCode CLT | |
| xcode-select --install | |
| # Update Homebrew | |
| brew update | |
| # Check for broken dependencies and/or outdated packages | |
| brew doctor |
A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
| Name | Stars | Last Commit | Description |
|---|---|---|---|
| three.js | ![GitH |
| #!/bin/bash | |
| set -e | |
| # Prerequirements | |
| # brew install gcc (gmp libmpc mpfr isl) | |
| # copy /usr/lib && /usr/include from arch linux into your CC_ROOT. | |
| # /usr/local/linux/usr/include | |
| # /usr/local/linux/usr/lib | |
| # /usr/local/linux/usr/local/include | |
| # arch linux is target enviroment for this cross compiler | |
| # x86_64 binutils && gcc |
| man() { | |
| env \ | |
| LESS_TERMCAP_md=$'\e[1;36m' \ | |
| LESS_TERMCAP_me=$'\e[0m' \ | |
| LESS_TERMCAP_se=$'\e[0m' \ | |
| LESS_TERMCAP_so=$'\e[1;40;92m' \ | |
| LESS_TERMCAP_ue=$'\e[0m' \ | |
| LESS_TERMCAP_us=$'\e[1;32m' \ | |
| man "$@" | |
| } |
Just a quickie test in Python 3 (using Requests) to see if Google Cloud Vision can be used to effectively OCR a scanned data table and preserve its structure, in the way that products such as ABBYY FineReader can OCR an image and provide Excel-ready output.
The short answer: No. While Cloud Vision provides bounding polygon coordinates in its output, it doesn't provide it at the word or region level, which would be needed to then calculate the data delimiters.
On the other hand, the OCR quality is pretty good, if you just need to identify text anywhere in an image, without regards to its physical coordinates. I've included two examples:
####### 1. A low-resolution photo of road signs
04/26/2103. From a lecture by Professor John Ousterhout at Stanford, class CS142.
This is my most touchy-feely thought for the weekend. Here’s the basic idea: It’s really hard to build relationships that last for a long time. If you haven’t discovered this, you will discover this sooner or later. And it's hard both for personal relationships and for business relationships. And to me, it's pretty amazing that two people can stay married for 25 years without killing each other.
[Laughter]
> But honestly, most professional relationships don't last anywhere near that long. The best bands always seem to break up after 2 or 3 years. And business partnerships fall apart, and there's all these problems in these relationships that just don't last. So, why is that? Well, in my view, it’s relationships don't fail because there some single catastrophic event to destroy them, although often there is a single catastrophic event around the the end of the relation
| # SSL self signed localhost for rails start to finish, no red warnings. | |
| # 1) Create your private key (any password will do, we remove it below) | |
| $ openssl genrsa -des3 -out server.orig.key 2048 | |
| # 2) Remove the password | |
| $ openssl rsa -in server.orig.key -out server.key |