Gopher Academy
3.34K subscribers
918 photos
40 videos
279 files
1.99K links
🕸 Gopher Academy

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

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

ادمین:
@mrbardia72
Download Telegram
Slice internal representation

🔰 @gopher_academy
👍3
Slice internal example when an array is sliced

🔰 @gopher_academy
👍3
Slice growing

🔰 @gopher_academy
👍3
Delete the element at index

🔰 @gopher_academy
👍3
Put an element at a specific index

🔰 @gopher_academy
👍51
Forwarded from Arvancloud
دعوت از برنامه‌نویسان Golang

💻 اگر دست‌کم ۲ سال سابقه‌ی برنامه‌نویسی با گولنگ را دارید، با کوبرنتیز آشنایید و دارای تجربه‌ی کار با CI/CD در گیت‌لب هستید، ما در تیم کانتینر ابری آروان به Golang Developer نیاز داریم.

🔗 برای دیدت شرح انتظارات و مهارت‌های این فرصت شغلی و ارسال رزومه، به لینک زیر سر بزنید:

r1c.io/naAa

#بازارکار

@ArvanCloud
👍3👎2
Forwarded from Toncoin فارسی
سرویس TON Storage چیست؟

سرویس TON Storage توسط بلاک چین TON برای ذخیره سازی نسخه‌ های آرشیو شده بلاک‌ها استفاده خواهد شد. علاوه بر این، کاربران و سرویس های مبنی بر TON می توانند فایل های دلخواه خود را در این سیستم ذخیره کنند.

در حال حاضر، اکثر سیستم های پایگاه داده در شرکت های بزرگ فناوری متمرکز هستند.

آمازون، مایکروسافت، گوگل، علی بابا و تِنسِنت بیش از 70 درصد از بازار رایانش ابری (cloud computing) را در اختیار دارند.

این قدرت‌های متمرکز به راحتی می توانند سرویسی را حذف و به داده‌هایی که قرار است خصوصی باشند، دسترسی پیدا کنند.

اینجاست که Web3 وارد میدان می شود.

متن کامل مقاله را اینجا به فارسی بخوانید.
👍4
Interactive Sha256 Algorithm Explained step by step.

سایتی که بصورت تعاملی روش کار الگوریتم SHA256 را توضیح می‌دهد.

#algorithm #sha #sha256 #crypto #cryptography

https://sha256algorithm.com


🔰 @gopher_academy
👍7
پشت صحنهٔ داکر و کانتینرها چه می‌گذرد؟

🎥 در این قسمت از سحاب‌تک‌تاک، نگاهی به پشت‌ صحنه کانتینر‌ها می‌اندازیم و به‌صورت عملی اجزاء یک کانتینر را مورد بررسی قرار می‌دهیم.

💡 سحاب‌تک‌تاک، ارائه‌های فنی سحابی‌هاست که یک هفته در میان در سحاب برگزار می‌شود. تصمیم گرفتیم منتخبی از این ارائه‌ها را برای دامنه بزرگتری از مخاطبین برگزار کنیم.

👤ارائه دهنده این قسمت، سیدوحید هاشمی‌ است که بیش از ۱۰ سال تجربه در صنعت نرم‌افزار و سابقه فعالیت در شرکت‌های بین‌المللی را دارد. وحید فارغ‌التحصیل مهندسی نرم‌افزار از دانشگاه Sheffield انگلستان و مدیر فنی(TPM) تیم SRE سحاب است.

📆 سه‌شنبه ۱۷ اسفند | ۱۷:۰۰ - ۱۸:۰۰

🔗 ثبت‌نام رایگان:
sahab.ir/stt


🔰 @gopher_academy
👍53🎉1
🔰There are 3 ways to find the type of variables in Golang as follows:

🔵Using reflect.TypeOf Function
🔵Using reflect.ValueOf.Kind() Function
🔵Using %T with Printf

🔰 @gopher_academy
👍8🎉1
A collection of best GitHub profile README's examples.
لیستی از بهترین readme های پروفایل‌های مختلف در گیت‌هاب بصورت نمونه برای استفاده شخصی :)

github.com/durgeshsamariya/awesome-github-profile-readme-templates


🔰 @gopher_academy
👍5🔥2🎉1
🥳سال 2581 شاهنشاهی هخامنشی مبارک🥳

🔰 @gopher_academy
👎16🎉15🔥1
❇️Sort a slice of ints, float64s or strings
Use one of the functions

sort.Ints
sort.Float64s
sort.Strings

🔰 @gopher_academy
1👍1🔥1
❇️Bitwise operators [cheat sheet]
Number literals
Built-in operators
Package math/bits

🔰 @gopher_academy
1🔥1👏1
Gopher Academy
❇️Bitwise operators [cheat sheet] Number literals Built-in operators Package math/bits 🔰 @gopher_academy
❇️Number literals
The binary number can be written as 020, 16 or 0x10 in Go.

🔰 @gopher_academy
👏21🔥1
Gopher Academy
❇️Bitwise operators [cheat sheet] Number literals Built-in operators Package math/bits 🔰 @gopher_academy
❇️Built-in operators

🥶The binary numbers in the examples are for explanation only. Integer literals in Go must be specified in octal, decimal or hexadecimal.

🥶The bitwise operators take both signed and unsigned integers as input. The right-hand side of a shift operator, however, must be an unsigned integer.

🥶Shift operators implement arithmetic shifts if the left operand is a signed integer and logical shifts if it is an unsigned integer.


🔰 @gopher_academy
👍21🔥1
Gopher Academy
❇️Bitwise operators [cheat sheet] Number literals Built-in operators Package math/bits 🔰 @gopher_academy
❇️Package math/bits

🥶The functions operate on unsigned integers.

🥶They come in different forms that take arguments of different sizes. For example, Len, Len8, Len16, Len32, and Len64 apply to the types uint, uint8, uint16, uint32, and uint64, respectively.


🔰 @gopher_academy
1🔥1👏1