Gopher Academy
3.34K subscribers
920 photos
40 videos
280 files
2.02K links
🕸 Gopher Academy

🔷interview golang
https://github.com/mrbardia72/Go-Interview-Questions-And-Answers

حمایت مالی:
https://www.coffeete.ir/mrbardia72

ادمین:
@mrbardia72
Download Telegram
Gopher Academy
نحوه استفاده از JSON با Go در ادامه آموزش خواهیم داد 🔴Default types 🟡 https://t.me/gopher_academy/743 🔴Encode (marshal) struct to JSON 🟡 https://t.me/gopher_academy/744 🔴Pretty print 🟡 https://t.me/gopher_academy/745 🔴Decode (unmarshal) JSON to struct…
🔴Decode (unmarshal) JSON to struct
🔵 برای اینکه بخوایم jsonخود را decodeکنیم و توی خروجی نمایش بدیم یه سری از عناصر داخل فرم json رو مطابق کد فوق از تابع Unmarshal توی خط ۲۱ استفاده می کنیم

🔰 @gopher_academy
mihan-blockchain.pdf
524.5 KB
🔴blockchain

🔰 @gopher_academy
docker.pdf
1004 KB
🔴 docker

🔰 @gopher_academy
Docker Compose.pdf
97.9 KB
🔴 docker compose

🔰 @gopher_academy
Docker Swarm.pdf
47.2 KB
🔴docker swarm

🔰 @gopher_academy
GitHub Actions.pdf
1.2 MB
🔴github actions

🔰 @gopher_academy
🔴سری اول برگه تقلب🔴
🔵blockchain
🟢 https://t.me/gopher_academy/748
🔵docker
🟢 https://t.me/gopher_academy/758
🔵docker compose
🟢 https://t.me/gopher_academy/759
🔵 docker swarm
🟢 https://t.me/gopher_academy/760
🔵github actions
🟢 https://t.me/gopher_academy/761

#cheat_sheet

🔰 @gopher_academy
This media is not supported in your browser
VIEW IN TELEGRAM
🔵ویدیوی اختصاصی فعالیت‌های من در سال ۱۳۹۹
🟢 ادرس ویرگول من:(جهت مشاهده تمامی پست های من تو حوزه گولنگ)
🔴 https://virgool.io/@bardiiia
🟡 جزییات بیشتر
🟣 https://vrgl.ir/2CXRR

🔰 @gopher_academy
graphql.pdf
65.1 KB
🔴graphql

🔰 @gopher_academy
Kubernetes.pdf
174.4 KB
🔴kubernetes

🔰 @gopher_academy
linux.pdf
69.1 KB
🔴linux

🔰 @gopher_academy
mongo.pdf
249.6 KB
🔴mongo

🔰 @gopher_academy
terraform-cheat-sheet.pdf
91.7 KB
🔴terraform

🔰 @gopher_academy
🔴سری دوم برگه تقلب🔴
🔵graphql
🟢 https://t.me/gopher_academy/764
🔵kubernetes
🟢 https://t.me/gopher_academy/765
🔵Linux
🟢 https://t.me/gopher_academy/766
🔵 mongodb
🟢 https://t.me/gopher_academy/767
🔵terraform
🟢 https://t.me/gopher_academy/768

🔴سری اول برگه تقلب🔴
🔵blockchain
🟢 https://t.me/gopher_academy/748
🔵docker
🟢 https://t.me/gopher_academy/758
🔵docker compose
🟢 https://t.me/gopher_academy/759
🔵 docker swarm
🟢 https://t.me/gopher_academy/760
🔵github actions
🟢 https://t.me/gopher_academy/761

#cheat_sheet

🔰 @gopher_academy
🔴کنفرانس نرم‌افزار های آزاد و متن‌باز کرج‌لاگ با همراهی گروه‌های کاربری لینوکس از جمله

🟢شیراز‌لاگ
🟢اهواز‌لاگ
🟢اراک‌لاگ
🟢اصفهان‌لاگ

🟡در قالب شش ارائه فنی برگزار خواهد شد

🔵برای کسب اطلاعات و ثبت‌نام به آدرس ایوند درج شده در https://karajlug.org مراجعه نمایید

🔰 @gopher_academy
👍1
🔰Practical Cryptography With Go

🔺 https://leanpub.com/gocrypto/read#leanpub-auto-chapter-1-introduction

🔹 یه کتاب خوب در مورد اصول Cryptography در گولنگ
تو زمینه بلاکچین برای کسایی که میخوان کارکنن مفیده
🔰 @gopher_academy
🔴 فرق Structs با Maps
🟢For map:
🟡All key and value are of same type.
🟡When keys are indexed and we can iterate over them.
🟡Closely related and significant value type.
🟡Don’t need to know all the keys at compile time.
🟡Key are indexed- we can iterate over them.
🟡Reference type

🟢For struct:
🟡All values can be of different type.
🟡Need to know all the different fields at compile time.
🟡Keys don’t support indexing
🟡Value type.

🔰 @gopher_academy
🔸استخدام Golang Developer در شرکت تجارت بین الملل رابین تهران
🔹حقوق بیش از ۱۲ میلیون تومان 🔹تمام‌وقت 🔹ارشد (Senior)

🔗 https://quera.ir/r/jLtBq9

🔰 @gopher_academy
🔴 مدیریت حافظه در زبان های برنامه نویسی مدرن


🟢Introduction to Memory management
🟡 https://t.me/gopher_academy/778
🟢What is it?
🟡 https://t.me/gopher_academy/779
🟢Stack
🟡 https://t.me/gopher_academy/780
🟢Stack & Heap visualized
🟡 https://t.me/gopher_academy/781
🟢Heap
🟡 https://t.me/gopher_academy/782
🟢Why is it important?
🟡 https://t.me/gopher_academy/783
🟢Different approaches?
🟡 https://t.me/gopher_academy/784
🟢Manual memory management
🟡 https://t.me/gopher_academy/787
🟢Garbage collection(GC)
🟡 https://t.me/gopher_academy/788
🟢Garbage collection visualized
🟡 https://t.me/gopher_academy/789
🟢Resource Acquisition is Initialization (RAII)
🟡 https://t.me/gopher_academy/791
🟢Automatic Reference Counting(ARC)
🟡 https://t.me/gopher_academy/792


🔰 @gopher_academy
Gopher Academy
🔴 مدیریت حافظه در زبان های برنامه نویسی مدرن 🟢Introduction to Memory management 🟡 https://t.me/gopher_academy/778 🟢What is it? 🟡 https://t.me/gopher_academy/779 🟢Stack 🟡 https://t.me/gopher_academy/780 🟢Stack & Heap visualized 🟡 https://t.me/gopher_academy/781…
🟢Introduction to Memory management

🟡 مدیریت حافظه یکی از کارکردهای سیستم عامل است که به مدیریت حافظه اصلی و جابجایی پردازش‌ها بین حافظه اصلی و دیسک در طی اجرا می‌پردازد.
🟡 مدیریت حافظه صرف نظر از این که موقعیت‌های مختلف حافظه به پردازشی تخصیص یافته‌اند یا نه، همه آن‌ها را مدیریت می‌کند.
🟡 این فرایند میزان حافظه‌ای که باید به پردازش‌ها تخصیص یابد را تعیین می‌کند.
🟡 مدیریت حافظه تصمیم می‌گیرد که در هر زمان کدام پردازش به حافظه دسترسی داشته باشد. مدیریت حافظه به ردگیری مقدار حافظه تخصیص یافته یا آزاد شده پرداخته و وضعیت‌های متناظر با آن‌ها را به‌روزرسانی می‌کند.

🔰 @gopher_academy