Arc Forumnew | comments | leaders | submit | marcvs's commentslogin

Today I made some minor changes in the News app... I changed the gray arrow icon, because many visitors weren't realizing they were supposed to vote the stories, and now the stories open in another tab.

-----


hi, steve

I've been working at big newspapers/news companies here in Brazil for many years, but I'm not that happy with these companies strategies, so I decided to try some side project...

I don't know much about programming, so I decided to try something that was really simple. I'm a reader of Hacker News, discovered it's open source, and started looking for how to set up a clone. São Paulo is a really large city (11,32 million people live here), but we lack hubs to connect all these people (I think our news companies aren't doing that very well). So, I came up with this idea of applying the HN concept to a local news project.

To be honest, my main goal here is to learn more about programming and other technical stuff, so, it's been an awesome experience. The site runs on Amazon Linux AMI, and the majority of users are still my friends and the friends of my friends. (I finished the translation work yesterday). :P

It will be a pleasure to share more data with you in the following weeks! And thanks for all the help and support I found here.

PS.: "Espaço" can be translated as "Space", or a generic place. It's a common word in portuguese.

-----

3 points by jsgrahamus 4014 days ago | link

Hi, Marcos.

Congratulations on all you've done starting even as a non-programmer. I'm impressed. Although I've been programming for decades, I have little experience in Arc or Lisp and have found the folks on this forum to be friendly and helpful.

Many years ago I lived in Brasil for about 2 years. Part of that time I spent in Sao Paulo: Pinheiros, Jacana, Santa and Jabaquara. Still have good memories of that time.

Ate logo.

-----

1 point by marcvs 4014 days ago | link

thanks! e até logo! :)

-----


i've been using AWS SES, but i'm still trying to figure out how to integrate it with News.

i've found some documentation here, but i'm still scratching the surface:

http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-em...

-----

3 points by akkartik 4031 days ago | link

Interesting.

It might be simplest to just install postfix (I've tried it several times, and the three-screen configuration wizard Just Works) and then follow the steps in http://docs.aws.amazon.com/ses/latest/DeveloperGuide/postfix... to have postfix route through SES.

I'll update anarki later today with a sample for sending email through postfix.

-----

4 points by akkartik 4030 days ago | link

Ok, anarki now supports 'forgot password'; try clicking on the login link.

There's two major commits: requiring users to provide an email on signup (https://github.com/nex3/arc/commit/c984408fec), and the 'forgot password' flow to email a reset-password link (https://github.com/nex3/arc/commit/150f8a26b5)

-----

1 point by marcvs 4030 days ago | link

awesome, thanks!

-----

1 point by marcvs 4037 days ago | link | parent | on: Google Analytics inside news?

hey, it works! thank you.

-----


good tutorial on screen: http://www.rackaid.com/resources/linux-screen-tutorial-and-h...

-----

2 points by thaddeus 4040 days ago | link

I didn't know screen allowed you to keep a running log file. Had I known that before I probably could have solved a few head scratchers a little easier.

That was useful, thx.

-----


did you install the latest version of racket? there's an updated version since nicholas published his tutorial. i followed his instructions and everything worked fine.

-----

1 point by geoengineering 4041 days ago | link

I just upgraded to 5.3.3 but that didn't fix it. Still getting the same error.

I am wondering if there is a permissions problem. It sounds like mzscheme is trying to read as.scm but failing.

-----

1 point by geoengineering 4041 days ago | link

tried running it as sudo. No change. There are 23 characters in the first line of as.scm and I am getting the error message

read failed to read all 23 bytes from file mzscheme

-----

1 point by akkartik 4041 days ago | link

Weird. Can you try running the main branch of anarki with just:

  $ racket -f as.scm
? We're trying to move away from legacy mzscheme. Let us know if the error persists.

In general, the instructions we've been steering newcomers toward are at https://sites.google.com/site/arclanguagewiki/getting-starte..., which we try to keep up-to-date. If that helps in this case.

(Once you resolve this issue I'd also recommend switching to the Nu branch described in the above link. It's a much more clean and modern implementation.)

-----

2 points by Pauan 4041 days ago | link

When akkartik said "the Nu branch", he meant this:

https://github.com/Pauan/ar

I too recommend using it rather than vanilla Arc. It has many bug fixes and new features, yet is still backwards compatible.

-----

1 point by geoengineering 4041 days ago | link

will do

-----

2 points by geoengineering 4041 days ago | link

racket -f as.scm works! moving forward ...

-----