Skip to content

Instantly share code, notes, and snippets.

View hiamitchaurasia's full-sized avatar
💭
Open for side projects

Amit Chaurasia hiamitchaurasia

💭
Open for side projects
  • UBS AG
  • Navi Mumbai
  • 22:18 (UTC +05:30)
View GitHub Profile
@hiamitchaurasia
hiamitchaurasia / !First Steps in Scala.md
Created December 11, 2019 18:30 — forked from SuperBonsaii/!First Steps in Scala.md
Instruction and Code For the Course First Steps in Scala

Welcome

Hello Learner,

This is the home for all our code samples that we prepare for our YouTube Channel. Hope you find them useful.

Please look at our work at bonsaiilabs and let us know if there is anything that we can do to help you get better, smarter, and faster!

Thank you
bonsaiilabs team

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Using TheMovieDB</title>
<meta name="viewport" content="width=device-width">
<!-- API version 3 documentation:
https://developers.themoviedb.org/3/search
https://developers.themoviedb.org/3/movies
-->
@hiamitchaurasia
hiamitchaurasia / Email Gel Script
Created November 10, 2019 12:58 — forked from roughcompass/Email Gel Script
Sample GEL script to send an email.
<gel:script
xmlns:gel="jelly:com.niku.union.gel.GELTagLibrary"
xmlns:jelly="jelly:core"
xmlns:mail="jelly:email">
<!-- email vars -->
<jelly:set var="emailFrom" value="me@myworld.com" />
<jelly:set var="emailTo" value="you@yourworld.net" />
<jelly:set var="emailServer" value="your.email.server.com" />