Skip to content

Instantly share code, notes, and snippets.

View DewofyourYouth's full-sized avatar
:octocat:
Pluckin' banjo or crafting a tinfoil hat. Also, sometimes I code. ;)

Jacob E. Shore DewofyourYouth

:octocat:
Pluckin' banjo or crafting a tinfoil hat. Also, sometimes I code. ;)
  • Dew of your Youth
  • Bet Shemesh, Israel
View GitHub Profile
@DewofyourYouth
DewofyourYouth / html.json
Created March 9, 2018 14:47
VSCode Snippets for Making Emails w/ GroupMail and Active Campaign Variables
"Active Campaign Variable": {
"prefix": "acv",
"body": "%$1%",
"description": "Make an AC Variable"
},
"GroupMail Variable": {
"prefix": "gmv",
"body": "!*$1*!",
"description": "Make a GM Variable"
},
@DewofyourYouth
DewofyourYouth / index.html
Last active November 7, 2018 23:36
The Roman Numerator
<div id="main">
<div class="container-fluid">
<div class="row" style="border-bottom: solid #ccc .5px;">
<div class="col-md-6 text-center numerator">
<h1>{{title}}</h1>
<input class="form-control" v-model="number" placeholder="insert number here"></div>
<div class="col-md-6 text-center" style="width: 100%;">
<h1>{{roman | uppercase}}</h1>
<hr>
<p class="display-4">{{number | roman}}</p> </div>
@DewofyourYouth
DewofyourYouth / index.html
Created March 23, 2018 07:52
Local Weather
<div class="container-fluid text-center">
&nbsp;
<h1 id="title" style="color: #ffffff;">Yer Locil Wethr</h1>
<div class="white">
<h3>
<span id='icon'><img src="https://cdn.glitch.com/6e8889e5-7a72-48f0-a061-863548450de5%2F10n.png?1499366021399"></span>
<h2><span id="city">Somewhere,</span><span id="country"> OT</span></h2>
<h3><span id="temp">100</span>&nbsp;<button id="metr-toggle" class="btn btn-secondary">C</button>&nbsp;&nbsp;|&nbsp;&nbsp;<span id="desc">Rain</span><span id="tempfar"></span>
</h3>
</div></div>
@DewofyourYouth
DewofyourYouth / hex_rgb.py
Created June 20, 2018 11:51
HEX RGB Conversion
def get_hex(red, green, blue):
rgb = [red, green, blue]
hex_val = '#'
for color in rgb:
hex_val += hex(color)[2:]
print(hex_val)
get_hex(209, 212, 211)
@DewofyourYouth
DewofyourYouth / index.html
Last active July 9, 2018 15:33
video section
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="text-primary">Event Videos</h1><br>
</div>
</div>
<div class="row">
<div class="col-md-4 event"><button type="button" class="gradient-css" role="button" data-toggle="modal" data-target="#myModal"><i data-feather="play-circle"></i> Play</button></div>
@DewofyourYouth
DewofyourYouth / 3-modal-youtube-videos.markdown
Last active November 7, 2018 23:37
3 Modal YouTube Videos

3 Modal YouTube Videos

A layout for 3 modal videos from YouTube, Uses Bootstrap4, jQuery and feather icons.

The YouTube videos stop playing when you close the modal.

A Pen by Yaakov Shore on CodePen.

License.

Gematria Converter

Converts integers between 499 to gematria strings.

Part of an app I'm developing to keep track of your progress through Shas.

@DewofyourYouth
DewofyourYouth / gematria-converter-refactored.markdown
Created August 6, 2018 18:26
Gematria Converter (refactored)
@DewofyourYouth
DewofyourYouth / index.html
Created October 18, 2018 14:48
Multiplication Table - Web School
<div class="container">
<div class="row">
<div class="col-12">
<div id="multi-table"> </div>
</div>
</div>
</div>
@DewofyourYouth
DewofyourYouth / index.html
Last active October 29, 2018 15:13
Time Calculator
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<input type="text" id="time">
<h1 id="display"></h1>