Blockchain
Rust Traits
What is a trait? A trait is a way to enable reuse methods. We can think about traits that have some of the features of interfaces and Devamı…
What is a trait? A trait is a way to enable reuse methods. We can think about traits that have some of the features of interfaces and Devamı…
What are iterators in Rust? Anything which implements IntoIterator trait called as an iterator. Vec struct is implements iterator and all vectors are actually an iterator. And for Devamı…
Browsers have great feature called as “auto form fill”. But sometimes this feature really annoying users and developers. In the web there are some suggestions Devamı…
Bu makale bir eğitim içeriğinden ziyade Rust‘ta asenkronluk mevzusuyla ilgili ulaştığım kanıları ihtiva edecektir. İnternette zibilyon tane eğitim içeriği mevcut olduğundan dolayı bir eğitim serisi Devamı…
Rust is awesome language, blazingly fast, low level but of course it can be used in high level targets wery well. Now I will be Devamı…
Ethereum’da bir transaction oluşturduğumuzda bunun işlenebilmesi için bir fee belirlememiz gerekiyor. Bu fee ne yazıkki tek bir rakamdan oluşmuyor. Bu yüzden gerçekte harcanan fee miktarını Devamı…
As you know json_encode is encoding only array or public properties of an object. But print_r can expose the protected and private properties in an object. Sometimes Devamı…
Sometimes websites making some important things and they don’t want to leave or refresh the page until the process finish. But some websites are using Devamı…
Normally you can use where(), find(), get() and other static methods. But PHPStorm isn’t auto completing these methods although these methods exist. If you want Devamı…
For example you’re developing an app in Laravel. You want to add a new Route to routes/web.phpfile. Route::get(‘payment’, ‘App\\Http\\Controllers\[email protected]’); As you can see you must Devamı…