👎5
عجب چیز ارزشمندی یافتم /=
خیلی راحت داشبورد تجاری/دواپس/CRM/HR بسازید... ساپورت ریکت و نکست جی اس داره.
https://refine.dev
خیلی راحت داشبورد تجاری/دواپس/CRM/HR بسازید... ساپورت ریکت و نکست جی اس داره.
https://refine.dev
refine.dev
Refine | Open-source Retool for Enterprise
Build React-based internal tools, admin panels, dashboards & B2B apps with unmatched flexibility.
👎5
بلاخره یافتم بکگراند های عجیب غریبی که فرانت کار های خوب درست میکنند از کجا میاد/=
https://bgjar.com/
https://bgjar.com/
BGJar
Free svg background generator
Free svg background generator for your websites, blogs and app.
👎5👍1
با استفاده از پکیج flamegraph میتونید گراف pprof تون رو داشته باشید.
https://github.com/brendangregg/FlameGraph
https://github.com/brendangregg/FlameGraph
New:
Purpose: Allocates memory for a value of a specific type and returns a pointer to that memory location.
Return type: Pointer to the allocated memory (e.g., *T).
Initialization: The allocated memory is zero-initialized. This means all bits in the memory are set to 0.
Usage: Creating pointers to simple value types like structs or integers, where you need to manually manage the memory.
Implementing custom data structures with manual memory management.
Example:
Purpose: Allocates memory for a value of a specific type and returns a pointer to that memory location.
Return type: Pointer to the allocated memory (e.g., *T).
Initialization: The allocated memory is zero-initialized. This means all bits in the memory are set to 0.
Usage: Creating pointers to simple value types like structs or integers, where you need to manually manage the memory.
Implementing custom data structures with manual memory management.
Example:
var p *int // Declares a pointer to an integer
p = new(int) // Allocates memory for an integer and assigns the pointer to p
*p = 42 // Dereferences the pointer and assigns the value 42 to the allocated memory