Re: [racket-users] Open source projects

2017-10-31 Thread David Storrs
Cool. Thanks, Stephen. On Tue, Oct 31, 2017 at 9:12 PM, Stephen De Gabrielle wrote: > I've added the sha256 suggestion to > https://github.com/racket/racket/wiki/Intro-Projects > > s. > > On Tue, Oct 31, 2017 at 3:50 PM, David Storrs > wrote: >>

Re: [racket-users] Open source projects

2017-10-31 Thread Stephen De Gabrielle
I've added the sha256 suggestion to https://github.com/racket/racket/wiki/Intro-Projects s. On Tue, Oct 31, 2017 at 3:50 PM, David Storrs wrote: > One other relatively easy project would be to add sha256 to the > openssl library.

Re: [racket-users] Open source projects

2017-10-31 Thread Neil Van Dyke
I consider myself pretty community-oriented, but, if I'm trying some new platform, and the recommended practice when I am confused by the documentation is to go file documentation bug reports, then I'm unlikely to follow that advice. I know that posting a bug report is an interruption to any

Re: [racket-users] Open source projects

2017-10-31 Thread Stephen De Gabrielle
Double apologies Hendrik - I didn’t notice when my phone incorrectly ‘corrected’ your name. Kind regards Stephen On Tue, 31 Oct 2017 at 20:29, Stephen De Gabrielle wrote: > Hi Hendrix, > > I hope you don’t mind, but I was so moved by your eloquent plea I quoted > it

Re: [racket-users] Open source projects

2017-10-31 Thread Stephen De Gabrielle
Hi Hendrix, I hope you don’t mind, but I was so moved by your eloquent plea I quoted it (without attribution) on the page https://github.com/racket/racket/wiki/Contributing-to-Racket Kind regards Stephen PS the github wiki is really easy to use - anyone could contribute - I did it on my phone

Re: [racket-users] Open source projects

2017-10-31 Thread Stephen De Gabrielle
Add it to the wiki? https://github.com/racket/racket/wiki On Tue, 31 Oct 2017 at 15:50, David Storrs wrote: > One other relatively easy project would be to add sha256 to the > openssl library. https://docs.racket-lang.org/openssl/index.html > > There is a version of

Re: [racket-users] Open source projects

2017-10-31 Thread David Storrs
On Tue, Oct 31, 2017 at 11:50 AM, David Storrs wrote: > One other relatively easy project would be to add sha256 to the > openssl library. https://docs.racket-lang.org/openssl/index.html > > There is a version of sha256 implemented in >

Re: [racket-users] Open source projects

2017-10-31 Thread David Storrs
One other relatively easy project would be to add sha256 to the openssl library. https://docs.racket-lang.org/openssl/index.html There is a version of sha256 implemented in https://github.com/RayRacine/grommet but it's for Typed Racket only. I know that it's possible to use TR from untyped code,

Re: [racket-users] Open source projects

2017-10-31 Thread Hendrik Boom
On Sun, Oct 29, 2017 at 06:42:39PM -0400, Neil Van Dyke wrote: this above all if you want to contribute:: > > While you're first learning Racket by using it, it might also be helpful to > others if you kept written notes on things that you found confusing.  > Eventually, this list might help

Re: [racket-users] Open source projects

2017-10-29 Thread Neil Van Dyke
When you're first learning Racket, wanting to contribute to the community is very admirable, but I think your *first* priority should be to get experience with Racket.  I think this prioritization will tend to make you more useful to everyone, sooner. I suggest getting experience with Racket

Re: [racket-users] Open source projects

2017-10-29 Thread 'Royall Spence' via Racket Users
The docs are located in the main repository here: https://github.com/racket/racket/tree/master/pkgs/racket-doc/scribblingsIt's not always easy to find the page you're looking for via the source tree, so I recommend using a string search on Github to find the sections of documentation you'd like

Re: [racket-users] Open source projects

2017-10-29 Thread Guthrie Price
It was recommended to me by a friend that while I am still learning Racket perhaps I can contribute to any documentation issues. This sounds like a good idea to me, but I am not sure how I can get started. Any help getting the ball rolling would be greatly appreciated. Thank you, Guthrie

Re: [racket-users] Open source projects

2017-10-24 Thread Stephen De Gabrielle
I think the ‘doable exercise for a budding Racket programmer‘ was scoped to be an achievable, but important piece that someone else could use to make a DrRacket plugin.(or more likely change DrRacket core) Kind regards, Stephen On Tue, 24 Oct 2017 at 00:52, Guthrie Price

Re: [racket-users] Open source projects

2017-10-23 Thread Guthrie Price
Thank you all so much for your comments (the resulting discussion was also entertaining and unexpected). If I were to implement path auto-completion, would it be useful if it wasn’t integrated into DrRacket? I am not precisely sure what I would be adding this functionality to if not DrRacket. On

Filename completion (was: Re: [racket-users] Open source projects)

2017-10-22 Thread 'John Clements' via Racket Users
> On Oct 22, 2017, at 16:05, Neil Van Dyke wrote: > > I could be missing something, but I think a filename completion procedure > (not the DrRacket integration part) might be a doable exercise for a budding > Racket programmer, so long as they already have a basic

Re: [racket-users] Open source projects

2017-10-22 Thread Neil Van Dyke
I could be missing something, but I think a filename completion procedure (not the DrRacket integration part) might be a doable exercise for a budding Racket programmer, so long as they already have a basic familiarity with using the filesystem and shell as a normal user. Point them to the

Re: [racket-users] Open source projects

2017-10-22 Thread 'John Clements' via Racket Users
+1. The specific use case for me is super-scripty things like this: (csv->list “~/clements/datasets/poly-dashboards/2178-data-schedule.csv’) … to load a file from disk. One could make the claim that I should choose paths and filenames that I always remember, but in fact, shell-based completion

Re: [racket-users] Open source projects

2017-10-22 Thread Stephen De Gabrielle
> > auto-completion of filenames in DrRacket, probably using a pop-up. That > is: I type a string containing a path fragment, and then I hit, say, C-c > C-r or some other unused combination (ha!), and I get a dialog that will > allow me with a small number of keystrokes to auto-complete to the

Re: [racket-users] Open source projects

2017-10-20 Thread Robby Findler
Do you want drr to open the files? If so, is cmd-shift-O followed by typing an open double quote close enough? Robby On Fri, Oct 20, 2017 at 11:42 AM 'John Clements' via Racket Users < racket-users@googlegroups.com> wrote: > > > On Oct 20, 2017, at 8:06 AM, Vincent St-Amour < >

Re: [racket-users] Open source projects

2017-10-20 Thread Vincent St-Amour
I think there's value to having a general projects list, beyond the office hours one. The older list was an attempt of that, which failed at that purpose by becoming more of a "brain dump" area, and falling into disrepair. I think that for such a list to succeed, it would need to be actively

Re: [racket-users] Open source projects

2017-10-20 Thread 'John Clements' via Racket Users
> On Oct 20, 2017, at 8:06 AM, Vincent St-Amour > wrote: > > That page is pretty out of date. > > This list is more focused on contributing to Racket itself, but is more > up to date. It was compiled for the "office hours" portion of the last > RacketCon, ~2

Re: [racket-users] Open source projects

2017-10-19 Thread Guthrie Price
I am currently a senior in college. I have done some research in machine learning and computer security, but I wouldn't say I am particularly proficient at either. I have interests in different areas of computing including machine learning, computer security, graphics, and numerical analysis.

Re: [racket-users] Open source projects

2017-10-19 Thread James
> > I am very new to the community and am looking for an open source project to > work on. I was wondering if anybody knows of some good resources for finding > open source projects or any recommendations. I appreciate any help I can get. Do you have any particular areas of skill like

[racket-users] Open source projects

2017-10-19 Thread Guthrie Price
Hello all, I am very new to the community and am looking for an open source project to work on. I was wondering if anybody knows of some good resources for finding open source projects or any recommendations. I appreciate any help I can get. Thank you for your time, Gus -- You received this