techinject.blogspot.com
Technology injection: The simplicity pattern
http://techinject.blogspot.com/2009/11/simplicity-pattern.html
A daily doze of technology keeps you running-. Wednesday, November 4, 2009. Wow I wrote the word pattern, well a pattern for your brain that you must adopt imediatly. Every developer including myself tends to implement really cool, really complex solutions to every possible simple problem we can find. We just need to. Well I want to get rid of this “thing”. Try to keep both feeds to the ground at rethink what the solution should be to meet the customer. Yesterday I found this great DDD website. I’m...
mfathur.wordpress.com
Testing in Go | Jalan Lain
https://mfathur.wordpress.com/2014/10/08/testing-in-go
Ada seribu jalan. Tentu saja tidak ada yang mudah. Asymp; Tinggalkan komentar. Seringkali kita membuat program entry pointnya selalu lewat “main”. Code kita build (atau di Go install) kemudian kita cari executable file-nya dan jalankan. Terkadang untuk sampai titik test tertentu (function tertentu) kita harus mulai dari “main”. Ini saya kira terlalu jauh. Di Go ada fasilitas untuk itu, untuk menjalankannya cukup ketik:. Untuk itu kita harus import package “testing” build in package dari Go. You are comme...
mfathur.wordpress.com
My Fist Closure | Jalan Lain
https://mfathur.wordpress.com/2014/11/11/my-fist-closure
Ada seribu jalan. Tentu saja tidak ada yang mudah. Asymp; Tinggalkan komentar. Func fibonacci() func() int { i,j:=0,1 return func() int { r:=i j i,j=j,r return r } }. Larr; Previous post. Next post →. Tinggalkan Balasan Batalkan balasan. Ketikkan komentar di sini. Isikan data di bawah atau klik salah satu ikon untuk log in:. Alamat takkan pernah dipublikasikan). You are commenting using your WordPress.com account. ( Logout. You are commenting using your Twitter account. ( Logout. DDD Step by Step.
mfathur.wordpress.com
Shift Operator | Jalan Lain
https://mfathur.wordpress.com/2014/11/07/shift-operator
Ada seribu jalan. Tentu saja tidak ada yang mudah. Asymp; Tinggalkan komentar. Left shift operator i k means i*(2 k) and right shift operator i k means i/(2 k). Larr; Previous post. Next post →. Tinggalkan Balasan Batalkan balasan. Ketikkan komentar di sini. Isikan data di bawah atau klik salah satu ikon untuk log in:. Alamat takkan pernah dipublikasikan). You are commenting using your WordPress.com account. ( Logout. You are commenting using your Twitter account. ( Logout. Cinta, passion dan pengorbanan.
mfathur.wordpress.com
Jalan Lain | Ada seribu jalan. Tentu saja tidak ada yang mudah. | Laman 2
https://mfathur.wordpress.com/page/2
Ada seribu jalan. Tentu saja tidak ada yang mudah. Go, Hello World. Asymp; Tinggalkan komentar. Setelah install Go di lokal komputer saya perlu menjalankan Go untuk testing environment. Seperti biasanya saya ikutin apa yang ada dipetunjuk, “Hello world”. Package main import fmt func main() { fmt.Printf(hello, world n) }. Saya jalankan di console dengan : Go run “namafile”. Asymp; Tinggalkan komentar. Sudah hampir 4 tahun saya gak nulis apapun disini, tiba-tiba hati saya tertancap pada Go. Register(echo, ...
mfathur.wordpress.com
Go Code Organization And Setting Environment | Jalan Lain
https://mfathur.wordpress.com/2014/10/06/go-code-organization-and-setting-environment
Ada seribu jalan. Tentu saja tidak ada yang mudah. Go Code Organization And Setting Environment. Asymp; Tinggalkan komentar. Sebelum menuliskan code, menurut tutorial Go, kita harus memahami dulu struktur organisasi code di Go agar tool2 development Go bisa memahami dan development berjalan lancar. Code harus kita letakkan di. Terdapat 3 sub directory:. Src, berisi source code yang kita buat. Pkg, berisi paket-paket object yang akan kita reference di source code. Saya buat workspace yang bernama: latihan.
cyrille.martraire.com
ddd | Cyrille Martraire
http://cyrille.martraire.com/category/programming/ddd-programming
Past hobbies and interests. How to fail an Open Space session. And the answer is: when you try to change the format until it’s not really an open space session any more. A word on Open Space technology. Is a beautiful format. Basically it’s all about people interested in a common topic joining to discuss it together, usually with a flip chart. It comes with rules that actually remind participants that they are the actors of what is going to happen, and these rules shape the expectations:. Note that there...
cyrille.martraire.com
Patterns | Cyrille Martraire
http://cyrille.martraire.com/category/programming/patterns-programming
Past hobbies and interests. All about patterns, books and catalogues, research and experiments, methodologies and tools. Make Money vs Reduce Risks dichotomy. In sports, football for example, players have only one goal in mind: score, score, again and again, as often as possible. Close to them, but not too close, arbiters have only one goal in mind: detect quickly all violations of the rules of the game, and sanction them. This schema occurs again between banks, who want to make money, and the regulators...
mfathur.wordpress.com
Oktober | 2014 | Jalan Lain
https://mfathur.wordpress.com/2014/10
Ada seribu jalan. Tentu saja tidak ada yang mudah. Asymp; Tinggalkan komentar. Berbeda dari C dan turunannya, variable di Go di deklarasikan dengan menyebut nama variable baru tipe. Tujuannya agar jelas ketika variable menjadi komplek, utamanya ketika nanti berhubungan dengan closure. Int (*(*fp)(int (*)(int, int), int) (int, int). F func(func(int,int) int, int) func(int, int) int. Reference Library di Go. Asymp; Tinggalkan komentar. Import “fmt”. Import “math”. Fmt dan math adalah nama package. Di Go ad...