Skip to content

Instantly share code, notes, and snippets.

View catherine-jones's full-sized avatar

Cath Jones catherine-jones

View GitHub Profile
@catherine-jones
catherine-jones / user_readme.md
Last active March 25, 2021 21:41
manager readme

How I Like To Work

I like to try and block out time to get specific tasks completed so I can focus. I love working with people over zoom and debating ideas.

The hours I work

I work full time Monday to Friday from Sydney. My standard work hours are 8am AEDT/10am NZDT till 5pm AEDT/7pm NZDT. At some points during the day I attend lectures and tutorials for University these time can be found in my calendar. I am often happy and able to take meetings slightly earlier ir later in the evening if my calander is particularly busy but please ask before you book something in outside of my normal working hours.

I prefer to receive feedback

I prefer to receive feedback via zoom or face to face, and I will often take notes. I like to be asked if now is a good time to give me feedback so that I can ensure I am in the best possible headspace for it. I like specific feedback that is provided promptly.

I will often take time to process feedback and then may come back to you for clarification or with more questio

At birth, an infant is assigned a sex determined by an examination of the genitalia (Markosyan and Ahmed, 2017); however, being assigned the sex of male does not mean that the infant will ever embody masculinities. Masculinities are not determined by sex instead by a complex social system of what it means to be masculine. By examining three sources from popular culture, this paper will show how social structures determine masculinities and not sex. First, we will look at a 17th-century painting by Jean-Baptiste Charpentier to discuss how ideas of masculinity have changed over time, and therefore masculinities are not inherited from sex. To further understand how masculinities are separate from sex masculinities enacted by women through an examination of Quintin Tarantino’s Kill Bill duology are explored. Finally, we look at how masculinities react in society to feminism and femininities in order to understand how they change and how this is separate from biology.

Fashions reveal to us how masculinities are n

<form name="contactform" method="post" action="send_form_email.php">
<div class="form-row">
<div class="col-md-5 form-col-left">
<div class="form-group">
<label class="sr-only" for="first-name" name="first-name">First Name</label>
<input type="text" class="form-control" id="first-name" placeholder="First name">
</div>
<div class="form-group">
<label class="sr-only" for="first-name">Last Name</label>
<input type="text" class="form-control" id="last-name" placeholder="Last name">
@catherine-jones
catherine-jones / send_form_email.php
Created September 25, 2017 05:32
a terrible attempt at php
<?php
if(isset($_POST['email'])) {
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "developer@ymessy.com.au";
$email_subject = "Website Contact Form";
function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
@catherine-jones
catherine-jones / elixirGirlsMelbourneSaturdaySchedule.md
Last active September 12, 2017 10:03
elixir Girls Melbourne Saturday Schedule

10 am House Keeping and agenda for day 2

10.10 start on exercises - split out into two groups those with programming experiance and those without

12.30 lunch

12.50 Xplor sponsor talk

1 pm lightning talk

@catherine-jones
catherine-jones / elixirGirlsMelbourneFridaySchedule.md
Last active September 12, 2017 09:44
Elixir Girls Melbourne 2017 Friday Schedule

5.45pm doors open and registrations start

6 pm House keeping and introductions

6.15 start on installation guides

7pm Dinner

7.30 lightning talk

@catherine-jones
catherine-jones / elixirGirlsMelbourne2017Schedule.md
Last active September 6, 2017 01:16
Elixir Girls Melbourne 2017 Schedule 15th and 16th of September

use the script tag inside the head

<script src ="trains.js"></script>

.. to go up a file

3.4 Down to the Files

2.1 Variable Discovery

variables store and manage data

to declare a variable

var variableName = 3

naming variables no spaces, no digits at the front, camelCase is good

@catherine-jones
catherine-jones / javascript-road-trip-part1.markdown
Last active August 29, 2015 09:29
javaScript Road trip part 1

1.1 Booleans, The True Path

Operators

  • Automatical recgonises number
  • common operators addition +, subtraction -, multiplication *, division /, modulus % (returns the remainder)
  • standard order of operations as in maths PEMDAS, Parenthases, Expression, multiplication, division, adition, subtraction
  • recognises negative numbers as well

Comparetors

  • less than <