شرکتی در ایران نیازمند برنامه نویس فرانت اند هست. لطفاً در صورتی که تمایل به همکاری دارید به بنده پیام بدید:
@alirezastack
#شغل
@alirezastack
#شغل
https://www.youtube.com/watch?t=1890&v=IR1NLfaq7PU&feature=youtu.be
#kafka #event_driven #microservice
#kafka #event_driven #microservice
YouTube
Building event-driven (Micro)Services with Apache Kafka by Guido Schmutz
This session will begin with a short recap of how we created systems over the past 20 years, up to the current idea of building systems, using a Microservices architecture. What is a Microservices architecture and how does it differ from a Service-Oriented…
https://podcasts.google.com/?feed=aHR0cHM6Ly9zb2Z0d2FyZWVuZ2luZWVyaW5nZGFpbHkuY29tL2NhdGVnb3J5L3BvZGNhc3QvZmVlZC8&ep=14&episode=aHR0cDovL3NvZnR3YXJlZW5naW5lZXJpbmdkYWlseS5jb20vP3A9MTAzNzY
#kafka #podcast #alternative
#kafka #podcast #alternative
Google Podcasts
Podcast – Software Engineering Daily - Redpanda: Kafka Alternative with Alexander Gallego
Kafka has achieved widespread popularity as a popular distributed queue and event streaming platform, with enterprise adoption and a billion dollar company (Confluent) built around it. But could there be value in building a new platform from scratch? Redpanda…
While configuration can be tested with command
There is a command
Command to test and reload if it's ok:
#nginx #test #configtest
service nginx configtest
, there is a more convenient way to do this - and immediately get whats wrong. There is a command
nginx -t
, which test configuration and display error messages. Both commands must be used with sudo or permission denied messages might be shown (regarding SSL certificates for example).Command to test and reload if it's ok:
sudo nginx -t && sudo service nginx reload
#nginx #test #configtest
A senior React developer needed for a tech startup located in Hafez st.
Please send your resumes to:
@alirezastack
#job #react #redux
Please send your resumes to:
@alirezastack
#job #react #redux
How to copy a file in the same path with a different name?
Well you just need to use curly braces, {}, to make it happen:
What you usually MIGHT do:
You can take the smart path btw:
NOTE: if suffix of both files are different you can put that inside of curly braces too.
#linux #sysadmin #cp #copy #trick
Well you just need to use curly braces, {}, to make it happen:
What you usually MIGHT do:
cp /usr/local/share/lib/sample.conf /usr/local/share/lib/settings.conf
You can take the smart path btw:
cp /usr/local/share/lib/{sample,settings}.conf
NOTE: if suffix of both files are different you can put that inside of curly braces too.
#linux #sysadmin #cp #copy #trick