Unix Less Command: 10 Tips for Effective Navigation
https://www.thegeekstuff.com/2010/02/unix-less-command-10-tips-for-effective-navigation/
https://www.thegeekstuff.com/2010/02/unix-less-command-10-tips-for-effective-navigation/
Thegeekstuff
Unix Less Command: 10 Tips for Effective Navigation
I personally prefer to use less command to view files (instead of opening the file to view in an editor). Less is similar to more command, but less allows both forward and backward movements. Moreover, less don’t require to load the whole file before viewing.…
نوشتههای ترمینالی
Unix Less Command: 10 Tips for Effective Navigation https://www.thegeekstuff.com/2010/02/unix-less-command-10-tips-for-effective-navigation/
در مورد دستور less بخونید، همون محیطیه که manها توش باز میشه.
تا یه حد خوبی دستورات ویم مثل navigate و سرچ رو ساپورت میکنه.
تا یه حد خوبی دستورات ویم مثل navigate و سرچ رو ساپورت میکنه.
https://medium.com/better-programming/dont-use-boolean-arguments-use-enums-c7cd7ab1876a
چرا enum رو به کلی بولین باید ترجیح بدیم؟
با تشکر از آقای جالینوکس
چرا enum رو به کلی بولین باید ترجیح بدیم؟
با تشکر از آقای جالینوکس
Medium
Don’t Use Boolean Arguments, Use Enums
A case for avoiding flag values in your code
https://en.wikipedia.org/wiki/Data-oriented_design
در مورد data oriented design هم بدونید.
به طور خلاصه برنامهنویس میاد برنامه رو برای استفاده از حافظهها مثل کش پردازنده بهینه میکنه.
مثلا کجا؟ توی بازیهای رایانهای
در مورد data oriented design هم بدونید.
به طور خلاصه برنامهنویس میاد برنامه رو برای استفاده از حافظهها مثل کش پردازنده بهینه میکنه.
مثلا کجا؟ توی بازیهای رایانهای
Wikipedia
Data-oriented design
Program optimization approach in computing
Windows vs. Unix Line Endings
https://www.cs.toronto.edu/~krueger/csc209h/tut/line-endings.html
https://www.cs.toronto.edu/~krueger/csc209h/tut/line-endings.html
از هر چه میرود سخن دوست خوشتر است
معرفی زبان برنامهنویسی Haskell
https://virgool.io/@rsharifnasab/haskel-hlvwopyeemmv
معرفی زبان برنامهنویسی Haskell
https://virgool.io/@rsharifnasab/haskel-hlvwopyeemmv
ویرگول
معرفی زبان برنامهنویسی Haskell
چرا زبانهای فانکشنال مهمن و هر برنامهنویسی باید باهاشون آشنا باشه؟ در ادامه بخونید
Forwarded from Me as myself:)
ریسکی ترین کار ممکن در زندگی میتونه این باشه که یه فلش بوتیبل از سیستم عاملتون نداشته باشین!
در مورد glibc هم بدونیم.
https://stackoverflow.com/questions/11460782/what-is-glibc-what-is-it-used-for
https://stackoverflow.com/questions/11460782/what-is-glibc-what-is-it-used-for
Stack Overflow
What is GLIBC? What is it used for?
I was searching for the source code of the C standard libraries. What I mean with it is, for example, how are cos, abs, printf, scanf, fopen, and all the other standard C functions written, I mean ...
https://kde.org/applications/education/org.kde.kturtle
یکی از دوست داشتنی ترین زبانهای برنامهنویسی هم kturtle هست.
از برنامههای kde هست (از k اولش میشه حدس زد)
برای آموزش برنامهنویسی به کودکان هست.
من به scratch ترجیحش میدم.
یکی از دوست داشتنی ترین زبانهای برنامهنویسی هم kturtle هست.
از برنامههای kde هست (از k اولش میشه حدس زد)
برای آموزش برنامهنویسی به کودکان هست.
من به scratch ترجیحش میدم.
Forwarded from Complex Systems Studies
این دوره جزو چیزایی هست که:
۱) هیچجایی به آدم درس نمیدن
۲) همه حرفهایها بلدش هستن
۳) همه چون خودشون یاد گرفتن فکر نکردن که این چیزا بدیهی نیست
۴) بدون اینها شاید زندگیتون بگذره، ولی با دونستن این نکتههای ریز، نگاهتون به کامپیوتر و تواناییهاتون خیلی ساده چند برابر میشه!
https://missing.csail.mit.edu/2020/course-shell/
ویدیوها:
https://www.aparat.com/playlist/406966
۱) هیچجایی به آدم درس نمیدن
۲) همه حرفهایها بلدش هستن
۳) همه چون خودشون یاد گرفتن فکر نکردن که این چیزا بدیهی نیست
۴) بدون اینها شاید زندگیتون بگذره، ولی با دونستن این نکتههای ریز، نگاهتون به کامپیوتر و تواناییهاتون خیلی ساده چند برابر میشه!
https://missing.csail.mit.edu/2020/course-shell/
ویدیوها:
https://www.aparat.com/playlist/406966
https://softwareengineering.stackexchange.com/questions/148108/why-is-global-state-so-evil
global mutable state is bad
global mutable state is bad
Software Engineering Stack Exchange
Why is Global State so Evil?
Before we start this, let me say I'm well aware of the concepts of Abstraction and Dependency Injection. I don't need my eyes opened here.
Well, most of us say, (too) many times without really
Well, most of us say, (too) many times without really
struct node{
int data;
};
node* newnode(int num){
node t;
t.data = num;
node *temp = &t ;
return temp ;
}
اشکال این کد C چیه؟ (کد واقعیایه که برام فرستادن دیباگ کنم)
int data;
};
node* newnode(int num){
node t;
t.data = num;
node *temp = &t ;
return temp ;
}
اشکال این کد C چیه؟ (کد واقعیایه که برام فرستادن دیباگ کنم)