Skip to content

Instantly share code, notes, and snippets.

View alyssamichelle's full-sized avatar
🖤
It's going to be OK

Alyssa Michelle Nicoll alyssamichelle

🖤
It's going to be OK
View GitHub Profile
@tatianamac
tatianamac / tatiana-mac-speaker-rider.md
Last active March 24, 2024 12:22
Tatiana Mac's Speaker Rider

Speaker Rider

by Tatiana Mac

Last updated 14 April 2021

What is a speaker rider?

As speaking comes with immense privilege, I have crafted a speaker rider to set expectations and boundaries around my engagement. I am grateful to all the conference organisers who have brilliantly hosted me. I would love to continue to exercise this privilege to speak at conferences, and use this privilege to make the landscape more accessible and beneficial to tech's most historically excluded and marginalised communities.

Considerations

😫 I provide a lot of explanations for those of you who never had to consider these things. Most thoughtful conferences I've attended check most of these boxes intrinsically, particularly when conference runners are experienced speakers. They get it.

@kapunahelewong
kapunahelewong / angular-docs.md
Last active July 20, 2021 15:52
Contributing to the Angular docs

Make sure you've read the Angular.io CONTRIBUTING.md before starting out.

Angular.io local setup

Follow these steps when you are setting up the repo locally for the first time and would like to view your changes in the browser as you edit.

  1. Fork angular/angular.

In terminal:

@pierrejoubert73
pierrejoubert73 / markdown-details-collapsible.md
Last active July 18, 2024 21:41
How to add a collapsible section in markdown.

How to add a collapsible section in markdown

1. Example

Click me

Heading

  1. Foo
  2. Bar
    • Baz
  • Qux
@RickMcAdams
RickMcAdams / ng-conf2017
Last active May 22, 2017 17:11
ng-conf (the softer side)
April 25th, 2017
I recently attended ng-conf in Salt Lake City which is a great conference for Angular developers filled with lots of talented developers and many great talks. In the coming weeks there will be plenty of discussion around the interesting technical learnings from ng-conf such as ngUpgrade (which we are heavily in the middle of with EASE Web V2), the many benefits of moving to Angular, performance optimizations and a host of other topics. Even amongst all the great talks on Wednesday and Friday what really stood out to me were two sessions on Thursday and how they related together and sparked some inspiration for me.
The first session was called "The day I met Steve" given by Alyssa Nicoll. I'll be honest, I am always looking for sessions that are a little out of the box from normal sessions and touch on the softer, more human side of development so the summary of this talk really intrigued me. It definitely did not disappoint. Alyssa's story about "Steve" rang so true in things I have see
@EpokK
EpokK / ngEnter.js
Last active January 7, 2022 13:57
ngEnter directive if you can use submit form(https://twitter.com/ririlepanda)
app.directive('ngEnter', function() {
return function(scope, element, attrs) {
element.bind("keydown keypress", function(event) {
if(event.which === 13) {
scope.$apply(function(){
scope.$eval(attrs.ngEnter);
});
event.preventDefault();
}