Academy and Foundation unixmens | Your skills, Your future
2.28K subscribers
6.66K photos
1.37K videos
1.23K files
6.02K links
@unixmens_support
@yashar_esm
[email protected]
یک کانال علمی تکنولوژی
فلسفه متن باز-گنو/لینوکس-امنیت - اقتصاد
دیجیتال
Technology-driven -بیزینس های مبتنی بر تکنولوژی
Enterprise open source
ارایه دهنده راهکارهای ارتقای سازمانی - فردی - تیمی
Download Telegram
کتاب جرم یابی شبکه
Load Balancing Using
PCC & RouterOS
(microtic)
ششمین مسابقه فتح پرچم، در یک مرحله برگزار خواهد شد و کلیه علاقمندان این حوزه می‌توانند دانش عملی و تجربی خود را در این حوزه، به مرحله آزمایش بگذارند. کلیه شرکت کنندگان باید در قالب تیم‌های حداکثر ۳ نفره در رقابت‌ها شرکت کنند. یکی از اعضای تیم به عنوان سرپرست تیم شناخته شده و کلیه ارتباط‌‌ها در طول دوره ثبت نام و برگزاری مسابقه، با این شخص انجام خواهد گرفت.
نحوه برگزاری
چالش‌‌های مطرح در «مسابقه فتح پرچم» در حوزه‌های زیر مطرح خواهد شد:

نفوذگری در وِب (web hacking)
پنهان نگاری (steganography)
شکست الگوریتم‌ها و پروتکل‌های رمزنگاری (cryptography)
حل چالش‌های مرتبط با شواهد جرایم رایانه‌ای (forensics)
کدنویسی امن (secure coding)
مهندسی معکوس (reverse engineering)
recon

مسابقه به مدت ۴۸ ساعت برگزار خواهد شد و در تمام طول مسابقه تیم فنی برگزاری به سوالات احتمالی شرکت کنندگان پاسخ خواهد داد. جدول رده‌بندی در طول مسابقه از طریق پرتال مسابقه در اختیار شرکت کنندگان قرار دارد. سایر علاقمندان نیز می‌توانند جدول رده‌بندی را از طریق سایت رسمی مسابقات مشاهده نمایند.
نتیجه نهایی مسابقه مقدماتی پس از مشاهده سوابق تیم‌های شرکت کننده و بررسی احتمال تقلب اعلام می‌شود. در مراسم پایانی از سه تیم برتر ایرانی که در بین بیست تیم نخست جدول رده‌بندی حضور داشته باشند اقدردانی خواهد شد. جدول رده‌بندی مسابقه در دو ساعت پایانی مسابقه از دسترس خارج شده و جدول نهایی پس از مراسم اختتامیه رقابت‌ها که در روز چهارشنبه ۲۹بهمن ماه در دسترس قرار خواهد گرفت.


به سه تیم برتر مسابقه نهایی این دوره از مسابقه فتح پرچم، علاوه بر لوح تقدیر و تندیس این دوره از رقابت‌ها، جوایز نقدی زیر اهدا خواهد شد:

تیم اول: مبلغ ۴۰ میلیون ریال
تیم دوم: مبلغ ۳۰ میلیون ریال
تیم سوم: مبلغ ۲۰ میلیون ریال
آموزش های 5 آبان

آموزش گام به گام ساخت کوادکوپتر
https://ehsanavr.com/28703/

استخراج داده ها از سایت های محبوب با Python و Ruby
https://ehsanavr.com/28857/

آموزش لینوکس برای مبتدیان
https://ehsanavr.com/28709/


دوره Linux System Administration
https://ehsanavr.com/28711/

مدیریت Linux برای مبتدیان
https://ehsanavr.com/28710/

آموزش Linux برای تازه کاران همراه با مثال
https://ehsanavr.com/28708/

آموزش طراحی UI/UX برای اپلیکیشن های موبایل با فتوشاپ از ابتدا
https://ehsanavr.com/28707/


آموزش برنامه نویسی C به عنوان اولین زبان
https://ehsanavr.com/28705/

آموزش طراحی Landing Page
https://ehsanavr.com/28704/


آموزش گام به گام PHP و MySQL برای مبتدیان
https://ehsanavr.com/28852/

آموزش عملی Python
https://ehsanavr.com/28853/


راهنمای بازاریابی در Google و Facebook و Twitter
https://ehsanavr.com/28855/

ارتقا رزومه برای یافتن شغل مناسب
https://ehsanavr.com/28856/

افزایش درآمد دوره ها برای مربیان Udemy با WordPress
https://ehsanavr.com/28858/
The Unix philosophy is philosophical approaches to developing software based on the experience of leading developers of the Unix operating system. The following philosophical approaches also applies to Linux operating systems.

Do one thing and do it well - Write programs that do one thing and do it well. Write programs to work together. Write programs to handle text streams, because that is a universal interface.
Everything is file - Ease of use and security is offered by treating hardware as a file.
Small is beautiful.
Store data and configuration in flat text files - Text file is a universal interface. Easy to create, backup and move to another system.
Use shell scripts to increase leverage and portability - Use shell script to automate common tasks across various UNIX / Linux installations.
Chain programs together to complete complex task - Use shell pipes and filters to chain small utilities that perform one task at time.
Choose portability over efficiency.
Keep it Simple, Stupid (KISS).
#linux
Shebang
------------------------------------------------
The #! syntax used in scripts to indicate an interpreter for execution under UNIX / Linux operating systems. Most Linux shell and perl / python script starts with the following line:
#!/bin/bash
or
#!/usr/bin/perl
or
#!/usr/bin/python

Starting a Script With #!
1. It is called a shebang or a "bang" line.
2. It is nothing but the absolute path to the Bash interpreter.
3. It consists of a number sign and an exclamation point character (#!), followed by the full path to the interpreter such as /bin/bash.
4. All scripts under Linux execute using the interpreter specified on a first line.
5. Almost all bash scripts often begin with #!/bin/bash (assuming that Bash has been installed in /bin).
6. This ensures that Bash will be used to interpret the script, even if it is executed under another shell.
7. The shebang was introduced by Dennis Ritchie between Version 7 Unix and 8 at Bell Laboratories. It was then also added to the BSD line at Berkeley.

#daily_linux_tips #linux #lx_learning #lx_shellScript #lx_basics
Shebang
------------------------------------------------
The #! syntax used in scripts to indicate an interpreter for execution under UNIX / Linux operating systems. Most Linux shell and perl / python script starts with the following line:
#!/bin/bash
or
#!/usr/bin/perl
or
#!/usr/bin/python

Starting a Script With #!
1. It is called a shebang or a "bang" line.
2. It is nothing but the absolute path to the Bash interpreter.
3. It consists of a number sign and an exclamation point character (#!), followed by the full path to the interpreter such as /bin/bash.
4. All scripts under Linux execute using the interpreter specified on a first line.
5. Almost all bash scripts often begin with #!/bin/bash (assuming that Bash has been installed in /bin).
6. This ensures that Bash will be used to interpret the script, even if it is executed under another shell.
7. The shebang was introduced by Dennis Ritchie between Version 7 Unix and 8 at Bell Laboratories. It was then also added to the BSD line at Berkeley.

#daily_linux_tips #linux #lx_learning #lx_shellScript #lx_basics