├── .gitignore ├── .ruby-version ├── CNAME ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _includes ├── footer.html ├── ga.html ├── head.html ├── header.html ├── home │ ├── about.html │ ├── contact.html │ ├── intro.html │ ├── speakers.html │ ├── sponsors.html │ └── twitter_widgets.html ├── js.html ├── nav.html ├── pages │ ├── call_for_proposal_index.html │ ├── code_of_condect_index.html │ ├── community_in_india_index.html │ ├── faq_index.html │ ├── individuals_index.html │ ├── previous_conforence_index.html │ ├── proposal_advise_index.html │ ├── proposal_resorce_index.html │ ├── rci_program_index.html │ ├── registration_information_index.html │ ├── ruby_hero_award_index.html │ ├── scholarship_index.html │ ├── sim_card_index.html │ ├── staff_information_index.html │ ├── talk_schedule_index.html │ ├── tourist_visa_index.html │ ├── travelling_to_kochi_index.html │ ├── venue_index.html │ └── video_image_index.html └── talk-schedule │ └── talks │ ├── aaron-cruz.html │ ├── prathamesh-sonpatki.html │ └── shobhit-srivastava.html ├── _layouts ├── default.html ├── page.html └── post.html ├── about.md ├── apple-touch-icon.png ├── assets ├── css │ ├── main.css │ ├── override-bootstrap-responsive.css │ └── style-guide.css ├── images │ ├── a-register.png │ ├── badges │ │ ├── rci16-facebook-attending.jpg │ │ ├── rci16-facebook-speaking.jpg │ │ ├── rci16-linkedin-article-attending.jpg │ │ ├── rci16-linkedin-attending.jpg │ │ ├── rci16-linkedin-volunteering.jpg │ │ ├── rci16-twitter-attending.jpg │ │ └── rci16-twitter-speaking.jpg │ ├── bg.jpg │ ├── emerging-logo.png │ ├── individuals │ │ ├── Franklin.jpg │ │ ├── Keerthana.jpg │ │ ├── Raghav.jpg │ │ ├── Varunram.jpg │ │ ├── abdul.jpeg │ │ ├── aditya.jpg │ │ ├── akhil.jpg │ │ ├── aniket.jpg │ │ ├── arushi.jpg │ │ ├── avinash.jpg │ │ ├── avinasha.jpg │ │ ├── bilal.jpg │ │ ├── janmejay.jpg │ │ ├── mohnish.jpg │ │ ├── neethu.jpg │ │ ├── nidhi.jpg │ │ ├── nishant.jpg │ │ ├── prathamesh.jpg │ │ ├── pritesh.jpeg │ │ ├── santosh.jpeg │ │ ├── shaunak.jpeg │ │ ├── shobhit.jpeg │ │ ├── siddharth.jpg │ │ ├── swanand.jpg │ │ ├── taneea.jpg │ │ ├── tushar.jpg │ │ └── vrinda.jpg │ ├── logo.png │ ├── speakers │ │ ├── aaron-cruz.jpg │ │ ├── abhinandan.jpg │ │ ├── aboobacker.jpg │ │ ├── adam_hawkins.jpg │ │ ├── anagha.jpg │ │ ├── anil.jpg │ │ ├── anuja.png │ │ ├── aram.jpg │ │ ├── avdi-grimm.jpg │ │ ├── balakumar.jpg │ │ ├── bradurani.jpg │ │ ├── bragabrags.png │ │ ├── chirag.jpg │ │ ├── elle-meredith.jpg │ │ ├── gautam-rege.jpeg │ │ ├── headius.jpg │ │ ├── holman.png │ │ ├── jasonswett.jpg │ │ ├── jerry.jpg │ │ ├── jon.png │ │ ├── kei.jpg │ │ ├── kiran.jpg │ │ ├── kytrinyx.jpg │ │ ├── lrz.jpg │ │ ├── manohar.jpg │ │ ├── matz.jpg │ │ ├── muditm.png │ │ ├── paul.jpg │ │ ├── prasun.jpg │ │ ├── prathmesh.jpeg │ │ ├── richard.png │ │ ├── rishi-jain.jpg │ │ ├── rtdp.jpg │ │ ├── sameer.jpg │ │ ├── sarahmei.jpg │ │ ├── sean.jpg │ │ ├── sethupati.jpg │ │ ├── shanko.png │ │ ├── shaunak.jpg │ │ ├── shishir.jpg │ │ ├── shobhit.png │ │ ├── shweta.png │ │ ├── sidu.jpg │ │ ├── sumit-das.jpg │ │ ├── sumit.jpg │ │ ├── swanand.jpg │ │ ├── swanand.png │ │ ├── tony.jpg │ │ ├── torstenruger.jpg │ │ ├── vagmi.jpg │ │ ├── victor.jpg │ │ └── zzak.jpg │ ├── sponsors │ │ ├── amura.png │ │ ├── bigbinary.png │ │ ├── chillr.png │ │ ├── codemancers.png │ │ ├── coupa.jpg │ │ ├── coupa.png │ │ ├── cybrilla.png │ │ ├── digitalocean.png │ │ ├── gojek.png │ │ ├── jetbrains.png │ │ ├── josh.png │ │ ├── limo-logo.png │ │ ├── limo.png │ │ ├── maropost.svg │ │ ├── mavenhive.jpg │ │ ├── mavenhive.png │ │ ├── mavenhive.svg │ │ ├── pepipost.png │ │ ├── qwinix.png │ │ ├── red-panthers.png │ │ ├── ruby-garage.png │ │ └── scripbox.png │ ├── staff │ │ ├── ajey-gore.jpg │ │ ├── anuja-joshi.jpeg │ │ ├── gautam-rege.jpeg │ │ ├── niranjan-paranjape.jpg │ │ ├── prathamesh-sonpatki.jpg │ │ ├── prithvi.jpg │ │ ├── satish-talim.jpg │ │ ├── shweta-kale.jpg │ │ └── sidu-ponnappa.jpg │ └── supporter │ │ └── rubygarage.png └── js │ └── main.js ├── call-for-proposal └── index.html ├── code-of-conduct └── index.html ├── community-in-india └── index.html ├── faq └── index.html ├── favicon.ico ├── feed.xml ├── google0d15c9ef2069136d.html ├── index.html ├── individuals └── index.html ├── pdf ├── RCI17SponsorshipProspectus.pdf ├── RCI18SponsorshipProspectus.pdf └── RCI19SponsorshipProspectus.pdf ├── previous-conference └── index.html ├── program └── index.html ├── rci-program └── index.html ├── ruby-hero-award └── index.html ├── scholarship └── index.html ├── staff-information └── index.html ├── talk-schedule └── index.html ├── travelling-to-kochi └── index.html └── venue └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .DS_Store 4 | bin/ 5 | .idea/* 6 | Thumbs.db 7 | _site/ 8 | .bundle/ 9 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4.1 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | 2019.rubyconfindia.org -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | ruby '2.4.1' 4 | 5 | gem "github-pages" 6 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | activesupport (5.2.4.1) 5 | concurrent-ruby (~> 1.0, >= 1.0.2) 6 | i18n (>= 0.7, < 2) 7 | minitest (~> 5.1) 8 | tzinfo (~> 1.1) 9 | addressable (2.7.0) 10 | public_suffix (>= 2.0.2, < 5.0) 11 | coffee-script (2.4.1) 12 | coffee-script-source 13 | execjs 14 | coffee-script-source (1.11.1) 15 | colorator (1.1.0) 16 | commonmarker (0.17.13) 17 | ruby-enum (~> 0.5) 18 | concurrent-ruby (1.1.5) 19 | dnsruby (1.61.3) 20 | addressable (~> 2.5) 21 | em-websocket (0.5.1) 22 | eventmachine (>= 0.12.9) 23 | http_parser.rb (~> 0.6.0) 24 | ethon (0.12.0) 25 | ffi (>= 1.3.0) 26 | eventmachine (1.2.7) 27 | execjs (2.7.0) 28 | faraday (1.0.0) 29 | multipart-post (>= 1.2, < 3) 30 | ffi (1.12.1) 31 | forwardable-extended (2.6.0) 32 | gemoji (3.0.1) 33 | github-pages (204) 34 | github-pages-health-check (= 1.16.1) 35 | jekyll (= 3.8.5) 36 | jekyll-avatar (= 0.7.0) 37 | jekyll-coffeescript (= 1.1.1) 38 | jekyll-commonmark-ghpages (= 0.1.6) 39 | jekyll-default-layout (= 0.1.4) 40 | jekyll-feed (= 0.13.0) 41 | jekyll-gist (= 1.5.0) 42 | jekyll-github-metadata (= 2.13.0) 43 | jekyll-mentions (= 1.5.1) 44 | jekyll-optional-front-matter (= 0.3.2) 45 | jekyll-paginate (= 1.1.0) 46 | jekyll-readme-index (= 0.3.0) 47 | jekyll-redirect-from (= 0.15.0) 48 | jekyll-relative-links (= 0.6.1) 49 | jekyll-remote-theme (= 0.4.1) 50 | jekyll-sass-converter (= 1.5.2) 51 | jekyll-seo-tag (= 2.6.1) 52 | jekyll-sitemap (= 1.4.0) 53 | jekyll-swiss (= 1.0.0) 54 | jekyll-theme-architect (= 0.1.1) 55 | jekyll-theme-cayman (= 0.1.1) 56 | jekyll-theme-dinky (= 0.1.1) 57 | jekyll-theme-hacker (= 0.1.1) 58 | jekyll-theme-leap-day (= 0.1.1) 59 | jekyll-theme-merlot (= 0.1.1) 60 | jekyll-theme-midnight (= 0.1.1) 61 | jekyll-theme-minimal (= 0.1.1) 62 | jekyll-theme-modernist (= 0.1.1) 63 | jekyll-theme-primer (= 0.5.4) 64 | jekyll-theme-slate (= 0.1.1) 65 | jekyll-theme-tactile (= 0.1.1) 66 | jekyll-theme-time-machine (= 0.1.1) 67 | jekyll-titles-from-headings (= 0.5.3) 68 | jemoji (= 0.11.1) 69 | kramdown (= 1.17.0) 70 | liquid (= 4.0.3) 71 | mercenary (~> 0.3) 72 | minima (= 2.5.1) 73 | nokogiri (>= 1.10.4, < 2.0) 74 | rouge (= 3.13.0) 75 | terminal-table (~> 1.4) 76 | github-pages-health-check (1.16.1) 77 | addressable (~> 2.3) 78 | dnsruby (~> 1.60) 79 | octokit (~> 4.0) 80 | public_suffix (~> 3.0) 81 | typhoeus (~> 1.3) 82 | html-pipeline (2.12.3) 83 | activesupport (>= 2) 84 | nokogiri (>= 1.4) 85 | http_parser.rb (0.6.0) 86 | i18n (0.9.5) 87 | concurrent-ruby (~> 1.0) 88 | jekyll (3.8.5) 89 | addressable (~> 2.4) 90 | colorator (~> 1.0) 91 | em-websocket (~> 0.5) 92 | i18n (~> 0.7) 93 | jekyll-sass-converter (~> 1.0) 94 | jekyll-watch (~> 2.0) 95 | kramdown (~> 1.14) 96 | liquid (~> 4.0) 97 | mercenary (~> 0.3.3) 98 | pathutil (~> 0.9) 99 | rouge (>= 1.7, < 4) 100 | safe_yaml (~> 1.0) 101 | jekyll-avatar (0.7.0) 102 | jekyll (>= 3.0, < 5.0) 103 | jekyll-coffeescript (1.1.1) 104 | coffee-script (~> 2.2) 105 | coffee-script-source (~> 1.11.1) 106 | jekyll-commonmark (1.3.1) 107 | commonmarker (~> 0.14) 108 | jekyll (>= 3.7, < 5.0) 109 | jekyll-commonmark-ghpages (0.1.6) 110 | commonmarker (~> 0.17.6) 111 | jekyll-commonmark (~> 1.2) 112 | rouge (>= 2.0, < 4.0) 113 | jekyll-default-layout (0.1.4) 114 | jekyll (~> 3.0) 115 | jekyll-feed (0.13.0) 116 | jekyll (>= 3.7, < 5.0) 117 | jekyll-gist (1.5.0) 118 | octokit (~> 4.2) 119 | jekyll-github-metadata (2.13.0) 120 | jekyll (>= 3.4, < 5.0) 121 | octokit (~> 4.0, != 4.4.0) 122 | jekyll-mentions (1.5.1) 123 | html-pipeline (~> 2.3) 124 | jekyll (>= 3.7, < 5.0) 125 | jekyll-optional-front-matter (0.3.2) 126 | jekyll (>= 3.0, < 5.0) 127 | jekyll-paginate (1.1.0) 128 | jekyll-readme-index (0.3.0) 129 | jekyll (>= 3.0, < 5.0) 130 | jekyll-redirect-from (0.15.0) 131 | jekyll (>= 3.3, < 5.0) 132 | jekyll-relative-links (0.6.1) 133 | jekyll (>= 3.3, < 5.0) 134 | jekyll-remote-theme (0.4.1) 135 | addressable (~> 2.0) 136 | jekyll (>= 3.5, < 5.0) 137 | rubyzip (>= 1.3.0) 138 | jekyll-sass-converter (1.5.2) 139 | sass (~> 3.4) 140 | jekyll-seo-tag (2.6.1) 141 | jekyll (>= 3.3, < 5.0) 142 | jekyll-sitemap (1.4.0) 143 | jekyll (>= 3.7, < 5.0) 144 | jekyll-swiss (1.0.0) 145 | jekyll-theme-architect (0.1.1) 146 | jekyll (~> 3.5) 147 | jekyll-seo-tag (~> 2.0) 148 | jekyll-theme-cayman (0.1.1) 149 | jekyll (~> 3.5) 150 | jekyll-seo-tag (~> 2.0) 151 | jekyll-theme-dinky (0.1.1) 152 | jekyll (~> 3.5) 153 | jekyll-seo-tag (~> 2.0) 154 | jekyll-theme-hacker (0.1.1) 155 | jekyll (~> 3.5) 156 | jekyll-seo-tag (~> 2.0) 157 | jekyll-theme-leap-day (0.1.1) 158 | jekyll (~> 3.5) 159 | jekyll-seo-tag (~> 2.0) 160 | jekyll-theme-merlot (0.1.1) 161 | jekyll (~> 3.5) 162 | jekyll-seo-tag (~> 2.0) 163 | jekyll-theme-midnight (0.1.1) 164 | jekyll (~> 3.5) 165 | jekyll-seo-tag (~> 2.0) 166 | jekyll-theme-minimal (0.1.1) 167 | jekyll (~> 3.5) 168 | jekyll-seo-tag (~> 2.0) 169 | jekyll-theme-modernist (0.1.1) 170 | jekyll (~> 3.5) 171 | jekyll-seo-tag (~> 2.0) 172 | jekyll-theme-primer (0.5.4) 173 | jekyll (> 3.5, < 5.0) 174 | jekyll-github-metadata (~> 2.9) 175 | jekyll-seo-tag (~> 2.0) 176 | jekyll-theme-slate (0.1.1) 177 | jekyll (~> 3.5) 178 | jekyll-seo-tag (~> 2.0) 179 | jekyll-theme-tactile (0.1.1) 180 | jekyll (~> 3.5) 181 | jekyll-seo-tag (~> 2.0) 182 | jekyll-theme-time-machine (0.1.1) 183 | jekyll (~> 3.5) 184 | jekyll-seo-tag (~> 2.0) 185 | jekyll-titles-from-headings (0.5.3) 186 | jekyll (>= 3.3, < 5.0) 187 | jekyll-watch (2.2.1) 188 | listen (~> 3.0) 189 | jemoji (0.11.1) 190 | gemoji (~> 3.0) 191 | html-pipeline (~> 2.2) 192 | jekyll (>= 3.0, < 5.0) 193 | kramdown (1.17.0) 194 | liquid (4.0.3) 195 | listen (3.2.1) 196 | rb-fsevent (~> 0.10, >= 0.10.3) 197 | rb-inotify (~> 0.9, >= 0.9.10) 198 | mercenary (0.3.6) 199 | mini_portile2 (2.4.0) 200 | minima (2.5.1) 201 | jekyll (>= 3.5, < 5.0) 202 | jekyll-feed (~> 0.9) 203 | jekyll-seo-tag (~> 2.1) 204 | minitest (5.14.0) 205 | multipart-post (2.1.1) 206 | nokogiri (1.10.8) 207 | mini_portile2 (~> 2.4.0) 208 | octokit (4.15.0) 209 | faraday (>= 0.9) 210 | sawyer (~> 0.8.0, >= 0.5.3) 211 | pathutil (0.16.2) 212 | forwardable-extended (~> 2.6) 213 | public_suffix (3.1.1) 214 | rb-fsevent (0.10.3) 215 | rb-inotify (0.10.1) 216 | ffi (~> 1.0) 217 | rouge (3.13.0) 218 | ruby-enum (0.7.2) 219 | i18n 220 | rubyzip (2.0.0) 221 | safe_yaml (1.0.5) 222 | sass (3.7.4) 223 | sass-listen (~> 4.0.0) 224 | sass-listen (4.0.0) 225 | rb-fsevent (~> 0.9, >= 0.9.4) 226 | rb-inotify (~> 0.9, >= 0.9.7) 227 | sawyer (0.8.2) 228 | addressable (>= 2.3.5) 229 | faraday (> 0.8, < 2.0) 230 | terminal-table (1.8.0) 231 | unicode-display_width (~> 1.1, >= 1.1.1) 232 | thread_safe (0.3.6) 233 | typhoeus (1.3.1) 234 | ethon (>= 0.9.0) 235 | tzinfo (1.2.6) 236 | thread_safe (~> 0.1) 237 | unicode-display_width (1.6.1) 238 | 239 | PLATFORMS 240 | ruby 241 | 242 | DEPENDENCIES 243 | github-pages 244 | 245 | RUBY VERSION 246 | ruby 2.4.1p111 247 | 248 | BUNDLED WITH 249 | 1.16.1 250 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #RubyConfIndia Website 2 | 3 | ##Dependencies 4 | 5 | 1. Ruby 6 | 7 | ##Setup 8 | 9 | ``` 10 | bundle install 11 | ``` 12 | 13 | ##Run Locally 14 | 15 | ``` 16 | bundle exec jekyll serve 17 | ``` 18 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | # Site settings 2 | title: RubyConfIndia 3 | email: team@rubyconfindia.org 4 | description: > # this means to ignore newlines until "baseurl:" 5 | The Indian edition of the international Ruby programming language conference. 6 | It is organized annually on a not-for-profit basis by volunteers. 7 | baseurl: "" # the subpath of your site, e.g. /blog/ 8 | url: "https://www.rubyconfindia.org" # the base hostname & protocol for your site 9 | twitter_username: RubyConfIndia 10 | github_username: rubyconfindia 11 | encoding: UTF-8 12 | meta_title: RubyConfIndia - RubyConf's Indian edition 13 | meta_description: > # 14 | The Indian edition of the international Ruby programming language conference. 15 | It is organized annually on a not-for-profit basis by volunteers. 16 | 17 | # Build settings 18 | markdown: kramdown 19 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 35 | 36 | {% include js.html %} 37 | -------------------------------------------------------------------------------- /_includes/ga.html: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %} 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | {% if page.meta_title %} 21 | 22 | 23 | {% else %} 24 | 25 | 26 | {% endif %} 27 | 28 | {% if page.meta_description %} 29 | 30 | 31 | {% else %} 32 | 33 | 34 | {% endif %} 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /_includes/home/about.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 |
6 |
7 |
8 | 9 |
10 |

About RubyConf India

11 |
RubyConf India is a global event complementing other RubyConf events across the world.
12 |

This year our event is a 2 day, single track event focused on Ruby Language, Framework and Tools. 13 | 14 |

15 | 17 | 18 |

Note: The conference is entirely in English.

19 |
20 |
21 |
22 |
23 |
24 | -------------------------------------------------------------------------------- /_includes/home/contact.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |

Contact

5 |

Send us email at team@rubyconfindia.org or contact @RubyConfIndia over twitter

6 |
7 |
8 |
9 | -------------------------------------------------------------------------------- /_includes/home/intro.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 | 7 |
8 |
9 |
10 | 11 |

RUBYCONF

12 |
13 |

INDIA 2019

14 |

In 2019 RubyConf India is going to be at Goa, 15 | Welcome!

16 |

Hotel Park Regis in Goa. 20-21 17 | January 2019

18 |
19 | 20 | talk-image 21 | 22 |
23 |
24 | 25 |
26 |
27 | 37 |
38 |
39 |
40 |
41 |
42 |
43 | -------------------------------------------------------------------------------- /_includes/home/twitter_widgets.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/js.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- 1 | 66 | -------------------------------------------------------------------------------- /_includes/pages/call_for_proposal_index.html: -------------------------------------------------------------------------------- 1 |
Call for Proposal
2 | 3 |

The Talk CFP is now closed. We shall inform everyone who has submitted a proposal, whether his/her talk has been selected or not.

4 |

Thank you for the overwhelming response.

5 | 6 | 41 | 42 | -------------------------------------------------------------------------------- /_includes/pages/code_of_condect_index.html: -------------------------------------------------------------------------------- 1 |
Code of Conduct
2 | 3 |
Short Version
4 | 5 |

RubyConfIndia, is a community conference intended for networking and collaboration in the developer community. We value the participation of each member of the community and want all participants to have an enjoyable and fulfilling experience. We are committed to providing a safe environment for everyone regardless of gender, race, nationality, religion, disability, appearance or sexual orientation. Any misconduct by any participant during the course of the conference, at the venue or otherwise, will not be tolerated. Attendees violating these rules may be asked to leave the conference without a refund at the sole discretion of the conference organizers.

6 | 7 |

Thank you for helping make this a welcoming, friendly event for all.

8 | 9 |

At the outset, we assume that most people are intelligent and well-intended, and we are not inclined to tell people what to do. That said, we take issues of harassment very seriously. Let us be clear - we do not condone harassment or inappropriate behaviour, at our conferences or anywhere. It is counter to our values as an organization and a community; and more importantly, it is counter to our values as human beings.

10 | 11 |

We believe that a diverse community based on mutual respect is the base for a creative and productive environment enabling the success of this endeavour. It is our endeavour to provide a safe, unbiased and harassment-free environment to all members of the community so that they may achieve the above goals.

12 | 13 |

All communication should be appropriate for a professional audience and must be sufficiently inclusive of people from many different backgrounds.

14 | 15 |

Harassment and inappropriate behaviour can include (but is not limited to):

16 | 17 | 30 | 31 |

Any such incidents reported to the conference organizers may be dealt with by actions ranging from warning the offender to desist from such behaviour to expulsion of the participant from the remainder of the conference without refund or rebate in any form.

32 | 33 |

We invite you to help us make this conference a place that is welcoming and respectful to all participants, so that everyone can focus on the conference itself and the great networking and community richness that can happen when we get together in person.

34 | 35 |
Participant procedure for handling incidents
36 | 37 | 44 | 45 |
Responsibility of Sponsors
46 | 47 |

Sponsors are afforded several privileges for their contribution to the event. We expect that the sponsors utilize these privileges with due responsibility by not using any inappropriate artwork or messaging on their promotional material displayed or handed out during the conference.

48 | 49 |
Contact Information
50 | 51 |
52 |
53 | Ajey Gore 54 |
Ajey Gore
55 | 56 |
+919764999768
57 |
58 | 59 |
60 | Gautam Rege 61 |
Gautam Rege
62 | 63 |
+919881395656
64 |
65 | 66 |
67 | Satish Talim 68 |
Satish Talim
69 | 70 |
+918087766880
71 |
72 |
73 | 74 |
 
75 | -------------------------------------------------------------------------------- /_includes/pages/community_in_india_index.html: -------------------------------------------------------------------------------- 1 |
Ruby Community in India
2 | 3 |

Here are some of the Ruby meetup groups in India:

4 | 5 | 18 | -------------------------------------------------------------------------------- /_includes/pages/faq_index.html: -------------------------------------------------------------------------------- 1 |
FAQ
2 |
3 | 4 |

Q. I had purchased a conference ticket but now my plan has changed. Will you refund my money?

5 | 6 |

Q. Will we be able to tweet about all the Ruby awesomeness at the conference?

7 |

Q. How many tracks will the talks be organized into?

8 |

Q. What are the timings of the event?

9 | 10 |

 

11 | Q. I had purchased a conference ticket but now my plan has changed. Will you refund my money? 12 |

We had mentioned at the time of buying the ticket, that it is non-refundable. However, we will try and help you find buyers for your ticket. 13 | Once you sell your ticket, do inform us the purchaser's name so that we can print the attendee badge in his/her name.

14 | 15 | 16 | 20 |

 

21 | Q. Will we be able to tweet about all the Ruby awesomeness at the conference? 22 |

Of course you can! Just tag all your tweets #RCI19.

23 | 24 | 25 |

 

26 | Q. How many tracks will the talks be organized into? 27 |

We love going to conferences that don't make you choose between two great presentations. So we created RubyConfIndia as a single-track event that you don't want to miss and where everyone gets the opportunity to see the same talks. We think you'll enjoy the speakers we're lining up so much, you won't want to miss anyone of them.

28 | 29 | 30 |

 

31 | Q. What are the timings of the event? 32 |

Registrations will open at 8:00 am on Sunday, 20th January 2019 and day 1 will run upto 5:30 pm. The talks on 33 | day 2 will start at 9:00 am and run upto 5:15 pm. This is subject to change.

34 | 35 | 36 |

 

37 | 38 |
39 | -------------------------------------------------------------------------------- /_includes/pages/individuals_index.html: -------------------------------------------------------------------------------- 1 |
Individual Supporters
2 |
The amount you donate goes towards a Student Scholarship Fund which will help students attend the conference and cover their travel, boarding and lodging expenses. Donate and support our students today. 3 |

The following Rubyists have donated generously:
4 | 100 |
101 | -------------------------------------------------------------------------------- /_includes/pages/previous_conforence_index.html: -------------------------------------------------------------------------------- 1 |
Past Conferences
2 |
3 | 4 |
5 | 6 |

2018

7 |
Banglore
8 |
9 |
10 | 11 |
12 | 13 |

2017

14 |
Kochi
15 |
16 |
17 | 18 |
19 | 20 |

2016

21 |
Kochi
22 |
23 |
24 | 25 |
26 | 27 |

2015

28 |
Goa
29 |
30 |
31 | 32 |
33 | 34 |

2014

35 |
Goa
36 |
37 |
38 | 39 |
40 | 41 |

2013

42 |
Pune
43 |
44 |
45 | 46 |
47 | 48 |

2012

49 |
Pune
50 |
51 |
52 | 53 |
54 | 55 |

2011

56 |
Bangalore
57 |
58 |
59 | 60 |
61 | 62 |

2010

63 |
Bangalore
64 |
65 |
66 |
67 | 68 |
69 | -------------------------------------------------------------------------------- /_includes/pages/proposal_advise_index.html: -------------------------------------------------------------------------------- 1 |
Proposal Advice
2 | 3 |

We are grateful for your interest in presenting at GopherConIndia 2016. This is a guide to help you submit the best possible proposal, and tips to make your proposal more likely to be accepted. Please keep in mind that many more proposals are submitted for talks than can be accepted; following the recommendations provided here will increase your chance of acceptance.

4 |
Good Ideas
5 | 23 | 24 |
Bad Ideas
25 | 26 | 37 | 38 |
More Information
39 | 40 |

For more resources to help prepare your proposal, see Proposal Resources

-------------------------------------------------------------------------------- /_includes/pages/proposal_resorce_index.html: -------------------------------------------------------------------------------- 1 |
Proposal Resources
2 | 3 |

We want you to submit a proposal to GopherConIndia! The program committee is always available to help you put together a proposal. Here's a list of information and advice to help you out.

4 | 5 |
General advice
6 | 7 | 11 | 12 |
Articles
13 | 14 | -------------------------------------------------------------------------------- /_includes/pages/rci_program_index.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Program

4 | 5 |
6 |
7 |
8 |
9 |
10 |
11 | speaker image 12 |
13 |
14 |
15 |

Bala Kumar

16 |

@sribalakumar

17 |

Product developer turned Site reliability Engineer, scaling systems for Freshworks. Been using Ruby & Rails for the last 5 years. Besides tech he volunteers with Bhumi to teach kids on programming fundamentals and his recent passion is crunching through weather models and radar images to predict rains.

18 |

Talk : Semian, Marginalia, i18nema and more on scaling the Freshdesk monolith Rails app

19 |

Ruby is blocking in nature and cannot scale is a cliche and through RubyConf India Iam looking forward to share our growth hack experiences with a multi-tenant monolith rails application that we scaled beyond 200K RPM per pod with 99.99 % availability.

20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | speaker image 28 |
29 |
30 |
31 |

Brad Urani

32 |

@bradurani

33 |

Brad Urani is a coder, karaoke singer and barbecue evangelist. He believes happiness is directly correlated with the size of your .vimrc and refuses to buy into YAGNI. When not hiking or hacking, he preaches the wonders of Rails and relational databases as Principal Engineer at Procore in Santa Barbara, CA.

34 |

Talk : The Ultimate Ruby Developer's Command Line Toolkit

35 |

Let's teach command line tinkering! Customizing your shell environment with tools and shortcuts makes you a happier, more productive Ruby developer. It teaches you to be confident navigating your operating system, giving you the foundational skills you needs to expand your knowledge into ops

36 |
37 |
38 |
39 | 40 |
41 |
42 |
43 |
44 | speaker image 45 |
46 |
47 |
48 |

Bragadeesh Jegannathan

49 |

@bragabrags

50 |

Bragadeesh Jegannathan is the founder and CEO of Francium Tech, a Chennai based startup having more than 30 professionals primarily working on Ruby, Python, Go, Nodejs. He has an overall 13 years of experience and loves writing code mostly using Ruby. He has worked in various startups and MNCs before founding Francium Tech. Loves mentoring young engineers and students about the importance of Applied Engineering. He is a Vipassana practitioner meditating 2 hours every day.

51 |

Talk : Serverless concept, not Serverless framework. Insane scaling using stock Rails application

52 |

For an average Rails developer, writing a Lambda Function in Node.js and deploying it to AWS Cloud with all its restrictions on code size, learning curve, cold starts etc is painful if not impossible. This talk is to address that problem and scale any project to insane levels with Pure Rails/Ruby.

53 |
54 |
55 |
56 | 57 | 58 |
59 |
60 |
61 |
62 | speaker image 63 |
64 |
65 |
66 |

Charles Nutter

67 |

@headius

68 |

He is one of the JRuby guys, 69 | co-lead of JRuby project and JVM enthusiast. 70 | He is a Ruby Hero and Java Champion too! He works every day 71 | to make JRuby the best JVM-based Ruby possible while pushing 72 | JVM folks and other language authors to keep improving the platform. 73 |

74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 | speaker image 82 |
83 |
84 |
85 |

Gautam Rege

86 |

@gautamrege

87 |

88 | Gautam is a Ruby and Go programmer. He is a serial entrepreneur for 89 | the last 18 years and loves to talk and drink beer! He is the founder 90 | of Josh Software, a 11 year old Ruby development shop in India. Gautam has been speaking at conferences for the past 8 years in over 20 events and 13 different countries. He loves programming and calls it his oxygen to a healthy life. When not coding, he loves playing basketball, football and squash! 91 |

92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 | speaker image 100 |
101 |
102 |
103 |

Jason Swett

104 |

@jasonswett

105 |

Jason Swett helps Rails developers write better tests. Since putting his first website online in 1996, he has taught programming in four countries and worked for organizations like AT&T, Deloitte and the University of Chicago. Jason lives in Sand Lake, Michigan.

106 |

Talk : Using Tests as a Tool to Wrangle Legacy Projects

107 |

Legacy projects tend to lack test coverage. Unfortunately, legacy projects are also often written in such a way that it makes it difficult to add tests. A few powerful testing techniques can make it much easier to get legacy projects under control.

108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 | speaker image 116 |
117 |
118 |
119 |

Mudit Maheshwari

120 |

@Magical_Mudit

121 |

Joined GO-JEK as Product Engineer after graduating from IIT Indore last year. He has been working in GO-FOOD, the food business wing of GO-JEK, and has been focused and about building innovative features to enthrall customers. He is passionate about exploring and learning new technologies and likes reading about distributed systems and data-intensive applications. When AFK, he is always ready for a game of cricket or football.

122 |

Talk : How we monitor applications at Go-Jek

123 |

At Go-Jek, we are growing faster than we can possibly imagine. We are always refactoring and pulling out small, well-defined microservices. At such a scale, it becomes very important to monitor our services in real-time. In this talk, I will discuss about how we monitor applications at Go-Jek.

124 |
125 |
126 |
127 | 128 | 129 |
130 |
131 |
132 |
133 | speaker image 134 |
135 |
136 |
137 |

Ratnadeep Deshmane

138 |

@Rtdp

139 |

Ratnadeep Deshmane aka rtdp is a Ruby developer for past 10 years. He loves travel and has been a digital nomad for past few years. Before starting his digital nomading journey he ran a venture funded startup AppSurfer. Currently, he is Pune writing and enjoying more and more of Ruby.

140 |

The story of Rails!

141 |

Give a Man a Fish, and You Feed Him for a Day. Teach a Man To Fish, and You Feed Him for a Lifetime. This is what this talk tries to do by answering all WHYs related to Rails framework. Rails is big with features, this talk tears it all apart to explains the purpose & history.

142 |
143 |
144 |
145 | 146 |
147 |
148 |
149 |
150 | speaker image 151 |
152 |
153 |
154 |

Sidu Ponnappa

155 |

@ponnappa

156 |

Sidu Ponnappa serves as a Director at GO-JEK and is the Head of the India team. He takes care of Data Engineering and Global Talent Acquisition. Sidu has founded three startups, the last being acquired by GO-JEK in 2015. Sidu has established and scaled the India organisation before moving to head up Data Engineering. He’s helped build the technology arm of GO-JEK to 250+ engineers who build and scale systems that process 3+ million orders daily. Sidu started coding when he was six and has since gone on to co-found 3 companies launching 4 products. He is also a trustee of the Emerging Technology Trust, an non-profit he helped found in 2010 that supports the Indian open source community, and runs three of the largest tech conferences in the country. He has worked as an engineer, product manager, salesperson, recruiter, marketer, CTO and CEO. He has failed more times than he can count. He is an avid motorcycle lover.

157 |
158 |
159 |
160 | 161 |
162 |
163 |
164 |
165 | speaker image 166 |
167 |
168 |
169 |

Swanand Pagnis

170 |

@_swanand

171 |

Software Engineer. Parent. Nerd. Long time Rubyist. He likes writing software, reading software, building communities, and continuous improvement. Ruby, OCaml, SQL are his weapons of choice. He earns his living at First.io and organizes meetups for his Bangalore Ruby friends.

172 |

Talk : The Deep Work Mentality

173 |

Mastering hard things fast is the ultimate x-factor. It is what makes some people have disproportionately large impact. This journey of a 1000 miles begins at deep focussed work, and cultivating the right learning habits. I am on this journey, and I want you to start yours.

174 |
175 |
176 |
177 | 178 |
179 |
180 |
181 |
182 | speaker image 183 |
184 |
185 |
186 |

Torsten Rüger

187 |

Torsten has been coding in various roles for 38 years. He found ruby in 2001, and hasn’t coded much else since. Nowadays, he feels privileged because he can code for fun, and what interests him most is how code actually works. Hence the very self referential implementation of ruby in ruby.

When he doesn’t code he does timber-framing and builds houses. He lives in the finish nature, with his wife, where they run a B&B, and enjoy the quiet life.

188 |

Talk : RubyX, compiling ruby to binary

189 |

Imagine a ruby runtime that would not just implement the greatest language you know, but also be fast. And you could change it and make it better in the language you love. That is what RubyX is, it�s ruby compiled to binary, in pure ruby. RubyX is the ruby implementation for rubyists.

190 |
191 |
192 |
193 | 194 |
195 |
196 |
197 |
198 | speaker image 199 |
200 |
201 |
202 |

Yukihiro Matsumoto

203 |

@yukihiro_matz

204 |

205 | Yukihiro "Matz" Matsumoto is a programmer, and the creator of the Ruby language. He works for many open source related organizations and companies, e.g. NaCl inc. in Japan, Heroku and Ruby Association. Since his real name is difficult for non-Japanese speakers to pronounce correctly, he uses the nickname Matz on the Net. Matz spoke at RubyConfIndia 2016. Matz also spoke at RubyConfIndia 2017 on What is software made of? 206 |

207 |
208 |
209 |
210 | 211 | 215 | -------------------------------------------------------------------------------- /_includes/pages/registration_information_index.html: -------------------------------------------------------------------------------- 1 |
Registration Information
2 | 3 |
4 |
5 |
GopherConIndia 2016
6 | Vivanta by Taj, 41/3 Mahatma Gandhi Road, Bengaluru 560 001, India 7 | 8 |

9 |
10 | India's second Go programming conference in Bengaluru on 19-20 Feb. 2016, that's 100% #golang goodness! 11 |

12 | 13 | 14 | 15 | 16 | 21 | 22 | 23 | 24 | 25 |
Tickets
17 | 18 | 19 | 20 |
 
26 | 27 |
28 |
29 | 30 | 31 |
32 |
33 | 34 |
35 |
Additional Information:
36 |

37 | GopherConIndia 2016 will be a single-track two day conference with a variety of talks designed to spark creativity and promote Go education. There will be a variety of events planned outside the conference track to allow attendees to make connections with other Go developers, vendors, and friends. 38 |

39 |
40 | 41 |
42 | 43 | 44 | 45 | 51 |
52 | 53 |
54 |
55 | -------------------------------------------------------------------------------- /_includes/pages/ruby_hero_award_index.html: -------------------------------------------------------------------------------- 1 |
The Ruby Hero Award
2 | 3 |
4 | 5 |

6 | The RubyConfIndia Ruby Hero Award gives recognition to influential devs in the Indian Ruby/Rails community and shall announce the winner at RubyConfIndia. 7 |

8 | 9 |

10 | We believe great work deserves recognition. The Indian Ruby/Rails dev community is full of amazing contributors and unsung heroes who are busy producing educational content, developing plugins and gems, contributing to open- source projects, or putting on events to help developers learn and grow.

11 |

12 | Wherever they are, their work is too great to go unnoticed and we need your help to find them. 13 |

14 |

APPLY HERE ->

15 |

16 | The Indian Ruby/Rails community will propose many such unsung heroes and a select panel will finalize one such hero and announce his/her name at RubyConfIndia 2018.

17 | 18 | -------------------------------------------------------------------------------- /_includes/pages/scholarship_index.html: -------------------------------------------------------------------------------- 1 |
Student Scholarship
2 |

As part of RubyConfIndia's commitment to encourage students in India to excel in computing and technology, we are offering student scholarships (selected few, based on some criteria, as explained below).

3 | 4 |
Student Scholarship Conditions
5 |
    6 |
  • The student must be studying in a School / College / University in India at the time of the conference (Feb. 2018). They must show proof of being a student, before the conference begins.
  • 7 |
  • A committee will evaluate the students and short-list the candidates eligible for this scholarship.
  • 8 |
  • Attend the core day(s) of the main conference i.e. 9th, 10th Feb. 2018.
  • 9 |
  • The Student should write a blog post on their experience at RubyConfIndia.
  • 10 |
  • The selected scholars will give a brief presentation of about 5 minutes during the lightning talks at the conference.
  • 11 | 12 |
13 | 14 |
What will the student get as part of the scholarship?
15 |
    16 |
  • A free conference pass for the 2 day conference.
  • 17 |
  • Travel (by III tier rail) cost will be paid after the conference.
  • 18 |
19 | 20 | 23 | 24 |
Applications for "Student Scholarship" is now closed.
25 |
26 |
All the selected Student Scholars are shown below.
27 | 28 |

 

29 |
Student Scholars
30 | 31 |
32 |
33 | Arushi Singhal 36 |
Arushi Singhal
37 | 41 |
42 |
43 | Franklin Antony 45 |
Franklin Antony
46 | 48 |
49 |
50 | Keerthana S 53 |
Keerthana S
54 | 57 |
58 |
59 | Raghav Vc 62 |
Raghav Vc
63 | 66 |
67 | 68 |
69 | Varunram Ganesh 72 |
Varunram Ganesh
73 | 76 |
77 | 94 | 95 |
96 |

 

97 | 98 |

 

99 | 100 | 101 | 136 | 137 | 146 |
147 | 148 |

 

149 | -------------------------------------------------------------------------------- /_includes/pages/sim_card_index.html: -------------------------------------------------------------------------------- 1 |
2 |
SIM Card
3 |

To get an Indian SIM card for your Android phone, you need to do the following: 4 |
5 | Make sure you have these documents with you (Original) 6 |

7 |
    8 |
  • Four color passport photographs of yourself,
  • 9 |
  • Photocopy of the personal details page of your passport. You will also have to produce your passport for verification, after which it will be returned to you there and then,
  • 10 |
  • A photocopy of your Indian visa. Once again, you will have to show the original visa for verification and it will be returned there and then,
  • 11 |
  • Photocopy of the proof of your home address in your country of residence. This could be your passport, driver’s license or any other Government issued document. Remember to carry the original document along for verification. It's better if you carry an additional document besides passport, like drivers license which helps them cross verify address etc.
  • 12 |
  • Proof of where you will be staying in India. A letter from your hotel confirming that you are a guest will suffice.
  • 13 |
14 |
15 |
Sim card cost and activation process
16 |
    17 |
  • Range would be $7 to $9,
  • 18 |
  • Minimum 1 day and maximum 3 days for verifying the authenticity of your documents and activating your card.
  • 19 |
20 |
21 |
Regarding the handset device
22 |
    23 |
  • In India 99% of phones are unlocked. So if you have an unlocked phone that be great, you can replace the SIM and your done.
  • 24 |
  • SIM cards come in two sizes. Do ask for the right sim card and put it in your phone at the counter and see if it detects.
  • 25 |
  • Cheap Android One handsets cost approx $100 dollars.
  • 26 |
27 |
28 |
Where to get the SIM Card?
29 |
    30 |
  • At the Airport after the custom check, OR
  • 31 |
  • In the city at service centers or showrooms. There are plenty and you would be able to find one everywhere.
  • 32 |
33 |
34 |
How to make a call using your new Prepaid SIM Card to US
35 |
    36 |
  • For international calls dial country code + area code + phone number.
  • 37 |
38 | 39 | 40 |
41 |
How to recharge?
42 |

43 | You can use sites like http://freecharge.in or http://paytm.com to recharge your phone. 44 |

45 |
46 | -------------------------------------------------------------------------------- /_includes/pages/staff_information_index.html: -------------------------------------------------------------------------------- 1 |
Staff Information
2 | 3 | RubyConfIndia Organizersteam@rubyconfindia.org 4 | 5 |
If the matter is especially urgent, please call/contact any of these individuals:
6 | 7 |
8 |
9 | Ajey Gore 10 |
Ajey Gore
11 | 12 |
+919958413789
13 |
14 | 15 |
16 | Gautam Rege 17 |
Gautam Rege
18 | 19 |
+919881395656
20 |
21 | 22 |
23 | Niranjan Paranjape 24 |
Niranjan Paranjape
25 | 26 |
+919538998499
27 |
28 | 29 |
30 | Satish Talim 31 |
Satish Talim
32 | 33 |
+918087766880
34 |
35 | 36 |
37 | Sidu Ponnappa 38 |
Sidu Ponnappa
39 | 40 |
+919880609867
41 |
42 | 43 |
44 | Prathamesh Sonpatki 45 |
Prathamesh Sonpatki
46 | 47 |
+919422033142
48 |
49 | 50 |
51 | Anuja Joshi 52 |
Anuja Joshi
53 | 54 |
55 | 56 |
57 | Shweta Kale 58 |
Shweta Kale
59 | 60 |
61 | 62 |
63 | Prithviraj Sukale 64 |
Prithviraj Sukale
65 | 66 |
+918552826876
67 |
68 | 69 |
70 |
 
71 | -------------------------------------------------------------------------------- /_includes/pages/talk_schedule_index.html: -------------------------------------------------------------------------------- 1 |
RubyConfIndia Talk Schedule
2 |
3 |
4 |

5 | This schedule is subject to change as speaker availability changes. 6 |

7 |
8 |
Sunday, 20th January, 2019
9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 25 | 26 | 27 | 28 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 41 | 42 | 43 | 44 | 45 | 46 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 |
8:00 AMRegistration
9:00 AMWelcome and House Rules
9:30 AM - 10:15 AM 22 | Yukihiro Matsumoto - Opening Keynote 23 | 24 |
10:20 AM - 10:45 AM 29 | Swanand Pagnis - The Deep Work Mentality - Mastering hard things fast is the ultimate x-factor 30 |
10:50 AM - 11:30 AM Tea Break
11:30 AM - 11:55 AM 39 | Bala Kuma - Semian, Marginalia, i18nema and more on scaling the Freshdesk monolith Rails app 40 |
12:00 AM - 12:25 PM 47 | Brad Urani - The Ultimate Ruby Developer's Command Line Toolkit 48 |
12:30 PM - 2:00 PM Lunch Break
2:00 PM - 2:25 PM 57 | Ratnadeep Deshmane - The story of Rails! 58 |
2:30 PM - 3:30 PM 63 | Open spaces 64 |
3:30 PM - 4 PM Tea Break
4 PM - 4:45 PMGautam Rege - Keynote
6 PM OnwardsParty
79 |
80 |
81 |
82 |
Monday, 21st January, 2019
83 |
84 | 85 | 86 | 87 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 100 | 101 | 102 | 103 | 104 | 107 | 108 | 109 | 110 | 113 | 114 | 115 | 116 | 120 | 121 | 122 | 123 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 141 | 142 | 143 | 144 | 145 | 146 |
10:00 AM - 10:45 AM 88 | Charles Nutter - Keynote 89 |
10:45 AM - 11:15 AM Tea Break
11:15 AM - 11:40 AM 98 | Jason Swett - Using Tests as a Tool to Wrangle Legacy Projects 99 |
11.45 AM - 12.10 PM 105 | Mudit Maheshwari - How we monitor applications at Go-Jek 106 |
12:15 PM - 12:40 PM 111 | Bragadeesh Jegannathan - Serverless concept, not Serverless framework. Insane scaling using stock Rails application 112 |
12:45 AM - 1:45 PM 117 | 118 | Lunch Break 119 |
1:45 AM - 2:10 PM 124 | Torsten Rüger - RubyX, compiling ruby to binary 125 |
2:15 PM - 2:45 PMFlash talks
2:45 PM - 3:15 PM Tea Break
3:15 PM - 4 PM 139 | Sidu Ponnappa - Keynote 140 |
4 PMVote of Thanks
147 |
148 |
149 |
150 |
151 |
152 |
153 | 190 | -------------------------------------------------------------------------------- /_includes/pages/tourist_visa_index.html: -------------------------------------------------------------------------------- 1 |
Visa Requirements
2 |

A Tourist visa is given to those visiting India for tourism or other non-business related purposes. You should apply for a Tourist Visa only.

3 |

e-Tourist Visa Facility is available for some Nationalities.

4 |

The GopherConIndia organizers are happy to provide an invitation letter if you need one; we do suggest, however, that you check with your local embassy or consulate, as requirements differ from country to country. Do apply for your Indian Tourist Visa definitely by mid Nov. 2016.

5 | 6 |
Resources
7 | -------------------------------------------------------------------------------- /_includes/pages/travelling_to_kochi_index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
Travelling to Kochi
4 | 5 |

If you’re planning to visit Kochi for Rubyconf India 2017, 6 | here are some frequently asked questions. 7 | If you have a question that is not answered on this page, 8 | please ask the question on the 9 | Kerala Ruby mailing list.

10 | 11 |
Reaching Kochi
12 | 13 |

Kochi (also known as Cochin) is a port city of the southern state of Kerala. 14 | Kochi is located on the west coast of India by the Arabian Sea. 15 | The city is about 206 km north of Thiruvananthapuram, the state’s capital. 16 | Kochi is easily accessible by air, rail and road.

17 | 18 |
By air
19 | 20 |

The city has an international airport; it is known as the Cochin International Airport. 21 | The airport is located in Nedumbassery, about 38 km from Kochi main city. 22 | About 9 domestic and 17 international airlines connect with this airport. 23 | Bus and taxi services are easily available to travel from the airport. 24 | The city also has a second airport which is a Defence Airbase and is not open to the public.

25 | 26 |
By Train
27 | 28 |

Kochi is well linked with major cities and states of India. 29 | Kochi has two major railway stations; they are the Ernakulam Junction and Ernakulam Town. 30 | The railways stations at Aluva, Thripunithura, Kalamassery, Kumbalam, Nettoor and Aroor 31 | serve the city outskirts and surrounding metropolitan area.

32 | 33 |
By Bus
34 | 35 |

Kochi is well connected by road to adjoining cities and states via several state and national highways. 36 | Kochi is well link with the National Highway number 47, 17, 49, 47A and 47C. 37 | The city is also well connected with several state highways. 38 | Buses and taxis services are available daily in Kochi.

39 | 40 |
City Transportation
41 | 42 |

The city has private bus operators and the state public transport KSRTC (Kerala State Road Transport Corporation). 43 | (Some of the buses may not have signs in English.)

44 | 45 |

Uber and Ola Cabs apps can be used for hiring cabs within the city.

46 | 47 |

Taxis can also be hired from taxi stands located all over the city. 48 | Other options are auto-rickshaws and private rent-a-cars and bikes. 49 | You can find taxi and auto rickshaw stands outside the city railway stations.

50 | 51 |
How to reach the venue
52 | 53 |

The venue for the conference is Le Meridien.

54 | 55 | 56 | 57 |
58 |
59 | 60 |
From Airport
61 | 62 |

Le Meridien is located about 38km from the airport. There are prepaid taxis 63 | available at the airport (costing around Rs. 1000). There are taxi booking 64 | counters at both the domestic and international terminals. You can also 65 | contact them at +91 484 2610115 (Extn: 2242).

66 | 67 |

You can also book cabs using Uber or Ola Cabs apps in Kochi.

68 | 69 |

Buses are available to Kochi from the airport. Buses to Ernakulam, Vyttila or 70 | Fort Kochi will take you to Vyttila, which is about 4km from the hotel. From 71 | here, you can take a taxi or an auto-rickshaw to the hotel.

72 | 73 | 76 | 77 |
From train stations
78 | 79 |

Kochi has two main train stations - Ernakulam Town (also called Ernakulam 80 | North), which is 10km from the venue, and Ernakulam Junction (or Ernakulam 81 | South), which is about 8km away. You can travel by prepaid taxi or auto 82 | rickshaw from either station.

83 | 84 |
From bus stand
85 | 86 |

If you’re traveling by bus to Kochi, most buses will take you to Vyttila Hub, 87 | which is about 4km from the venue. You can take a taxi or an auto rickshaw 88 | from here.

89 | 90 |
Power socket
91 | 92 |

Type C, D, M - 93 | 220V, 50Hz.

94 | 95 |
Communication
96 | 97 |

The local language is Malayalam, but many people in Kochi can communicate in English.

98 | 99 |
Money
100 | 101 |

If you’re traveling to India from abroad, 102 | please note that India withdrew old currency denominations of Rs. 500 and 1000 in Nov 2016. 103 | As a result, there might be restrictions on how much cash you can withdraw from ATMs. 104 | Use your credit/debit card, whenever possible.

105 | 106 |

The Rupee is available in denominations of Rs. 5, 10, 20, 50, 100, 500 and 2000. 107 | Coins are available in denominations of Rs. 1, 2, 5 and 10.

108 | 109 |
Weather
110 | 111 |

Kochi has tropical weather, and it is generally quite hot and humid. 112 | January is relatively cooler, with daily temperatures in the range 22-32C (72-90F).

113 | 114 |
SIM cards
115 | 116 |

If you’re visiting from outside India, and need a SIM card while you’re in India, 117 | you can purchase a SIM card from kiosks at the Cochin airport.

118 | 119 | 123 | 124 |

It might take 24-48 hours for new SIM cards to be activated.

125 | 126 |
Sightseeing
127 | 128 |

Some places to visit in Kochi:

129 | 130 | 137 | 138 |

Blog posts:

139 | 140 | 143 | 144 |

Other activities nearby:

145 | 146 | 151 | 152 |

If you have a day or two before or after the conference, 153 | you might want to visit some of these places.

154 | 155 | 160 | 161 |
Food recommendations
162 | 163 |

While you’re in Kochi, make sure that you try out the Kerala cuisine. 164 | If you’re staying in Le Meridien, there are two restaurants in the hotel - 165 | Latest Recipe and 166 | Ember 167 | where you can try local cuisine.

168 | 169 |

Some of the other places you can try in Kochi:

170 | 171 | 177 | 178 | 179 | 180 | 184 | 185 | -------------------------------------------------------------------------------- /_includes/pages/venue_index.html: -------------------------------------------------------------------------------- 1 | 2 |
Venue
3 | 4 |
5 | PARK REGIS,
6 | SAQWADI,
7 | ARPORA GOA,
8 | INDIA
9 |
10 | 11 |
12 | 15 |
16 | 17 |
18 | 19 |
20 | -------------------------------------------------------------------------------- /_includes/pages/video_image_index.html: -------------------------------------------------------------------------------- 1 |
Gallery
2 | 17 | 18 |
19 |
20 |
21 |

2015

22 |
Bangalore
23 | 24 | 25 |
26 |
27 |
28 | 29 |
-------------------------------------------------------------------------------- /_includes/talk-schedule/talks/aaron-cruz.html: -------------------------------------------------------------------------------- 1 | Ruby Alternatives - Aaron Cruz 2 | 3 | 32 | -------------------------------------------------------------------------------- /_includes/talk-schedule/talks/prathamesh-sonpatki.html: -------------------------------------------------------------------------------- 1 | Anatomy of constant lookup and autoloading in Rails - Prathamesh Sonpatki 2 | 3 | 28 | -------------------------------------------------------------------------------- /_includes/talk-schedule/talks/shobhit-srivastava.html: -------------------------------------------------------------------------------- 1 | Hidden features in Ruby you may not know about - Shobhit Srivastava 2 | 3 | 30 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ page.title }} | RubyConfIndia 2019 5 | {% include header.html %} 6 | 7 | 8 | 9 | 10 | {% include ga.html %} 11 | {% include nav.html %} 12 | 13 | {{content}} 14 | 15 | {% include footer.html %} 16 | 17 | 18 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 |
7 | 8 | {{content}} 9 | 10 |
11 |
12 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 |
7 | 8 |
{{ page.title }}
9 | 10 | {{content}} 11 | 12 | 13 |
14 | ← Back to blog home 15 | 16 |
17 | 28 | 29 | comments powered by Disqus 30 |
31 |
32 | -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: About 4 | permalink: /about/ 5 | --- 6 | 7 | This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](http://jekyllrb.com/) 8 | 9 | You can find the source code for the Jekyll new theme at: [github.com/jglovier/jekyll-new](https://github.com/jglovier/jekyll-new) 10 | 11 | You can find the source code for Jekyll at [github.com/jekyll/jekyll](https://github.com/jekyll/jekyll) 12 | -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- 1 | @import url(http://fonts.googleapis.com/css?family=Lato:400,700,900,400italic); 2 | @import url(http://fonts.googleapis.com/css?family=Dosis:300,400); 3 | 4 | html { 5 | width: 100%; 6 | height: 100%; 7 | -webkit-font-smoothing: antialiased; 8 | } 9 | 10 | body { 11 | width: 100%; 12 | height: 100%; 13 | font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; /* http://css-tricks.com/snippets/css/better-helvetica/ */ 14 | font-weight: 300; 15 | color: #fff; 16 | background-color: #292c33; 17 | 18 | } 19 | 20 | b, strong { 21 | font-weight: bold; 22 | } 23 | 24 | h1, 25 | h2, 26 | h3, 27 | h4, 28 | h5, 29 | h6 { 30 | margin: 0 0 5px; 31 | text-transform: uppercase; 32 | font-family: 'Raleway', sans-serif; 33 | font-weight: 100; 34 | } 35 | 36 | h1, 37 | h2, 38 | h3 { 39 | letter-spacing: -2px; 40 | } 41 | 42 | .intro h1, .intro h4 { 43 | font-family: 'Dosis', sans-serif; 44 | font-weight: 300; 45 | letter-spacing: -1px; 46 | } 47 | 48 | p { 49 | margin: 0 0 25px; 50 | font-size: 16px; 51 | line-height: 1.5; 52 | } 53 | 54 | @media (min-width: 767px) { 55 | p.home-paragraph { 56 | margin: 0 0 15px; 57 | font-size: 18px; 58 | line-height: 1.4; 59 | } 60 | } 61 | 62 | a { 63 | color: #CD853F; 64 | -webkit-transition: all .2s ease-in-out; 65 | -moz-transition: all .2s ease-in-out; 66 | transition: all .2s ease-in-out; 67 | } 68 | 69 | a:hover, 70 | a:focus { 71 | text-decoration: none; 72 | color: #cbb396; 73 | } 74 | 75 | .light { 76 | font-weight: 400; 77 | } 78 | 79 | .navbar { 80 | margin-bottom: 0; 81 | border-bottom: 1px solid rgba(255, 255, 255, .3); 82 | font-family: 'Lato', sans-serif; 83 | background-color: #292C33; 84 | } 85 | 86 | .navbar .navbar-nav > li > a { 87 | text-transform: uppercase; 88 | } 89 | 90 | .navbar-custom a { 91 | color: #fff; 92 | } 93 | 94 | .navbar-custom .nav li a { 95 | -webkit-transition: background .3s ease-in-out; 96 | -moz-transition: background .3s ease-in-out; 97 | transition: background .3s ease-in-out; 98 | } 99 | 100 | .navbar-custom .nav li a:hover, 101 | .navbar-custom .nav li a:focus, 102 | .navbar-custom .nav li.active { 103 | outline: 0; 104 | background-color: rgba(255, 255, 255, .2); 105 | } 106 | 107 | .navbar-toggle { 108 | padding: 4px 6px; 109 | font-size: 16px; 110 | color: #fff; 111 | } 112 | 113 | .navbar-toggle:focus, 114 | .navbar-toggle:active { 115 | outline: 0; 116 | } 117 | 118 | .navbar-nav > li > .dropdown-menu { 119 | background-color: #292c33; 120 | border-radius: 0; 121 | border: 1px solid #515763; 122 | } 123 | 124 | .dropdown-menu > li > a { 125 | color: #fff 126 | } 127 | 128 | .nav > li > a {padding: 10px} 129 | 130 | .navbar-inverse .navbar-nav > li > a { 131 | border: 1px solid transparent; 132 | border-bottom: none 133 | } 134 | 135 | .navbar-inverse .navbar-nav > .open > a:hover, 136 | .navbar-inverse .navbar-nav > .open > a:focus { 137 | background-color: #292c33; 138 | border: 1px solid #515763; 139 | border-bottom: none; 140 | } 141 | 142 | .navbar-right .dropdown-menu { 143 | left: 0; 144 | right: auto; 145 | } 146 | 147 | @media (min-width: 767px) { 148 | .navbar { 149 | padding: 20px 0; 150 | border-bottom: 0; 151 | letter-spacing: 1px; 152 | background: 0 0; 153 | -webkit-transition: background .5s ease-in-out, padding .5s ease-in-out; 154 | -moz-transition: background .5s ease-in-out, padding .5s ease-in-out; 155 | transition: background .5s ease-in-out, padding .5s ease-in-out; 156 | } 157 | 158 | .top-nav-collapse { 159 | padding: 0; 160 | background-color: #292c33; 161 | border-bottom: 1px solid #515763; 162 | } 163 | 164 | .navbar-custom.top-nav-collapse { 165 | border-bottom: 1px solid rgba(255, 255, 255, .3); 166 | } 167 | } 168 | 169 | .intro { 170 | display: table; 171 | width: 100%; 172 | height: auto; 173 | padding: 100px 0; 174 | /*text-align: center;*/ 175 | color: #fff; 176 | background: url(../../assets/images/bg.jpg) no-repeat bottom center scroll #292c33; 177 | -webkit-background-size: cover; 178 | -moz-background-size: cover; 179 | background-size: cover; 180 | -o-background-size: cover; 181 | z-index: -1; 182 | } 183 | 184 | .intro-body { 185 | display: table-cell; 186 | vertical-align: middle; 187 | } 188 | 189 | .brand-heading { 190 | font-size: 58px; 191 | padding-top: 12%; 192 | } 193 | 194 | .white { 195 | font-size: 58px !important; 196 | line-height: 48px; 197 | padding-bottom: 20px; 198 | } 199 | 200 | .intro-text { 201 | font-size: 18px; 202 | } 203 | 204 | @media (min-width: 767px) { 205 | .intro { 206 | height: 100%; 207 | padding: 0; 208 | } 209 | 210 | .brand-heading { 211 | font-size: 144px; 212 | line-height: 144px; 213 | } 214 | 215 | .white { 216 | font-size: 80px !important; 217 | line-height: 58px; 218 | padding-bottom: 30px; 219 | } 220 | 221 | .intro-text { 222 | font-size: 25px; 223 | margin-bottom: 0; 224 | } 225 | } 226 | 227 | .btn-circle { 228 | width: 70px; 229 | height: 70px; 230 | margin-top: 15px; 231 | padding: 7px 16px; 232 | border: 2px solid #fff; 233 | border-radius: 35px; 234 | font-size: 40px; 235 | color: #fff; 236 | background: 0 0; 237 | -webkit-transition: background .3s ease-in-out; 238 | -moz-transition: background .3s ease-in-out; 239 | transition: background .3s ease-in-out; 240 | } 241 | 242 | .btn-circle:hover, 243 | .btn-circle:focus { 244 | outline: 0; 245 | color: #fff; 246 | background: rgba(255, 255, 255, .1); 247 | } 248 | 249 | .page-scroll .btn-circle i.animated { 250 | -webkit-transition-property: -webkit-transform; 251 | -webkit-transition-duration: 1s; 252 | -moz-transition-property: -moz-transform; 253 | -moz-transition-duration: 1s; 254 | } 255 | 256 | .page-scroll .btn-circle:hover i.animated { 257 | -webkit-animation-name: pulse; 258 | -moz-animation-name: pulse; 259 | -webkit-animation-duration: 1.5s; 260 | -moz-animation-duration: 1.5s; 261 | -webkit-animation-iteration-count: infinite; 262 | -moz-animation-iteration-count: infinite; 263 | -webkit-animation-timing-function: linear; 264 | -moz-animation-timing-function: linear; 265 | } 266 | 267 | @-webkit-keyframes pulse { 268 | 0 { 269 | -webkit-transform: scale(1); 270 | transform: scale(1); 271 | } 272 | 273 | 50% { 274 | -webkit-transform: scale(1.2); 275 | transform: scale(1.2); 276 | } 277 | 278 | 100% { 279 | -webkit-transform: scale(1); 280 | transform: scale(1); 281 | } 282 | } 283 | 284 | @-moz-keyframes pulse { 285 | 0 { 286 | -moz-transform: scale(1); 287 | transform: scale(1); 288 | } 289 | 290 | 50% { 291 | -moz-transform: scale(1.2); 292 | transform: scale(1.2); 293 | } 294 | 295 | 100% { 296 | -moz-transform: scale(1); 297 | transform: scale(1); 298 | } 299 | } 300 | 301 | .download-section { 302 | width: 100%; 303 | padding: 50px 0; 304 | color: #fff; 305 | } 306 | 307 | #map { 308 | width: 100%; 309 | height: 200px; 310 | margin-top: 100px; 311 | } 312 | 313 | .content-section { 314 | padding: 40px 0px 40px 0px; 315 | } 316 | 317 | .brand-section { 318 | padding: 0px 10px; 319 | } 320 | 321 | .brand-section h6 { 322 | font-size: 24px; 323 | text-align: center; 324 | padding-bottom: 10px; 325 | } 326 | 327 | @media (min-width: 767px) { 328 | #map { 329 | height: 400px; 330 | margin-top: 250px; 331 | } 332 | } 333 | 334 | @media (max-width: 480px) { 335 | 336 | h2 { 337 | font-size: 40px !important; 338 | } 339 | } 340 | 341 | .btn { 342 | text-transform: uppercase; 343 | font-family: 'Lato', sans-serif; 344 | font-weight: 700; 345 | -webkit-transition: all .3s ease-in-out; 346 | -moz-transition: all .3s ease-in-out; 347 | transition: all .3s ease-in-out; 348 | border-radius: 0; 349 | } 350 | 351 | .btn-default { 352 | border: 1px solid #AA947C; 353 | color: #FEFEFF; 354 | background-color: #AA947C; 355 | outline: 0; 356 | } 357 | 358 | .btn-default:hover, 359 | .btn-default:focus { 360 | color: #fff; 361 | background-color: #cbb396; 362 | } 363 | 364 | .btn-huge { 365 | padding: 25px; 366 | font-size: 26px; 367 | } 368 | 369 | .banner-social-buttons { 370 | margin-top: 0; 371 | } 372 | .banner-social-buttons li{ 373 | padding:0px; 374 | margin:0px; 375 | } 376 | 377 | .sticker{ 378 | text-align:right; 379 | } 380 | 381 | @media (max-width: 1199px) { 382 | ul.banner-social-buttons { 383 | margin-top: 15px; 384 | } 385 | .container > .row > .col-md-8 { 386 | padding-top: 10px; 387 | } 388 | 389 | ul.banner-social-buttons li{ 390 | float:left; 391 | margin-right:4px; 392 | } 393 | 394 | .sticker{ 395 | text-align:center; 396 | } 397 | } 398 | 399 | @media (max-width: 767px) { 400 | 401 | .sticker{ 402 | text-align:center; 403 | } 404 | 405 | ul.banner-social-buttons > li { 406 | display: block; 407 | margin-bottom: 20px; 408 | padding: 0; 409 | } 410 | 411 | ul.banner-social-buttons > li:last-child { 412 | margin-bottom: 0; 413 | } 414 | } 415 | 416 | ::-moz-selection { 417 | text-shadow: none; 418 | background: #fcfcfc; 419 | background: rgba(000, 000, 000, .4); 420 | } 421 | 422 | ::selection { 423 | text-shadow: none; 424 | background: rgba(000, 000, 000, .4); 425 | } 426 | 427 | img::selection { 428 | background: 0 0; 429 | } 430 | 431 | img::-moz-selection { 432 | background: 0 0; 433 | } 434 | 435 | body { 436 | webkit-tap-highlight-color: rgba(255, 255, 255, .2); 437 | } 438 | 439 | .brand-heading { 440 | color: #cbb396; 441 | text-indent:10px; 442 | } 443 | 444 | .brand-heading .dark { 445 | color: #a8957b; 446 | } 447 | 448 | .brand-heading .white { 449 | color: #fff; 450 | } 451 | 452 | .venue.venue-bg { 453 | background-color: #5e5e5e; 454 | } 455 | 456 | .venue .map-wrap { 457 | position: relative; 458 | } 459 | 460 | .venue #map-canvas { 461 | height: 665px; 462 | width: 100% 463 | } 464 | 465 | .venue #map-content { 466 | text-align: center 467 | } 468 | 469 | .venue #map-content a { 470 | color: #d22341; 471 | font-size: 18px; 472 | display: block; 473 | margin-top: 0; 474 | margin-bottom: 10px; 475 | text-transform: uppercase; 476 | text-decoration: none; 477 | font-weight: bold; 478 | } 479 | 480 | .venue #map-content p { 481 | margin: 0; 482 | color: #333; 483 | . venue 484 | } 485 | 486 | .venue #map-inner-shadow { 487 | box-shadow: inset 0 -15px 20px rgba(51, 51, 51, 0.1); 488 | width: 100%; 489 | height: 50px; 490 | position: absolute; 491 | bottom: 0 492 | } 493 | 494 | .venue .address { 495 | bottom: 100px; 496 | left: 10%; 497 | width: 730px; 498 | padding: 30px; 499 | position: absolute; 500 | background-color: rgba(41, 44, 51, 0.8); 501 | color: #fff; 502 | } 503 | 504 | .give-talk-img { 505 | margin-top: 20px; 506 | margin-bottom: 30px; 507 | } 508 | 509 | .head-first-ever { 510 | font-size: 24px; 511 | margin-bottom: 80px; 512 | font-weight: 500; 513 | margin-top: 15px; 514 | color: #898989; 515 | } 516 | 517 | /*! sponsor section */ 518 | 519 | .sponsor-section { 520 | background-color: #e2e2e2; 521 | padding-top: 100px; 522 | padding-bottom: 50px; 523 | } 524 | 525 | .sponsor-section h2 { 526 | color: #444444; 527 | text-align: center; 528 | } 529 | 530 | .sponsor-section p { 531 | color: #444444; 532 | text-align: center; 533 | } 534 | 535 | /*! brand section */ 536 | 537 | .brand-section { 538 | background-color: #e2e2e2; 539 | padding-bottom: 100px; 540 | } 541 | 542 | .brand-section h2 { 543 | color: #848484; 544 | padding-bottom: 20px; 545 | font-size: 30px; 546 | text-align: center; 547 | } 548 | 549 | .brand-section p { 550 | color: #444444; 551 | text-align: justify; 552 | font-size: 15px; 553 | margin-top: 10px; 554 | } 555 | 556 | .brand-bg { 557 | background-color: #ffffff; 558 | min-height: 150px; 559 | padding: 22px; 560 | border-bottom: 1px solid rgba(0, 0, 0, 0.2); 561 | } 562 | 563 | .sponsor-logo { 564 | margin-top: 10px; 565 | max-width: 300px; 566 | height: auto; 567 | vertical-align: central; 568 | } 569 | 570 | /*! support section */ 571 | 572 | .support-section { 573 | background-color: #f2f2f2; 574 | } 575 | 576 | .support-section h2 { 577 | color: #848484; 578 | padding-bottom: 20px; 579 | font-size: 30px; 580 | text-align: center; 581 | } 582 | 583 | .support-section p { 584 | color: #444444; 585 | text-align: justify; 586 | font-size: 16px; 587 | } 588 | 589 | .support-bg { 590 | padding: 20px 24px; 591 | } 592 | 593 | .support-bg p { 594 | margin-bottom: 0; 595 | font-size: 14px; 596 | } 597 | 598 | .aerospike-img-position { 599 | padding-top: 50px; 600 | } 601 | 602 | .sourcegraph-img-position { 603 | padding-top: 15px; 604 | } 605 | 606 | .ardanlabs-img-width { 607 | width: 100px; 608 | } 609 | 610 | .source-logo{ 611 | text-align: center; 612 | height: 80px; 613 | width: 165px; 614 | margin: 0px auto; 615 | } 616 | .source-logo img,.source-logo a img{ 617 | max-width:100%; 618 | } 619 | 620 | .ruby-garage-logo { 621 | width: 80px; 622 | } 623 | 624 | .inner-page { 625 | font-size: 16px; 626 | padding-top: 100px; 627 | padding-bottom: 50px; 628 | /*background-color: #e2e2e2;*/ 629 | color: #444444; 630 | min-height: 550px; 631 | background-color: #292c33; 632 | -webkit-background-size: cover; 633 | -moz-background-size: cover; 634 | background-size: cover; 635 | -o-background-size: cover; 636 | } 637 | 638 | .container-section { 639 | background-color: #fff; 640 | padding: 20px 30px; 641 | border: 10px solid #292c33; 642 | } 643 | 644 | p.praposal { 645 | color: #444444; 646 | margin: 0 0 20px; 647 | font-size: 16px; 648 | line-height: 1.4; 649 | } 650 | 651 | .homepage h2 { 652 | font-size: 50px; 653 | } 654 | 655 | .inner-page h2 { 656 | font-size: 26px; 657 | margin: 15px 0px; 658 | } 659 | 660 | .inner-page h3 { 661 | font-size: 24px; 662 | margin: 15px 0px; 663 | } 664 | 665 | p.copyright { 666 | margin-bottom: 10px; 667 | } 668 | 669 | .footer-container-padding { 670 | padding-top: 10px; 671 | } 672 | 673 | .clear-fix { 674 | clear: both; 675 | } 676 | 677 | .first-conf { 678 | font-size: 12px; 679 | text-transform: none; 680 | color: #c1c1c1; 681 | } 682 | 683 | .navbar-brand { 684 | height: auto; 685 | padding: 4px 0 0; 686 | font-weight: 500; 687 | line-height: 16px; 688 | 689 | } 690 | 691 | .navbar-brand:focus { 692 | outline: 0; 693 | } 694 | 695 | ul.font-size { 696 | font-size: 16px; 697 | } 698 | 699 | /* Speaker */ 700 | #speaker { 701 | background-color: #F0F0F0; 702 | color: #000; 703 | } 704 | h2.speaker-title{ 705 | color: #898989; 706 | } 707 | 708 | p.last{ 709 | border-bottom: 1px dashed #898989; 710 | padding-bottom: 20px; 711 | } 712 | 713 | .speakers-wrapper * { 714 | line-height: 20px 715 | } 716 | .speaker { 717 | min-height: 190px; 718 | margin-bottom:20px; 719 | } 720 | .speakers-wrapper h2 { 721 | color: #898989; 722 | border-bottom: 2px solid #898989; 723 | padding: 20px 0 5px; 724 | margin-bottom: 20px; 725 | line-height: normal; 726 | } 727 | 728 | .speakers-wrapper .speaker .image { 729 | -webkit-box-shadow: inset 0px 0px 25px 5px rgba(0, 0, 0, 0.3); 730 | -moz-box-shadow: inset 0px 0px 25px 5px rgba(0, 0, 0, 0.3); 731 | box-shadow: inset 0px 0px 25px 5px rgba(0, 0, 0, 0.3); 732 | -webkit-box-sizing: border-box; 733 | -moz-box-sizing: border-box; 734 | box-sizing: border-box; 735 | border: 1px solid rgba(255, 255, 255, 0.3); 736 | -webkit-border-radius: 50%; 737 | -moz-border-radius: 50%; 738 | -ms-border-radius: 50%; 739 | -o-border-radius: 50%; 740 | border-radius: 50%; 741 | margin-bottom: 40px; 742 | padding: 10px 743 | } 744 | 745 | .speakers-wrapper .speaker .image .image-box { 746 | -webkit-box-sizing: border-box; 747 | -moz-box-sizing: border-box; 748 | box-sizing: border-box; 749 | -webkit-border-radius: 50%; 750 | -moz-border-radius: 50%; 751 | -ms-border-radius: 50%; 752 | -o-border-radius: 50%; 753 | border-radius: 50%; 754 | -webkit-box-shadow: inset 0px 0px 0px 15px #fff; 755 | -moz-box-shadow: inset 0px 0px 0px 15px #fff; 756 | box-shadow: inset 0px 0px 0px 15px #fff; 757 | -webkit-transition: all 0.2s ease; 758 | -moz-transition: all 0.2s ease; 759 | -o-transition: all 0.2s ease; 760 | transition: all 0.2s ease; 761 | border: 5px solid #fff; 762 | overflow: hidden 763 | } 764 | 765 | .speakers-wrapper .speaker .image .image-box:hover { 766 | border: 0px solid #fff 767 | } 768 | 769 | .speakers-wrapper .speaker .name { 770 | color: #898989; 771 | font-size: 24px; 772 | font-weight: normal; 773 | padding-top: 6px; 774 | padding-bottom: 5px; 775 | margin:0px; 776 | } 777 | 778 | .speakers-wrapper .speaker .company { 779 | color: #898989; 780 | margin:0px; 781 | } 782 | 783 | .speakers-wrapper .speaker .talk-title { 784 | color: #ff7e5b; 785 | font-size: 30px; 786 | font-weight: lighter; 787 | line-height: 30px; 788 | padding-top: 5px; 789 | padding-bottom: 10px 790 | } 791 | 792 | .speakers-wrapper .speaker .time { 793 | color: rgba(255, 255, 255, 0.3); 794 | font-size: 36px; 795 | font-weight: lighter; 796 | padding-top: 10px; 797 | padding-bottom: 5px 798 | } 799 | 800 | .speakers-wrapper .speaker .time .time-start { 801 | color: #fff 802 | } 803 | 804 | .speakers-wrapper .speaker .about { 805 | border-left: 2px solid rgba(255, 255, 255, 0.2); 806 | margin-left: 0px; 807 | margin-top: 30px; 808 | padding-left: 20px 809 | } 810 | 811 | .speakers-wrapper .speaker .about h4 { 812 | color: #fff; 813 | text-align: left; 814 | padding-bottom: 0px; 815 | padding-top: 0px; 816 | margin-top: 00px 817 | } 818 | 819 | .speakers-wrapper .speaker .about p { 820 | color: #898989; 821 | text-align: left 822 | } 823 | 824 | .speakers-wrapper .speaker .about-speaker { 825 | margin-top: 20px 826 | } 827 | 828 | .speakers-wrapper .speaker img { 829 | height: 118px; 830 | } 831 | 832 | .speakers-wrapper .speaker > div:first-child { 833 | width: 150px; 834 | } 835 | .staff-image-style { 836 | border-radius: 50%;width: 50px;border: 5px solid #d0d0d0;margin: 5px 0px; 837 | } 838 | .staff-name-padding { 839 | padding-top: 17px; 840 | } 841 | h2.sponsor-head { 842 | font-size: 36px; 843 | margin-top: 65px; 844 | text-align:left; 845 | text-indent:12px; 846 | } 847 | 848 | h2.supporters-head { 849 | text-align: center; 850 | padding: 0px; 851 | } 852 | 853 | .sponsors-bg { 854 | padding: 20px 24px; 855 | } 856 | 857 | p.sponsor-paragraph { 858 | color: #444444; 859 | font-size: 16px; 860 | line-height: 22px; 861 | text-align: justify; 862 | } 863 | 864 | h4.normal-transform 865 | { 866 | text-transform:none!important; 867 | color: #898989; 868 | font-size: 23px; 869 | padding-bottom: 24px; 870 | text-align: center; 871 | } 872 | 873 | .ft-logo{ 874 | text-align:right; 875 | } 876 | 877 | .ft-logo span{ position:relative; top:5px; color:#999; font-size:12px;} 878 | 879 | /*** Volunteers ***/ 880 | .volun{ 881 | text-align:center; 882 | margin-bottom:20px; 883 | } 884 | 885 | .volun img{ 886 | border-radius:50%; 887 | cursor:pointer; 888 | } 889 | 890 | .volun img:hover{ opacity:0.9;} 891 | 892 | .volun .title{ 893 | font-size:16px; 894 | font-weight:bold; 895 | } 896 | 897 | .volun .links a{ 898 | font-size:32px; 899 | } 900 | 901 | /*** Staff ***/ 902 | .staff{ 903 | text-align:center; 904 | } 905 | 906 | .staff img{ 907 | border-radius:50%; 908 | cursor:pointer; 909 | width: 80px; 910 | } 911 | 912 | .staff img:hover{ opacity:0.9;} 913 | 914 | .staff .title{ 915 | font-size:16px; 916 | font-weight:bold; 917 | } 918 | 919 | .staff .links a{ 920 | font-size:32px; 921 | } 922 | 923 | .staff .twitter a, .staff .phone{ 924 | font-size:16px; 925 | } 926 | 927 | .blue-color{ 928 | color: #71c0e8!important; 929 | } 930 | 931 | .text-color { 932 | color: #71c0e8!important; 933 | } 934 | 935 | .blue-color:hover{ 936 | background-color: rgba(41, 44, 51, 0.7)!important; 937 | } 938 | .big { 939 | font-size: 5rem !important; 940 | } 941 | .text-color p { 942 | font-family: 'Haymaker'; 943 | font-size: 3rem; 944 | margin-bottom: 20px; 945 | } 946 | 947 | .box-hight { 948 | padding-top: 20px; 949 | padding-bottom: 30px; 950 | border:4px solid #2c3688; 951 | margin:1em 2em; 952 | } 953 | #spons_logo1 { 954 | display:block; 955 | } 956 | #spons_logo2 { 957 | display:block; 958 | } 959 | 960 | .border-left-image { 961 | border-left: 2px solid #2c3688; 962 | padding-right: 20px; 963 | padding-left: 20px; 964 | margin-left: 15px; 965 | } 966 | -------------------------------------------------------------------------------- /assets/css/override-bootstrap-responsive.css: -------------------------------------------------------------------------------- 1 | /*Mobile portrait*/ 2 | @media (max-width:480px) { 3 | .sticker > span.pull-right{ 4 | float:none!important; 5 | } 6 | } 7 | 8 | /*Mobile landscape*/ 9 | @media (min-width: 481px) and (max-width:599px) { 10 | .sticker > span.pull-right{ 11 | float:none!important; 12 | } 13 | } 14 | 15 | /*Small tablet portrait*/ 16 | @media (min-width: 600px) and (max-width: 767px) { 17 | .sticker > span.pull-right{ 18 | float:none!important; 19 | } 20 | } 21 | 22 | /*Small tablet landscape*/ 23 | @media (min-width: 768px) and (max-width: 979px) { 24 | .sticker > span.pull-right{ 25 | float:none!important; 26 | } 27 | } 28 | /*Tablet portrait*/ 29 | @media (min-width:801px) and (max-width:1023px) { 30 | .sticker > span.pull-right{ 31 | float:none!important; 32 | } 33 | } 34 | 35 | /*Tablet landscape (1024x768)*/ 36 | @media (min-width: 992px) and (max-width: 1199px){ 37 | 38 | } 39 | 40 | /*Tablet landscape*/ 41 | @media (min-width: 992px) and (max-width: 1199px) { 42 | 43 | } 44 | 45 | /*large monitor*/ 46 | @media (min-width:1400px) and (max-width:1920px){ 47 | 48 | } 49 | 50 | #page-top .navbar-inverse .navbar-brand{ 51 | color: #fff; 52 | } 53 | 54 | .navbar-inverse .navbar-nav>li>a { 55 | color: #c1c1c1; 56 | } 57 | 58 | .container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse { 59 | margin-top: 8px; 60 | } 61 | 62 | -------------------------------------------------------------------------------- /assets/css/style-guide.css: -------------------------------------------------------------------------------- 1 | .gci-bold { 2 | font-weight: bold; 3 | } 4 | 5 | .gci-heading { 6 | font-family: arial; 7 | margin-bottom:10px; 8 | font-weight: 600; 9 | } 10 | 11 | .gci-heading-1 { 12 | font-size: 28px; 13 | margin-bottom:22px; 14 | color: #898989; 15 | } 16 | 17 | .gci-heading-2 { 18 | font-size: 22px; 19 | margin-bottom:15px; 20 | color: #898989; 21 | } 22 | 23 | .gci-heading-3 { 24 | font-size: 18px; 25 | margin-bottom:12px; 26 | } 27 | 28 | .gci-heading-4 { 29 | font-size: 16px; 30 | } 31 | 32 | .gci-heading-5 { 33 | font-size: 14px; 34 | } 35 | 36 | .gci-heading-6 { 37 | font-size: 12px; 38 | } 39 | 40 | .gci-unordered-list { 41 | font-size: 18px; 42 | margin-bottom: 20px; 43 | } 44 | 45 | .gci-unordered-list li { 46 | font-size: 16px; 47 | } 48 | 49 | 50 | .mt-10 { 51 | margin-top: 10px; 52 | } 53 | 54 | .mt-15 { 55 | margin-top: 15px; 56 | } 57 | 58 | .mt-20 { 59 | margin-top: 20px; 60 | } 61 | 62 | .mb-10 { 63 | margin-bottom: 10px; 64 | } 65 | 66 | .mb-15 { 67 | margin-bottom: 15px; 68 | } 69 | 70 | .mb-20 { 71 | margin-bottom: 20px; 72 | } 73 | 74 | -------------------------------------------------------------------------------- /assets/images/a-register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/a-register.png -------------------------------------------------------------------------------- /assets/images/badges/rci16-facebook-attending.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/badges/rci16-facebook-attending.jpg -------------------------------------------------------------------------------- /assets/images/badges/rci16-facebook-speaking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/badges/rci16-facebook-speaking.jpg -------------------------------------------------------------------------------- /assets/images/badges/rci16-linkedin-article-attending.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/badges/rci16-linkedin-article-attending.jpg -------------------------------------------------------------------------------- /assets/images/badges/rci16-linkedin-attending.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/badges/rci16-linkedin-attending.jpg -------------------------------------------------------------------------------- /assets/images/badges/rci16-linkedin-volunteering.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/badges/rci16-linkedin-volunteering.jpg -------------------------------------------------------------------------------- /assets/images/badges/rci16-twitter-attending.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/badges/rci16-twitter-attending.jpg -------------------------------------------------------------------------------- /assets/images/badges/rci16-twitter-speaking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/badges/rci16-twitter-speaking.jpg -------------------------------------------------------------------------------- /assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/bg.jpg -------------------------------------------------------------------------------- /assets/images/emerging-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/emerging-logo.png -------------------------------------------------------------------------------- /assets/images/individuals/Franklin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/Franklin.jpg -------------------------------------------------------------------------------- /assets/images/individuals/Keerthana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/Keerthana.jpg -------------------------------------------------------------------------------- /assets/images/individuals/Raghav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/Raghav.jpg -------------------------------------------------------------------------------- /assets/images/individuals/Varunram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/Varunram.jpg -------------------------------------------------------------------------------- /assets/images/individuals/abdul.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/abdul.jpeg -------------------------------------------------------------------------------- /assets/images/individuals/aditya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/aditya.jpg -------------------------------------------------------------------------------- /assets/images/individuals/akhil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/akhil.jpg -------------------------------------------------------------------------------- /assets/images/individuals/aniket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/aniket.jpg -------------------------------------------------------------------------------- /assets/images/individuals/arushi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/arushi.jpg -------------------------------------------------------------------------------- /assets/images/individuals/avinash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/avinash.jpg -------------------------------------------------------------------------------- /assets/images/individuals/avinasha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/avinasha.jpg -------------------------------------------------------------------------------- /assets/images/individuals/bilal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/bilal.jpg -------------------------------------------------------------------------------- /assets/images/individuals/janmejay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/janmejay.jpg -------------------------------------------------------------------------------- /assets/images/individuals/mohnish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/mohnish.jpg -------------------------------------------------------------------------------- /assets/images/individuals/neethu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/neethu.jpg -------------------------------------------------------------------------------- /assets/images/individuals/nidhi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/nidhi.jpg -------------------------------------------------------------------------------- /assets/images/individuals/nishant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/nishant.jpg -------------------------------------------------------------------------------- /assets/images/individuals/prathamesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/prathamesh.jpg -------------------------------------------------------------------------------- /assets/images/individuals/pritesh.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/pritesh.jpeg -------------------------------------------------------------------------------- /assets/images/individuals/santosh.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/santosh.jpeg -------------------------------------------------------------------------------- /assets/images/individuals/shaunak.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/shaunak.jpeg -------------------------------------------------------------------------------- /assets/images/individuals/shobhit.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/shobhit.jpeg -------------------------------------------------------------------------------- /assets/images/individuals/siddharth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/siddharth.jpg -------------------------------------------------------------------------------- /assets/images/individuals/swanand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/swanand.jpg -------------------------------------------------------------------------------- /assets/images/individuals/taneea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/taneea.jpg -------------------------------------------------------------------------------- /assets/images/individuals/tushar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/tushar.jpg -------------------------------------------------------------------------------- /assets/images/individuals/vrinda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/individuals/vrinda.jpg -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/speakers/aaron-cruz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/aaron-cruz.jpg -------------------------------------------------------------------------------- /assets/images/speakers/abhinandan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/abhinandan.jpg -------------------------------------------------------------------------------- /assets/images/speakers/aboobacker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/aboobacker.jpg -------------------------------------------------------------------------------- /assets/images/speakers/adam_hawkins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/adam_hawkins.jpg -------------------------------------------------------------------------------- /assets/images/speakers/anagha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/anagha.jpg -------------------------------------------------------------------------------- /assets/images/speakers/anil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/anil.jpg -------------------------------------------------------------------------------- /assets/images/speakers/anuja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/anuja.png -------------------------------------------------------------------------------- /assets/images/speakers/aram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/aram.jpg -------------------------------------------------------------------------------- /assets/images/speakers/avdi-grimm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/avdi-grimm.jpg -------------------------------------------------------------------------------- /assets/images/speakers/balakumar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/balakumar.jpg -------------------------------------------------------------------------------- /assets/images/speakers/bradurani.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/bradurani.jpg -------------------------------------------------------------------------------- /assets/images/speakers/bragabrags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/bragabrags.png -------------------------------------------------------------------------------- /assets/images/speakers/chirag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/chirag.jpg -------------------------------------------------------------------------------- /assets/images/speakers/elle-meredith.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/elle-meredith.jpg -------------------------------------------------------------------------------- /assets/images/speakers/gautam-rege.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/gautam-rege.jpeg -------------------------------------------------------------------------------- /assets/images/speakers/headius.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/headius.jpg -------------------------------------------------------------------------------- /assets/images/speakers/holman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/holman.png -------------------------------------------------------------------------------- /assets/images/speakers/jasonswett.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/jasonswett.jpg -------------------------------------------------------------------------------- /assets/images/speakers/jerry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/jerry.jpg -------------------------------------------------------------------------------- /assets/images/speakers/jon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/jon.png -------------------------------------------------------------------------------- /assets/images/speakers/kei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/kei.jpg -------------------------------------------------------------------------------- /assets/images/speakers/kiran.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/kiran.jpg -------------------------------------------------------------------------------- /assets/images/speakers/kytrinyx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/kytrinyx.jpg -------------------------------------------------------------------------------- /assets/images/speakers/lrz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/lrz.jpg -------------------------------------------------------------------------------- /assets/images/speakers/manohar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/manohar.jpg -------------------------------------------------------------------------------- /assets/images/speakers/matz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/matz.jpg -------------------------------------------------------------------------------- /assets/images/speakers/muditm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/muditm.png -------------------------------------------------------------------------------- /assets/images/speakers/paul.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/paul.jpg -------------------------------------------------------------------------------- /assets/images/speakers/prasun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/prasun.jpg -------------------------------------------------------------------------------- /assets/images/speakers/prathmesh.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/prathmesh.jpeg -------------------------------------------------------------------------------- /assets/images/speakers/richard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/richard.png -------------------------------------------------------------------------------- /assets/images/speakers/rishi-jain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/rishi-jain.jpg -------------------------------------------------------------------------------- /assets/images/speakers/rtdp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/rtdp.jpg -------------------------------------------------------------------------------- /assets/images/speakers/sameer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/sameer.jpg -------------------------------------------------------------------------------- /assets/images/speakers/sarahmei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/sarahmei.jpg -------------------------------------------------------------------------------- /assets/images/speakers/sean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/sean.jpg -------------------------------------------------------------------------------- /assets/images/speakers/sethupati.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/sethupati.jpg -------------------------------------------------------------------------------- /assets/images/speakers/shanko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/shanko.png -------------------------------------------------------------------------------- /assets/images/speakers/shaunak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/shaunak.jpg -------------------------------------------------------------------------------- /assets/images/speakers/shishir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/shishir.jpg -------------------------------------------------------------------------------- /assets/images/speakers/shobhit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/shobhit.png -------------------------------------------------------------------------------- /assets/images/speakers/shweta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/shweta.png -------------------------------------------------------------------------------- /assets/images/speakers/sidu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/sidu.jpg -------------------------------------------------------------------------------- /assets/images/speakers/sumit-das.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/sumit-das.jpg -------------------------------------------------------------------------------- /assets/images/speakers/sumit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/sumit.jpg -------------------------------------------------------------------------------- /assets/images/speakers/swanand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/swanand.jpg -------------------------------------------------------------------------------- /assets/images/speakers/swanand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/swanand.png -------------------------------------------------------------------------------- /assets/images/speakers/tony.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/tony.jpg -------------------------------------------------------------------------------- /assets/images/speakers/torstenruger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/torstenruger.jpg -------------------------------------------------------------------------------- /assets/images/speakers/vagmi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/vagmi.jpg -------------------------------------------------------------------------------- /assets/images/speakers/victor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/victor.jpg -------------------------------------------------------------------------------- /assets/images/speakers/zzak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/speakers/zzak.jpg -------------------------------------------------------------------------------- /assets/images/sponsors/amura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/amura.png -------------------------------------------------------------------------------- /assets/images/sponsors/bigbinary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/bigbinary.png -------------------------------------------------------------------------------- /assets/images/sponsors/chillr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/chillr.png -------------------------------------------------------------------------------- /assets/images/sponsors/codemancers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/codemancers.png -------------------------------------------------------------------------------- /assets/images/sponsors/coupa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/coupa.jpg -------------------------------------------------------------------------------- /assets/images/sponsors/coupa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/coupa.png -------------------------------------------------------------------------------- /assets/images/sponsors/cybrilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/cybrilla.png -------------------------------------------------------------------------------- /assets/images/sponsors/digitalocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/digitalocean.png -------------------------------------------------------------------------------- /assets/images/sponsors/gojek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/gojek.png -------------------------------------------------------------------------------- /assets/images/sponsors/jetbrains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/jetbrains.png -------------------------------------------------------------------------------- /assets/images/sponsors/josh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/josh.png -------------------------------------------------------------------------------- /assets/images/sponsors/limo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/limo-logo.png -------------------------------------------------------------------------------- /assets/images/sponsors/limo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/limo.png -------------------------------------------------------------------------------- /assets/images/sponsors/maropost.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45 | -------------------------------------------------------------------------------- /assets/images/sponsors/mavenhive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/mavenhive.jpg -------------------------------------------------------------------------------- /assets/images/sponsors/mavenhive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/mavenhive.png -------------------------------------------------------------------------------- /assets/images/sponsors/mavenhive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NewLogo_MavenHive_2018 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /assets/images/sponsors/pepipost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/pepipost.png -------------------------------------------------------------------------------- /assets/images/sponsors/qwinix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/qwinix.png -------------------------------------------------------------------------------- /assets/images/sponsors/red-panthers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/red-panthers.png -------------------------------------------------------------------------------- /assets/images/sponsors/ruby-garage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/ruby-garage.png -------------------------------------------------------------------------------- /assets/images/sponsors/scripbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/sponsors/scripbox.png -------------------------------------------------------------------------------- /assets/images/staff/ajey-gore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/staff/ajey-gore.jpg -------------------------------------------------------------------------------- /assets/images/staff/anuja-joshi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/staff/anuja-joshi.jpeg -------------------------------------------------------------------------------- /assets/images/staff/gautam-rege.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/staff/gautam-rege.jpeg -------------------------------------------------------------------------------- /assets/images/staff/niranjan-paranjape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/staff/niranjan-paranjape.jpg -------------------------------------------------------------------------------- /assets/images/staff/prathamesh-sonpatki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/staff/prathamesh-sonpatki.jpg -------------------------------------------------------------------------------- /assets/images/staff/prithvi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/staff/prithvi.jpg -------------------------------------------------------------------------------- /assets/images/staff/satish-talim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/staff/satish-talim.jpg -------------------------------------------------------------------------------- /assets/images/staff/shweta-kale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/staff/shweta-kale.jpg -------------------------------------------------------------------------------- /assets/images/staff/sidu-ponnappa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/staff/sidu-ponnappa.jpg -------------------------------------------------------------------------------- /assets/images/supporter/rubygarage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/assets/images/supporter/rubygarage.png -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- 1 | //jQuery to collapse the navbar on scroll 2 | $(window).scroll(function() { 3 | if ($(".navbar").offset().top > 50) { 4 | $(".navbar-fixed-top").addClass("top-nav-collapse"); 5 | } else { 6 | $(".navbar-fixed-top").removeClass("top-nav-collapse"); 7 | } 8 | }); 9 | 10 | //jQuery for page scrolling feature - requires jQuery Easing plugin 11 | $(function() { 12 | $('.page-scroll a').bind('click', function(event) { 13 | var $anchor = $(this); 14 | $('html, body').stop().animate({ 15 | scrollTop: $($anchor.attr('href')).offset().top 16 | }, 1500, 'easeInOutExpo'); 17 | event.preventDefault(); 18 | }); 19 | 20 | $("a[rel='tooltip']").tooltip(); 21 | }); 22 | 23 | $(".closeQR").click(function(){ 24 | if( $(this).find('i').hasClass("fa-angle-right") ){ 25 | $(this).find('i').removeClass("fa-angle-right").addClass("fa-angle-left"); 26 | $(".QR").animate({ 'right': '-230px'},'slow'); 27 | }else if($(this).find('i').hasClass("fa-angle-left")){ 28 | $(this).find('i').removeClass("fa-angle-left").addClass("fa-angle-right"); 29 | $(".QR").animate({ 'right': '0px'},'slow'); 30 | } 31 | return false; 32 | }); 33 | -------------------------------------------------------------------------------- /call-for-proposal/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Call for Proposal 4 | --- 5 | 6 | {% include pages/call_for_proposal_index.html %} 7 | -------------------------------------------------------------------------------- /code-of-conduct/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Code of Conduct 4 | meta_title: RubyConfIndia - Code of Conduct 5 | meta_description: > # 6 | We are committed to providing a safe environment for everyone 7 | regardless of gender, race, nationality, religion, disability, 8 | appearance or sexual orientation. 9 | --- 10 | 11 | 12 | {% include pages/code_of_condect_index.html %} 13 | -------------------------------------------------------------------------------- /community-in-india/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Ruby Community in India 4 | meta_title: RubyConfIndia - Community in India 5 | meta_description: > # 6 | We have vibrant Ruby community in India. 7 | Want to join us? Check out the local meetups. 8 | --- 9 | 10 | {% include pages/community_in_india_index.html %} 11 | -------------------------------------------------------------------------------- /faq/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: FAQ 4 | meta_title: RubyConfIndia - FAQ 5 | meta_description: > # 6 | FAQ regarding conference including ticketing, tweets, talks and event schedule. 7 | --- 8 | 9 | {% include pages/faq_index.html %} 10 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/favicon.ico -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | --- 4 | 5 | 6 | 7 | {{ site.title | xml_escape }} 8 | {{ site.description | xml_escape }} 9 | {{ site.url }}{{ site.baseurl }}/ 10 | 11 | {{ site.time | date_to_rfc822 }} 12 | {{ site.time | date_to_rfc822 }} 13 | Jekyll v{{ jekyll.version }} 14 | {% for post in site.posts limit:10 %} 15 | 16 | {{ post.title | xml_escape }} 17 | {{ post.content | xml_escape }} 18 | {{ post.date | date_to_rfc822 }} 19 | {{ post.url | prepend: site.baseurl | prepend: site.url }} 20 | {{ post.url | prepend: site.baseurl | prepend: site.url }} 21 | {% for tag in post.tags %} 22 | {{ tag | xml_escape }} 23 | {% endfor %} 24 | {% for cat in post.categories %} 25 | {{ cat | xml_escape }} 26 | {% endfor %} 27 | 28 | {% endfor %} 29 | 30 | 31 | -------------------------------------------------------------------------------- /google0d15c9ef2069136d.html: -------------------------------------------------------------------------------- 1 | google-site-verification: google0d15c9ef2069136d.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Welcome 4 | --- 5 | 6 | 7 | {% include home/intro.html %} 8 | 9 | 10 | {% include home/about.html %} 11 | 12 | 13 | {% include home/speakers.html %} 14 | 15 | 16 | {% include home/sponsors.html %} 17 | 18 | 19 | {% include home/contact.html %} 20 | -------------------------------------------------------------------------------- /individuals/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: SUPPORTERS 4 | meta_title: RubyConfIndia - Supporters 5 | meta_description: > # 6 | Help us build next genertation rubyists. 7 | Support the young and bright students to attend rubyconfIndia by donating. 8 | --- 9 | 10 | {% include pages/individuals_index.html %} 11 | -------------------------------------------------------------------------------- /pdf/RCI17SponsorshipProspectus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/pdf/RCI17SponsorshipProspectus.pdf -------------------------------------------------------------------------------- /pdf/RCI18SponsorshipProspectus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/pdf/RCI18SponsorshipProspectus.pdf -------------------------------------------------------------------------------- /pdf/RCI19SponsorshipProspectus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyconfindia/2019/382fda34c0528f358abc2f14b7a93d94648dcea9/pdf/RCI19SponsorshipProspectus.pdf -------------------------------------------------------------------------------- /previous-conference/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Previous Conference 4 | meta_title: RubyConfIndia - Previous Conferences 5 | meta_description: > # 6 | RubyConfIndia started in 2010, you can check out all amazing previous conferences. 7 | --- 8 | 9 | {% include pages/previous_conforence_index.html %} 10 | -------------------------------------------------------------------------------- /program/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Program 4 | --- 5 | 6 | {% include pages/rci_program_index.html %} 7 | -------------------------------------------------------------------------------- /rci-program/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Ruby Hero Award 4 | --- 5 | 6 | 7 | {% include pages/ruby_hero_award_index.html %} -------------------------------------------------------------------------------- /ruby-hero-award/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Ruby Hero Award 4 | --- 5 | 6 | 7 | {% include pages/ruby_hero_award_index.html %} -------------------------------------------------------------------------------- /scholarship/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Scholarship 4 | meta_title: RubyConfIndia - Student Scholarship 5 | meta_description: > # 6 | As part of RubyConfIndia's commitment to encourage students in India 7 | to excel in computing and technology, we are offering student scholarships. 8 | --- 9 | 10 | {% include pages/scholarship_index.html %} 11 | -------------------------------------------------------------------------------- /staff-information/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Staff Information 4 | meta_title: RubyConfIndia - Organizers 5 | meta_description: > # 6 | If the matter is especially urgent, please contact any of these individuals. 7 | --- 8 | 9 | {% include pages/staff_information_index.html %} 10 | -------------------------------------------------------------------------------- /talk-schedule/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Talk Schedule 4 | --- 5 | 6 | {% include pages/talk_schedule_index.html %} 7 | -------------------------------------------------------------------------------- /travelling-to-kochi/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Travelling to Kochi 4 | --- 5 | 6 | {% include pages/travelling_to_kochi_index.html %} 7 | -------------------------------------------------------------------------------- /venue/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Venue 4 | meta_title: RubyConfIndia - Venue 5 | meta_description: > # 6 | Here is venue for RubyConfIndia, we are excited to see you! 7 | --- 8 | 9 | {% include pages/venue_index.html %} 10 | --------------------------------------------------------------------------------