Skip to content

Commit 1aa65c6

Browse files
authored
Merge pull request #127 from stedman/master
Update Rebecca's pic, update repo name
2 parents bb08128 + b9186d7 commit 1aa65c6

File tree

9 files changed

+16
-15
lines changed

9 files changed

+16
-15
lines changed

CONTRIBUTING-POSTS.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@ On this page:
1212

1313
There are two ways to edit an existing post:
1414

15-
1. Directly edit [post files](https://github.com/austinjavascript/austinjavascript.github.io/tree/master/_posts) online and submit Pull Request.
15+
1. Directly edit [post files](https://github.com/austinjavascript/austinjavascript.com/tree/master/_posts) online and submit Pull Request.
1616
1. Clone the repo locally (see next section), edit/save, git commit/push, and then open a Pull Request.
1717

1818
## Creating
1919

2020
### Setup local environment
2121

22-
1. Fork the [Austin JavaScript GitHub](https://github.com/austinjavascript/austinjavascript.github.io/) repo to your org.
22+
1. Fork the [Austin JavaScript GitHub](https://github.com/austinjavascript/austinjavascript.com/) repo to your org.
2323
1. Clone your repo to a local directory, replacing `{my-username}` below with your username.
2424

2525
```sh
26-
git clone https://github.com/{my-username}/austinjavascript.github.io.git
27-
cd austinjavascript.github.io
26+
git clone https://github.com/{my-username}/austinjavascript.com.git
27+
cd austinjavascript.com
2828
```
2929

3030
1. Set the `upstream` remote repo to "austinjavascript". (If you look at `.git/config`, you should see that your fork is the `origin` remote.)
3131

3232
```sh
33-
git remote add upstream https://github.com/austinjavascript/austinjavascript.github.io.git
33+
git remote add upstream https://github.com/austinjavascript/austinjavascript.com.git
3434
```
3535

3636
2. Create a new git branch for your work.
@@ -101,6 +101,7 @@ Open the [Markdown](https://commonmark.org/) file and notice the file structure.
101101
---
102102
```
103103

104+
<!-- markdownlint-disable md023 -->
104105
#### YAML tips
105106

106107
> NOTE: `speakers` is a YAML array, so each `name` should be preceded by a dash. For example:
@@ -192,4 +193,4 @@ git commit -m "Add new meetup post"
192193
git push origin new-post
193194
```
194195
195-
Open your browser to the [austinjavascript.github.io](https://www.github.com/austinjavascript/austinjavascript.github.io/) repo (or your fork) and open a Pull Request.
196+
Open your browser to the [austinjavascript.com](https://www.github.com/austinjavascript/austinjavascript.com/) repo (or your fork) and open a Pull Request.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ website for the [@AustinJS](https://twitter.com/AustinJS) meetup: http://austinj
22

33
## Adding meetup posts
44

5-
See [Contributing meetup posts](https://github.com/austinjavascript/austinjavascript.github.io/blob/master/CONTRIBUTING-POSTS.md)
5+
See [Contributing meetup posts](https://github.com/austinjavascript/austinjavascript.com/blob/master/CONTRIBUTING-POSTS.md)

_data/people.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
},
2222
"rmurphey": {
2323
"name": "Rebecca Murphey",
24-
"avatar": "https://pbs.twimg.com/profile_images/504070124509229056/6t-MUDgL_400x400.jpeg",
24+
"avatar": "https://pbs.twimg.com/profile_images/1259973234398769154/uNcYGdTr_400x400.jpg",
2525
"email-archived": "rmurphey@gmail.com",
2626
"homepage": null,
2727
"twitter": "rmurphey",

_data/site.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"github": "austinjavascript",
1010
"slack": "austinjavascript"
1111
},
12-
"repo": "https://github.com/austinjavascript/austinjavascript.github.io"
12+
"repo": "https://github.com/austinjavascript/austinjavascript.com"
1313
}

_meetups/2012-02-21-meetup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ when: 2012-02-21T19:30:00-05:00
66
speakers:
77
- name: Rebecca Murphey
88
title: Lead JavaScript Developer at [Toura](http://toura.com/)
9-
avatar: https://pbs.twimg.com/profile_images/504070124509229056/6t-MUDgL_400x400.jpeg
9+
avatar: https://pbs.twimg.com/profile_images/1259973234398769154/uNcYGdTr_400x400.jpg
1010
bio: Rebecca is the lead JavaScript developer at [Toura](http://toura.com) and the lead architect of [Mulberry](http://mulberry.toura.com/), Toura's open-source mobile development framework. She's also a co-founder of the epic [TXJS](http://texasjavascript.com) and the author of [jQuery Fundamentals](http://jqfundamentals.com/). On top of all of that, Rebecca speaks and writes frequently about patterns for organizing large JavaScript applications.
1111
email:
1212
homepage:

_meetups/2013-06-18-meetup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ when: 2013-06-18T19:30:00-05:00
66
speakers:
77
- name: Rebecca Murphey
88
title:
9-
avatar: https://pbs.twimg.com/profile_images/504070124509229056/6t-MUDgL_400x400.jpeg
9+
avatar: https://pbs.twimg.com/profile_images/1259973234398769154/uNcYGdTr_400x400.jpg
1010
bio: Rebecca Murphey is a JavaScript application developer and a frequent speaker on the topic of code organization and best practices at events around the world. She authored the learning site [jQuery Fundamentals](http://jqfundamentals.com/), contributed to the [jQuery Cookbook](http://shop.oreilly.com/product/9780596159788.do) from O’Reilly Media, served as a technical reviewer for David Herman’s [Effective JavaScript](http://effectivejs.com/), and created the [TXJS](http://texasjavascript.com/) conference. She has also created and contributed to several open-source projects. She was instrumental in getting [deferreds and promises](http://rmurphey.com/blog/2010/12/25/deferreds-coming-to-jquery/) introduced to jQuery 1.5; she created the [js-assessment](https://github.com/rmurphey/js-assessment) project, a test-driven tool for assessing a developer’s JavaScript skills; and she contributed key modules to the [Johnny Five](https://github.com/rwldrn/johnny-five) library for using JavaScript to interact with Arduinos.
1111
email:
1212
homepage: http://rmurphey.com

_meetups/2015-01-20-meetup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ when: 2015-01-21T00:30:00.1Z
66
speakers:
77
- name: Rebecca Murphey
88
title: Staff Software Engineer at [Bazaarvoice](http://bazaarvoice.com)
9-
avatar: https://pbs.twimg.com/profile_images/504070124509229056/6t-MUDgL_400x400.jpeg
9+
avatar: https://pbs.twimg.com/profile_images/1259973234398769154/uNcYGdTr_400x400.jpg
1010
bio: |
1111
Rebecca Murphey leads a team that shepherds third-party JavaScript application development across the organization. She is a frequent speaker on the topic of code organization and best practices at various JavaScript conferences, including Front-End Ops Conf, the 2014 jQuery Conference in San Diego, JSConf US 2013, JSConf US 2011, JSConf EU 2010, Full Frontal 2012, Fronteers 2012, and many others.
1212

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "AustinJavaScript.github.io",
3-
"version": "3.0.0-beta.1",
2+
"name": "AustinJavaScript.com",
3+
"version": "3.0.0",
44
"description": "",
55
"scripts": {
66
"build:css": "node-sass _sass/_main.scss _site/assets/css/main.css --output-style compressed",

0 commit comments

Comments
 (0)