-
Notifications
You must be signed in to change notification settings - Fork 31
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
Added myself to members, created members for hire section, added link to... #30
Changes from all commits
ea9f232
59481af
310dab1
9515cf3
9662b45
46a9a54
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// Add yourself to this via a pull-request to the source repo at | ||
// https://github.com/lrug/lrug.org/pulls | ||
// Do keep the list sorted by last name when you do so. | ||
// We're using microformats as the keys here, although we currently only | ||
// render out fn and url. Feel free to add more keys and we'll update the | ||
// renderer. | ||
[ | ||
{ | ||
"fn":"Ronny Ager-Wick", | ||
"url":"http://ronny.ager-wick.com" | ||
}, | ||
{ | ||
"fn":"Manu S Ajith", | ||
"url":"http://codingarena.in/" | ||
}, | ||
{ | ||
"fn":"Ben Aldred", | ||
"url":"http://tinycodefactory.com/" | ||
}, | ||
{ | ||
"fn":"Levent Ali", | ||
"url":"http://www.leventali.com/" | ||
}, | ||
{ | ||
"fn":"Graham Ashton", | ||
"url":"http://effectif.com" | ||
}, | ||
{ | ||
"fn":"Jairo Diaz", | ||
"url":"http://codescrum.com/" | ||
}, | ||
{ | ||
"fn":"Dan Garland", | ||
"url":"http://wegotcoders.com/clients " | ||
}, | ||
{ | ||
"fn":"Carlos Martinez", | ||
"url":"https://resume.creddle.io/resume/br3ed1rqbos" | ||
}, | ||
{ | ||
"fn":"James R. McCarthy", | ||
"url":"http://lety.co/" | ||
}, | ||
{ | ||
"fn":"Andrew McDonough", | ||
"url":"http://andrewmcdonough.com" | ||
}, | ||
{ | ||
"fn":"Julius Pabrinkis", | ||
"url":"https://www.linkedin.com/in/pabrinkis" | ||
}, | ||
{ | ||
"fn":"Alex Pounds", | ||
"url":"http://alexpounds.com/cv" | ||
}, | ||
{ | ||
"fn":"Nigel Runnels-Moss", | ||
"url":"https://www.linkedin.com/in/nigelrm" | ||
}, | ||
{ | ||
"fn":"Peter Saxton", | ||
"url":"https://github.com/CrowdHailer" | ||
}, | ||
{ | ||
"fn":"Tadas Tamosauskas", | ||
"url":"http://codeme.lt" | ||
} | ||
] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: Members for hire | ||
created_at: 2015-02-23 16:19:54 Z | ||
slug: members-for-hire | ||
breadcrumb: Members for hire | ||
created_by: | ||
email: [email protected] | ||
name: James McCarthy | ||
class_name: "" | ||
status: Published | ||
--- | ||
|
||
A list of LRUG members who are available to hire on a contract basis. These individuals usually attend LRUG [meetings](/meetings/), or have attended a few of them, or maybe even just one. Maybe they just signed up to the mailing-list, whatever, it's not an exclusive club or anything. | ||
|
||
<ul> | ||
<% data.hire.each do |member| %> | ||
<li class="vcard"> | ||
<a class="url" href="<%= member.url %>" title="<%= member.url %>"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a reason for setting the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe this is dictated by the directory name, currently the directory is named members-for-hire and that is the url structure. |
||
<span class="fn"><%= member.fn %></span> | ||
</a> | ||
</li> | ||
<% end %> | ||
</ul> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about some way of indicating whether recruiters may contact you?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Surely if the user feels strongly about this they can indicate so on the site they link to. I fail to see a good reason to include more than a link to a site of your choice.
At first I thought that indicating whether you we're presently available was a good idea, but then realised that this info would go stale without constant updating on the users part, which would bring in the requirement for there to be an app or system allowing users to easily keep their status updated.
Given the small numbers involved in this it's not really worthwhile.