Count of issues at react-native repo have reached curious milestone.
Today's Document
TVSTRANGERTHINGS
Sade Olutola


izzy's playlists!
Noah Kahan

Origami Around

if i look back, i am lost
Stranger Things

pixel skylines

â
The Stonewall Inn
Show & Tell
let's talk about Bridgerton tea, my ask is open
2025 on Tumblr: Trends That Defined the Year
Misplaced Lens Cap
Monterey Bay Aquarium
Mike Driver


oozey mess
seen from Bangladesh

seen from TĂźrkiye
seen from Japan
seen from TĂźrkiye
seen from Germany
seen from United States

seen from Australia
seen from Australia
seen from United States

seen from TĂźrkiye

seen from Mexico
seen from Lithuania
seen from Venezuela

seen from Australia

seen from Philippines
seen from United States
seen from New Zealand

seen from Australia
seen from Philippines

seen from Australia
@intendstat
Count of issues at react-native repo have reached curious milestone.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
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/

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
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

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
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

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
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...