Skip to content

Instantly share code, notes, and snippets.

View ilonabudapesti's full-sized avatar
💭
Probot for 1millionwomentotech Learner - Mentor pairing

Ilona Budapesti ilonabudapesti

💭
Probot for 1millionwomentotech Learner - Mentor pairing
View GitHub Profile
Lesson 1 SUMMARY
1. The cursor is moved using either the arrow keys or the hjkl keys.
h (left) j (down) k (up) l (right)
2. To start Vim from the shell prompt type: vim FILENAME <ENTER>
3. To exit Vim type: <ESC> :q! <ENTER> to trash all changes.
OR type: <ESC> :wq <ENTER> to save the changes.
@ilonabudapesti
ilonabudapesti / pali-materials.md
Last active August 29, 2015 14:17
Pali Materials

Questions for Prof. Gombrich

###How to prepare for class?

  • Grammar: Pali Primer
  • Alphabet: images from Google, is there a better place a rigorous explanation or listing?
  • Pali Translation Society dictionary: how to prepare for class? Found the electronic searchable version online() as well as a PDF()
  • Where to go afterwards
  • Is the Vipassana Research Institute's Pali Summer good?
@ilonabudapesti
ilonabudapesti / style.css
Created March 2, 2015 06:29
Remove navigation by adding to child theme's style.css
// Remove navigation
.navbar .nav>li>a {
display: none;
}
@ilonabudapesti
ilonabudapesti / javascript_resources.md
Created August 11, 2014 22:44 — 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
@ilonabudapesti
ilonabudapesti / 0_reuse_code.js
Created August 11, 2014 22:43
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
@ilonabudapesti
ilonabudapesti / Auth.md
Last active August 29, 2015 14:03
Google I/O 2014

#Authentication and third party APIs

Was cancelled. Instead Go language Q&A

http://tour.golang.org/#1

Learning curve is very fast, allegedly one of the easiest languages to learn.

@ilonabudapesti
ilonabudapesti / prezi-bug-report-signup-form.md
Created May 24, 2014 22:07
Prezi Signup Form Bug Report

#Summary

Since the signup form is the first true interaction with the Prezi brand, I believe this small CSS/HTML bug would be worthwhile to fix. It is a low-cost high-reward bugfix.

The signup page for Prezi has some alignment issues when resizing the browser window. The First and Last name fields are misaligned between the full width and mobile width. The 'Signup with LinkedIn' and 'Signup with Facebook' buttons do not resize correctly with their containing box and therefore stick out between full width and mobile width.

#Screen casts

###Scenario 1: on Chrome 34 and Firefox 29 http://youtu.be/JQraY4xBh20

@ilonabudapesti
ilonabudapesti / elegant-boggle.rb
Created February 17, 2014 00:49
Ruby Clinic 2014-02-17
Words = { 'the' => true, 'then' => true, 'their' => true } # our dictionary
Found = {} # words we've found
num = 4 # extendable to any size board
total = num ** 2 # letters on the board
Prev = Array.new(num) { [false] * num } # cell's we've visited
Board = Array.new(num) { [0] * num }
# letters come from the command line 'ARGV'
(0...total).each { |i| Board[i/num][i%num] = ARGV[i]} # num X num array of strings