Code Monkey home page Code Monkey logo

Comments (11)

weaverbel avatar weaverbel commented on August 17, 2024 1

I have done a blog post that links to all 8 nominees so far to make it easier for you http://www.datacarpentry.org/blog/meet-candidates/ @k8hertweck @kcranston

from 2017merger.

maneesha avatar maneesha commented on August 17, 2024 1

I want to document this whole process for next time. Some notes for reference for here:

  1. We should have had someone specifically designated to check for submitted nominations and post them on the blog until UTC+12 on the last day of nominations (the last time zone in the world that it is still that day)

  2. We had a lot of trouble with the query used to generate the member list. This is the query we used

from 2017merger.

maneesha avatar maneesha commented on August 17, 2024

Thanks for summarizing our next steps, @kcranston

Question for @k8hertweck -- do the nominees know about this suggestion for allocating votes to terms? I think everyone may have thought they were running for a one year term.

from 2017merger.

k8hertweck avatar k8hertweck commented on August 17, 2024

@maneesha No, we haven't specified how we'd handle the peculiarities of this first round of voting until it came time to put the ballot together. I had assumed all candidates would expect a two year term, as that is what is described in the RFC, but I see that the announcement blog post wasn't explicit about the maximum term. This should be explained when emailing candidates as well. Who wants to handle this?

from 2017merger.

kcranston avatar kcranston commented on August 17, 2024

I've volunteered to send the email to the candidates with this info.

from 2017merger.

kcranston avatar kcranston commented on August 17, 2024

Just for my own notes:

00:00 Dec 4 UTC+12 = 07:00 Sun Dec 3 EST
11:59 Dec 8 UTC-12 = 06:59 Sat Dec 9 EST

Election set up and notices will go out starting at 00:00 UTC+12 Dec 4.

from 2017merger.

weaverbel avatar weaverbel commented on August 17, 2024

@kcranston Do we have a date when results will be announced? Asking for newsletter.

from 2017merger.

kcranston avatar kcranston commented on August 17, 2024

from 2017merger.

weaverbel avatar weaverbel commented on August 17, 2024

Thanks @kcranston !

from 2017merger.

maneesha avatar maneesha commented on August 17, 2024
select contact from
(
select person.personal || ' ' || person.family || ' ' || person.email as contact

from workshops_person as person
join workshops_event as event
join workshops_task as task
join workshops_role as role
join workshops_award as award
join workshops_badge as badge
join workshops_event_tags as event_tags
join workshops_tag as tag

on person.id = task.person_id
and event.id = task.event_id
and role.id = task.role_id
and award.person_id = person.id
and award.badge_id = badge.id
and event_tags.event_id = event.id
and event_tags.tag_id = tag.id

where role.name = 'instructor'
and badge.name in ('swc-instructor','dc-instructor', 'trainer')
and (tag.name = 'LC' or tag.name = 'DC' or tag.name = 'SWC' or tag.name = 'TTT')
and event.start >= '2015-11-30'
and event.end <= '2017-12-01'

group by person.id
having count(*) > 1

union

select person.personal || ' ' || person.family || ' ' || person.email || ' ' as contact
from workshops_person as person
join workshops_award as award
join workshops_badge as badge

on award.person_id = person.id
and award.badge_id = badge.id

where badge.name = 'member'

);

from 2017merger.

maneesha avatar maneesha commented on August 17, 2024
  1. We need to update this page (https://software-carpentry.org/scf/members/). This has not been done yet. Also need to document how this page is built.

from 2017merger.

Related Issues (12)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.