- Stoplight – Design, Document & Build APIs Faster
Develop quality APIs with collaborative API-first design.
https://stoplight.io/ - Swagger – API Development for Everyone
Simplify API development for users, teams, and enterprises with the Swagger open source and professional toolset. Find out how Swagger can help you design and document your APIs at scale.
https://swagger.io/
Kafka
Kafka Basics and Core concepts
https://medium.com/inspiredbrilliance/kafka-basics-and-core-concepts-5fd7a68c3193
Formação Apache Kafka
https://www.alura.com.br/formacao-kafka
Kafka Client – AWS SDK for JavaScript v3
https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kafka/index.html
Top Level Domain (TLD)
- How can I buy my own personalized Top Level Domain (TLD)?
https://webmasters.stackexchange.com/questions/24460/how-can-i-buy-my-own-personalized-top-level-domain-tld - O Que é TLD (Top-Level Domain)?
https://www.hostinger.com.br/tutoriais/o-que-e-tld/ - Icann – New gTLD
https://newgtlds.icann.org/en/about/program
Site Reliability Engineering – documentation
- andrealmar/sre-university
https://github.com/andrealmar/sre-university
Linux camera/webcam settings on v4l2 – brightness, contrast and others
$ sudo apt install v4l-utils $ v4l2-ctl --list-ctrls-menus $ v4l2-ctl -c brightness=64 $ v4l2-ctl -c contrast=65
Crontab Guru
gitlab-rails console
$ gitlab-rails console
User.where("created_at < ?", 60.days.ago).find_each do |user| if user.name.length != 10 puts user.name end end
User.where("length(name) = ?", 10).find_each do |user|
puts "#{user.id};#{user.name};#{user.email}"
end
User.where("length(username) = ? and length(name) = ?", 10, 10).find_each do |user|
puts "#{user.id};#{user.username};#{user.name};#{user.email}"
end
users = User.where("length(username) = ? and length(name) = ? and id >= ? and id != ?", 10, 10, 240, 734) users.find_each do |user| puts "#{user.id};#{user.username};#{user.name};#{user.email}" end
users = User.where("length(username) = ? and length(name) = ? and id >= ? and id != ?", 10, 10, 240, 734) users.find_each do |user| user.destroy end
emails = ["doox6paigu4M@doox6paigu4M.com", "eeThiel3eex9@eeThiel3eex9.com"] users = User.where("email in (?)", emails) users.find_each do |user| puts user.name end
NAS – openmediavault
openmediavault is the next generation network attached storage (NAS) solution based on Debian Linux. It contains services like SSH, (S)FTP, SMB/CIFS, DAAP media server, RSync, BitTorrent client and many more. Thanks to the modular design of the framework it can be enhanced via plugins.
Intel Xeon and Suspend to RAM
- Troubleshooting tips for Suspend-to-RAM
https://unix.stackexchange.com/questions/452282/troubleshooting-tips-for-suspend-to-ram
PostgreSQL users and roles
- Managing PostgreSQL users and roles
https://aws.amazon.com/pt/blogs/database/managing-postgresql-users-and-roles/ - How do I create another user with the same privileges as a master user for my Amazon RDS or Aurora DB instance that’s running PostgreSQL?
https://aws.amazon.com/pt/premiumsupport/knowledge-center/rds-aurora-postgresql-clone-master-user/ - Amazon RDS PostgreSQL: how to create user?
https://stackoverflow.com/questions/47249546/amazon-rds-postgresql-how-to-create-user