✅ مشارکت و انجام issue به همراه bounty
در زیر تسکی داریم خیلی مهم هستش و همچنین برای شروع مشارکت در پروژه آزاد مناسب می باشد.
https://github.com/pactus-project/pactus/issues/805
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
در زیر تسکی داریم خیلی مهم هستش و همچنین برای شروع مشارکت در پروژه آزاد مناسب می باشد.
https://github.com/pactus-project/pactus/issues/805
توضیحات درخصوص تسک:
ما از کاربران گزارشهای زیادی دریافت کردهایم که نمیتوانند نود خود را اجرا کنند به دلیل خطای 'منبع به طور موقت در دسترس نیست'. این مشکل زمانی پیش میآید که در حال حاضر یک نود در پسزمینه در حال اجرا است و کاربران تلاش میکنند تا یک نود جدید را شروع کنند. ما باید یک راه برای شناسایی اینکه یک نمونه از Pactus در حال اجرا است را پیدا کنیم. اگر چنین است، باید کاربر را قبل از تلاش برای شروع یک نود جدید مطلع کنیم تا از این خطا جلوگیری شود.
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
💊4🔥3👍1
1699469074421.pdf
1 MB
👍6❤1🕊1
✅ آموزش استفاده از go.work و ورژن بندی هر ماژول
در زیر آموزش استفاده از go workspace را قرار دادیم که بتوانید چندین ماژول با ورژن اختصاصی تعریف و داخل pkg.go.dev چطور ثبت کنید.
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
در زیر آموزش استفاده از go workspace را قرار دادیم که بتوانید چندین ماژول با ورژن اختصاصی تعریف و داخل pkg.go.dev چطور ثبت کنید.
مخزن: https://github.com/Ja7ad/go-work
پکیج: https://pkg.go.dev/pkg.go.dev/github.com/Ja7ad/go-work
ماژول ۱: https://pkg.go.dev/github.com/Ja7ad/go-work/mod1
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
👍5
اگر پرمیوم هستید در تلگرام می توانید با زدن Boost از کانال گوفر آکادمی و گروه مهندسین گولنگ حمایت کنید.
https://t.me/gopher_academy?boost
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
https://t.me/gopher_academy?boost
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
🍾4
#fact
In Go (Golang), the boolean values true and false are untyped bool. This means that unlike many other programming languages, where boolean values have a specific type (e.g., bool), in Go, true and false are untyped. This design choice allows for greater flexibility in certain expressions and comparisons. The constants true and false are defined as untyped bool constants, and they can be used in various contexts without requiring explicit casting to a boolean type. This is a distinctive feature of Go's type system.
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
In Go (Golang), the boolean values true and false are untyped bool. This means that unlike many other programming languages, where boolean values have a specific type (e.g., bool), in Go, true and false are untyped. This design choice allows for greater flexibility in certain expressions and comparisons. The constants true and false are defined as untyped bool constants, and they can be used in various contexts without requiring explicit casting to a boolean type. This is a distinctive feature of Go's type system.
// true and false are the two untyped boolean values.
const (
true = 0 == 0 // Untyped bool.
false = 0 != 0 // Untyped bool.
)
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
👍3💊2🕊1
دیتابیس PostgreSQL قابلیت Full-Text search داره که خیلی وقت ها میتونه نیازمندی هارو پوشش بده و لازم نباشه سرویسی مثل elasticsearch رو بصورت مجزا استفاده کرد. چون نگهداری و مدیریت هر سرویس جدید هم هزینه نیروی انسانی داره و هم هزینه زمانی و انتقال دانش و کسب تجربه و غیره.
این مقاله قابلیت های دیتابیس PostgreSQL برای Full-Text search رو بیان میکنه
Create an advanced search engine with PostgreSQL
https://xata.io/blog/postgres-full-text-search-engine
#gocasts
#database #postgres
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
این مقاله قابلیت های دیتابیس PostgreSQL برای Full-Text search رو بیان میکنه
Create an advanced search engine with PostgreSQL
https://xata.io/blog/postgres-full-text-search-engine
#gocasts
#database #postgres
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
👍4❤2🕊2🔥1🍾1
مجموعه نوشتههای درهم و برهم یک محقیق امنیتی در مورد مسایل مختلف که در قالب یک کتاب دراورده شده.
https://ppn.snovvcrash.rocks
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
https://ppn.snovvcrash.rocks
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
👍5❤3🔥1🍾1💊1
1698886842698.jpg
179.8 KB
👍2🔥1💊1
This has been added to Go 1.22:
https://github.com/golang/go/issues/61410
Examples:
🕊 @gopher_academy
https://github.com/golang/go/issues/61410
Examples:
mux := http.NewServeMux()➖➖➖➖➖➖➖➖
mux.HandleFunc("POST /user/$", ...)
mux.HandleFunc("GET /user/{username}", ...)
mux.HandleFunc("GET /website/{item...}", ...)
🕊 @gopher_academy
👍14🔥3💊3
Go With The Domain - DevTwitter.pdf
21.1 MB
#Go
Go With The Domain
Building Modern Business Software in Go
- By Robert Laszczak and Milosz Smolka
- 221 Pages
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
Go With The Domain
Building Modern Business Software in Go
- By Robert Laszczak and Milosz Smolka
- 221 Pages
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
🍾4🔥2💊1
😴TDD Outcomes: The Good & The Bad
🔰 https://open.substack.com/pub/tidyfirst/p/tdd-outcomes
✍️ KENT BECK | NOV 15, 2023
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
🔰 https://open.substack.com/pub/tidyfirst/p/tdd-outcomes
✍️ KENT BECK | NOV 15, 2023
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
❤1👍1🔥1
🔵Golang Structs Memory Benchmarks
🔴https://prog-bytes.hashnode.dev/golang-structs-memory-allocation-ii
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
🔴https://prog-bytes.hashnode.dev/golang-structs-memory-allocation-ii
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
❤1👍1🔥1🕊1
این ریپو لیستی از پروژه های اوپن سورسه که ایرانی ها ساختنش
چیزای بدرد بخوری توش داره حتما نگاهی بهش بندازید.
https://github.com/mohebifar/made-in-iran
#DevTwitter | <Reza Omranian/>
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
چیزای بدرد بخوری توش داره حتما نگاهی بهش بندازید.
https://github.com/mohebifar/made-in-iran
#DevTwitter | <Reza Omranian/>
➖➖➖➖➖➖➖➖
🕊 @gopher_academy
🍾5😁2🕊2💊1