Skip to content

Instantly share code, notes, and snippets.

View gcardoso89's full-sized avatar

Gonçalo Cardoso gcardoso89

View GitHub Profile
@gcardoso89
gcardoso89 / NextStopAustralia_LandingFest.md
Last active July 17, 2023 01:35
Landing.festival Lisbon 2018 - Next stop: Australia #LandingFest #CallForSpeakers

Talk proposal for Landing Festival 2018 - Lisbon #CallForSpeakers

Next stop: Australia!

TL;DR: Australia is hiring! 5 things you should know before applying.

We got used to see Australia’s biggest cities in the top positions of all quality of life rankings, and this was one of the reasons why I always had the dream to relocate to Australia. Now that I'm living in Sydney I can definitely confirm that’s true. However, getting an opportunity here is not that easy and the dream can easily become a nightmare.

Come on board and join this trip to the other side of the world, from the moment you take a decision to leave until you finally land in Australia. During the journey, I’ll share 5 useful tips I wish I would have known before stepping up and that will hopefully help you during your relocation to Australia.

#!/bin/bash
#
# Bash script for Subversion integration with Slack
#
# 1. Save this file in /usr/bin as slack-svn
# 2. Make it executable:
# chmod +x /usr/bin/slack-svn
# 3. Put this line at the end of file of your_svn_repo/hooks/post-commit:
# slack-svn $REPOS $REV full_path_to_svn_directory
# 4. Edit this file, especially from line 16-20 and 27 (example given is for Redmine)
@gcardoso89
gcardoso89 / javascript_resources.md
Last active August 29, 2015 14:17 — forked from jookyboi/javascript_resources.md
Here are a set of libraries, plugins and guides which may be useful to your Javascript coding.

Libraries

  • jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
  • Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
  • AngularJS - Conventions based MVC framework for HTML5 apps.
  • Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
  • lawnchair - Key/value store adapter for indexdb, localStorage
@gcardoso89
gcardoso89 / 0_reuse_code.js
Last active August 29, 2015 14:17
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console