-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to become a member ? #1
Comments
Interested :-) |
Me too. |
I'm also very interested. |
I'm interested! |
Please inv, I'm very interested in Obj-C. |
Let's #MakeObjCGreatAgain! |
What a great effort. Thought about similar things. Please invite me. |
Super interested! |
What a fantastic project! I would like to be a part of it! With the emergence of Swift, people are acting weirdly and started to treat Objective-C as a soon-to-be-dead language or whatsoever, which is a complete nonsense!
Indeed sir, indeed. *) I know that they are mere re-implementation of Foundation and Cocoa. |
@ardiefox Lets make the best out of it. My feeling is that Cocotron and GNUStep are somewhat content with catching up with whatever Apple is doing and not doing anything more, but mulle-objc is a chance to shape the language ourselves. |
@ardiefox, @mulle-nat I've been looking forward to the day when I would be able to do my web work with objective-c and have it deployed on Linux as well as OS X. I took care of the first part (through criollo and its preceding project) and I can't wait to be able to make the first one a reality as well. I've also looked into Cocotron and GNUStep (and event went as far as trying Darling). This looks to me like the way forward.
#MakeObjCGreatAgain |
Oh that is interesting. Would love to be part of it. |
Interested in joining as a member. |
Would love to dive into Clang :) |
I don't see the slack invite. My email is [email protected]
|
Checklist :) Are you a member ? You must have gotten two invites via GitHub. Answer to both is NO, so no slack invite yet. |
vtsingaras commented 6 days ago |
I sent you an invite via GitHub, you should have gotten a mail or a notification. On the top right of your GitHub screen there is a bell-shaped icon. When you click on it, the invitation should be there amongst possibly other messages, I would assume. I can't make you a member myself. You have to accept the invite. I canceled the invite and sent you a new one, just to make sure. It said:
|
Strange, I searched my emails for emails originated from GitHub and didn't have any fo mulle-objc. Anyway, now I saw the invite and have accepted it, thanks! |
Now you just have to become public :) HOWTO: become a public member |
Done :)
…On Fri, Dec 2, 2016 at 12:03 PM, Nat! ***@***.***> wrote:
Now you just have to become public :) HOWTO: become a public member
<https://help.github.com/articles/publicizing-or-hiding-organization-membership/>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHUu19Ec-kXHngVQpkV-JZU8UyAJL9rhks5rD-zxgaJpZM4KrZZT>
.
|
Please add me as well. |
ready to explore |
I'd love to join in the fun :) |
I'd be very interested. |
Please add me too! |
I am interested in becoming a member, and in writing a Python interpreter in Mulle-Objc. |
I have the feeling, that the invites are sometimes not properly sent by github. So in addition to the heart, i will reply here and CC the outstanding requests in this thread like so:
|
It was quite difficult to join the organizatoin. The Github instructions were terrile. I thought I had to go to my home page to join this oranization. |
Sure but a separate issue would be good. I tried to move it, but failed somewhat :) |
I'd like to get the invite as well if possible. That's why I also commented here :-) |
@alepi if you want an invite for Slack send me an email to [email protected] |
Hello, could I join your project? I am currently working on a SAS compiler and am looking at Objective-C as an upgrade to the C code I am working with, and am excited to see where mulle-objc will go. |
Sure ;) What's SAS ? |
Thank you for the invitation! SAS is a programming language used for statistics, in a similar vein as the R language. |
OK, I am amazed, and delighted to find this! I thought I was the last person left on the planet who was using Obj-C outside of an Apple environment. I wrote my own basic set of objects many years ago, as I ended up in a job where I needed to deploy on NT4 using whatever language I liked, but I wanted to develop on BSD. So I hacked together an object/string/array/dictionary and uses gcc on both platforms, and have never looked back. That was 1999, and I am still running it and it keeps me in a job ;) These days its using clang and the libobjc2 runtime. But I am now excited by the idea of porting to this runtime instead. Is there a mailing list somewhere, or some kind of community ? I dont have time to experiment today, (I only found this an hour ago), but hope to try some things out over the next few days if I can. This looks brilliant! |
Cool! I guess yours it not open source ? I didn't see anything on your account. Other Objective-C libraries are always interesting to look at. The community is here basically. There is no mailing list, but there is a "Slack", which is very quiet. In terms of getting help or feedback, you can try various channels, like github issues on any related project, Slack posts, emails to me. Just in case things don't work out, negative feedback would also be appreciated. Maybe even more appreciated, than positive feedback, because I already know that it's good 😆. |
Oh, it's open source, and you can get it here if you want to take a look... git://toybox.twisted.org.uk/pfkit Am slightly cringing at the idea of someone seeing that code however :-) [ I originally wrote it back in 1999, so it was under RCS, and later SVN. I did give it out on mailing lists a couple of times. But as its pretty specialised to me (and even more so 23 years later) then I never really made a thing of it. I did make a git repository though, as it makes it easier for work, and that's what the link is above. ] So, yes, I shall have a go with your runtime as soon as I get some spare time, and shall give you feedback! Is it a drop-in replacement for libobjc2, or will I need to tweak some calls ? Am assuming the latter, plus I also note you seem to have your own fork of clang ? Do I need to use that ? Anyway, thanks for the fast reply! |
It's too late now 😃... but it looks good to me.
It's way different. But there is a compatibility layer, which could be helpful here, that adapts a lot of the apple runtime functions like
I think yes, otherwise it's going to be too much effort. Looking at your code, there are three ways to do it I think:
|
Am glad it didn't horrify you too much ;) Ok, I will start by downloading and building your clang fork then. I found your compatibility layer (option 2) and thought that would be a good start too. Ideally I would ut n the effort to go fully option 1 though. Option 3 is interesting. The problem might be the 300,000+ lines of commnercial code which sits on top of all of this, and which might have dependencies on odd behaviours of my PFObject that I am unaware of (I wrote all of that too, its been a long 23 years). But I shall start with the compiler and see what I can get running... thanks for the tips! |
Yeah, good luck! I think in terms of highlevel runtime differences, there are two things to keep in mind.
Hit me up anytime something comes up. |
@minusbat So how did it go ? I assume there were no problems, since I didn't hear anything 😄 |
Hello, if you are still accepting members, could I join the group? |
Sure thing. An invitation should be at your doorstep. |
This project is amazing, wow! You're a wizard, mulle. Please send me an invite to join :) As an aside: Would you consider bridging the chat to Discord? |
Thanks for the kind words. An invite has been sent. I would consider bridging the Slack to anything, but there is just not enough traffic there to make it worthwhile the effort. |
Getting a Discord server up would lower the bar for initiating contact, potentially on-boarding fence-sitters. And can I just say, this project needs more attention. Also, I've done the public member dance thingy. waits impatiently |
The Slack invite has been sent a few hours ago, since you are waiting impatiently, you may want to check your SPAM folder 😄 |
@mulle-nat This project is very interesting, and I would love to join (if this project hasn't yet died) |
The project is alive and well and has no signs of slowing down 😄 |
@cleanbaja If you email me your email address. I can send you a slack invite. |
Ummmm |
Heyooo o/ |
I would like to join the project too :) |
1 similar comment
I would like to join the project too :) |
Hey would love to join! Stoked to learn about this project :D |
Allo, |
hello, |
@mejbass Thx for becoming a public member. If you want an invite for Slack send me an email to [email protected] |
Comment in this thread and you will be sent an invite to the mulle-objc organization. By default github will make you a private member. But only public members are useful to the project and will get an invite to the mulle-objc slack.
How to be come a public member
To become a public member, after becoming a regular member, visit https://github.com/orgs/mulle-objc/people. Look for your name in the first column, and in the third column change your security setting from
private
topublic
. Done!If your email-address is not in your public github profile, send it by email to [email protected]. Your email address is needed for the Slack invite.
And here is a "how to" with more detail:
An email with the invitation will be sent by github. In the email their will be a link. Be sure to be logged into github before clicking the link. Then click the link. You should see something like this:
Markers
The membership processing status can be seen from your posts markers:
If you expect an invite for membership or slack access, but haven't gotten one yet: just email me or post again in this thread.
The text was updated successfully, but these errors were encountered: