Count of issues at react-native repo have reached curious milestone.
RMH

No title available
Jules of Nature

Kaledo Art
No title available
Peter Solarz
Claire Keane

@theartofmadeline
he wasn't even looking at me and he found me
NASA

PR's Tumblrdome
Cosimo Galluzzi

Janaina Medeiros

oozey mess
will byers stan first human second

roma★
d e v o n

tannertan36
I'd rather be in outer space 🛸

titsay
seen from United States

seen from United Arab Emirates

seen from Brazil
seen from United States
seen from Germany
seen from United States
seen from Germany

seen from United States

seen from United States

seen from Malaysia

seen from Finland
seen from United States
seen from Philippines
seen from Netherlands
seen from United States

seen from Indonesia
seen from Türkiye
seen from United States

seen from Hungary

seen from Malaysia
@intendstat
Count of issues at react-native repo have reached curious milestone.
Links on Anathomy topic
* https://www.quora.com/How-can-the-brain-create-new-memories-without-creating-new-neurons-Are-some-neurons-passive-until-they-are-assigned-a-memory
* https://www.quora.com/Do-our-thoughts-come-from-nowhere
* https://www.quora.com/How-can-I-increase-my-brain-efficiency
* https://www.quora.com/Why-does-the-human-brain-like-symmetry-1
Interesting questions about programming from Quora
Golang
* https://www.quora.com/What-is-the-future-of-Go
* https://www.quora.com/How-fast-is-Golang-compared-to-other-programming-languages
* https://www.quora.com/Why-should-I-switch-from-Python-to-Go-What-are-the-benefits
* https://www.quora.com/Why-is-Go-programming-language-so-popular-Is-it-energy-efficient
* https://www.quora.com/Why-is-Go-glorified-It-seems-like-a-slightly-better-version-of-C-It-doesnt-even-support-generics-yet-people-call-it-flexible-and-compare-it-to-Python
Javascript
*
https://www.quora.com/What-are-some-examples-of-JavaScript-code-most-of-computer-programmers-write-poorly-What-is-the-better-way-of-doing-it
Python
* https://www.quora.com/What-is-the-most-interesting-feature-in-the-Python-programming-language
* https://www.quora.com/What-can-t-the-Python-language-do
Algorithms and patterns
* https://www.quora.com/What-are-some-of-the-best-algorithms-which-every-good-programmers-should-know
DevOps
* https://www.quora.com/What-should-all-programmers-know-about-Docker
Miscellaneous
* https://www.quora.com/Which-programming-language-according-to-you-is-the-language-of-the-future
* https://www.quora.com/Why-is-functional-programming-faster
* https://www.quora.com/If-Python-is-slow-how-do-YouTube-and-Google-searches-work-extremely-fast
* https://www.quora.com/What-are-your-10-rules-of-being-a-successful-software-developer
* https://www.quora.com/What-s-the-next-field-which-will-boom-after-data-science-AI-revolution
* https://www.quora.com/As-a-software-engineer-what-are-some-tools-you-use-that-save-a-huge-amount-of-your-time
SSL explained
How to decode a Certificate Signing Request (CSR):
openssl req -in CSR.pem -noout -text
SSL and encryption links
* self-signed-certificate-with-custom-ca - https://gist.github.com/fntlnz/cf14feb5a46b2eda428e000157447309
* configuring elastingbeanstalk https - https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/configuring-https-ssl.html
* error-reading-x-509-key-or-certificate-file-error - https://stackoverflow.com/questions/50390689/error-reading-x-509-key-or-certificate-file-error-in-parsing-when-sending-certi/50392936
* How to Create Your Own SSL Certificate Authority for Local HTTPS Development - https://deliciousbrains.com/ssl-certificate-authority-for-local-https-development/
* goalng tls - https://github.com/denji/golang-tls
* failed-tls-handshake-does-not-contain-any-ip-sans - https://serverfault.com/questions/611120/failed-tls-handshake-does-not-contain-any-ip-sans
* cert decoder - https://www.sslshopper.com/certificate-decoder.html
* how to fix “ listen tcp :443: bind: permission denied in golang” - https://stackoverflow.com/questions/14537045/how-i-should-run-my-golang-process-in-background/14573592#14573592: Issue this command:
sudo setcap ‘cap_net_bind_service=+ep’ /opt/yourGoBinary
CURL
https://github.com/openwisp/openwisp-config/issues/27
https://serverfault.com/questions/485597/default-ca-cert-bundle-location
https://stackoverflow.com/questions/21181231/server-certificate-verification-failed-cafile-etc-ssl-certs-ca-certificates-c
https://askubuntu.com/questions/910918/root-certificate-issue-on-ubuntu-16-04
https://superuser.com/questions/1151946/curl-and-default-capath-cacert
https://github.com/curl/curl/issues/665
https://support.plesk.com/hc/en-us/articles/213909205-Website-shows-cURL-error-77-Problem-with-the-SSL-CA-cert-
https://curl.haxx.se/changes.html
https://samdoidge.com/updating-curl-manually-ubuntu
https://daniel.haxx.se/blog/2018/11/07/get-the-ca-cert-for-curl/
Socket links
* What is AF_INET - https://stackoverflow.com/questions/1593946/what-is-af-inet-and-why-do-i-need-it AF_INET is an address family that is used to designate the type of addresses that your socket can communicate with (in this case, Internet Protocol v4 addresses). When you create a socket, you have to specify its address family, and then you can only use addresses of that type with the socket.
* SOCK_STREAM - https://stackoverflow.com/questions/35725732/what-is-the-function-of-sock-stream
SOCK_STREAM means that it is a TCP socket.
Python Links
* Named tuples - https://stackoverflow.com/questions/2970608/what-are-named-tuples-in-python
* Understand TensorFlow by mimicking its API from scratch - https://medium.com/@d3lm/understand-tensorflow-by-mimicking-its-api-from-scratch-faa55787170d
* https://stackoverflow.com/questions/35991032/how-do-i-debug-a-python-program-i-am-coming-from-a-ruby-on-rails-javascript-bac
* https://programminghistorian.org/en/lessons/creating-apis-with-python-and-flask
* https://boltons.readthedocs.io/en/latest/fileutils.html
While implementing a programming unit, we make assumptions about the caller. Sometimes, these assumptions become invalid during the course of time. It is also possible that we have made the incorrect assumptions about the caller in the first place.
https://medium.com/swlh/good-code-is-short-simple-and-robust-52b0a0abf2e8
About automation
This is so fun illustration (and sometimes right)..
Reference to xkcd: https://xkcd.com/1319/
Chart.js Links
* Stacked Line Chart
* Bar Chart with time scale
* Docs
Fun gifs
Let’s look at google’s search page image, it is so fun:
Functional programming links
* https://medium.com/javascript-scene/transducers-efficient-data-processing-pipelines-in-javascript-7985330fe73d
About programming and design patterns without code (or almost without code)
* https://blog.codinghorror.com/the-best-code-is-no-code-at-all/
* https://jorudolph.wordpress.com/2009/11/22/singleton-considerations/
* https://testing.googleblog.com/2008/08/root-cause-of-singletons.html
* https://accu.org/index.php/journals/337
* https://techbeacon.com/35-bad-programming-habits-make-your-code-smell
Kubernetes Links
* https://www.digitalocean.com/community/tutorials/an-introduction-to-kubernetes
Design Patterns
* Singletone - Use or Not https://stackoverflow.com/questions/1823286/singleton-in-go
Machine Learning links Getting Started
* https://machinelearningmastery.com/machine-learning-in-python-step-by-step/
* https://github.com/thePetrMarek/SequenceOfDigitsRecognition
* http://bamos.github.io/2016/08/09/deep-completion/
* https://github.com/carpedm20/DCGAN-tensorflow
* Have fun with ML - https://github.com/humphd/have-fun-with-machine-learning
* Face-api in js - https://github.com/justadudewhohacks/face-api.js
* Realtime face recognition in browser - https://medium.com/@gjovanov/realtime-face-recognition-de1ee3076878
Tensor Types in TensorFlow ¶ In the previous post, we read about the concepts of Graph and Session which describes the way the data flows in TensorFlow. On...