3,654 reputation
921
bio website github.com/mostafah
location Tehran, Iran
age 28
visits member for 3 years, 9 months
seen yesterday
stats profile views 292

Software developer and typography lover

@mostafa_h

google

facebook

linkedin


Apr
23
comment Remove empty values from array simply - javascript
Look at the implementation of compact in Lo-Dash.
Apr
20
comment How to read/write from/to file?
@chmike Thanks for catching that err bug. Fixed it. I was not sure about closing read-only files. Do you have any reference that says we should not worry about close errors for read-only files?
Apr
20
revised How to read/write from/to file?
fixed another bug in code
Apr
4
comment How to read/write from/to file?
@cdf Sorry for the bug. It was introduced in the last edit. Updated the answer to fix this.
Apr
4
revised How to read/write from/to file?
Remove unused variable n2
Mar
30
revised Does Go provide REPL?
Add gore
Mar
26
awarded  Revival
Mar
19
comment Golang reference to slice field in array of types
1: You don’t have to use a pointer to a slice here. Slices are references to actual arrays. 2: You’re actual problem (as jnml and PeterSo wrote here) is that f in range is a copy and changing that does not change slice elements. 3: Why not make a function for creating new Fixtures?
Mar
18
comment How does the Go programming language handle dates and times?
Another really nice thing about time package in Go is that there’s no “Data” or “DateTime” type. It only has a Time, which represents a point in time (with limited precision, of course).
Mar
18
comment Is there a distributed data processing pipeline framework, or a good way to organize one?
@AlexanderStaubo I see. Sorry for the naive answer then. I’m not aware of such things for Go, except for what Iron.io offers with its Worker and MQ services.
Mar
18
comment How to make a web server in Go?
@KaranGurnani I guess Go is not the problem here. You have to start by learning more about how HTTP works. Go is pretty straightforward if you know what you are doing.
Mar
16
revised Is there a distributed data processing pipeline framework, or a good way to organize one?
added 15 characters in body
Mar
16
answered Is there a distributed data processing pipeline framework, or a good way to organize one?
Mar
16
comment How to make a web server in Go?
Could you please add more explanation? What’s exactly your question? The code you have is technically a complete web server. What else do you want?
Mar
15
comment How to check whether a file or directory denoted by a path exists in golang?
@OlivierAmblet Sorry for the late response. What do you mean by “this kind of code”? Checking for err or what?
Mar
15
comment How to read/write from/to file?
@NickCraig-Wood Thank your for your important tip. I added extra code to check for error on calling Close. I’m also starting to check for error on Close in my own programs.
Mar
15
comment How to read/write from/to file?
@ayke Nice catch. I updated the answer (and some of my own code!) and removed the useless error check.
Mar
15
revised How to read/write from/to file?
improve error checking and add comments
Jan
18
awarded  Guru
Dec
10
awarded  Revival