Skip to content

Instantly share code, notes, and snippets.

View scoaband's full-sized avatar
💭
Project day with Python

Jhonny scoaband

💭
Project day with Python
  • Scoaband Developers
  • Orlando FL
View GitHub Profile
@scoaband
scoaband / BalancedParentheses.cpp
Created February 1, 2020 06:14 — forked from mycodeschool/BalancedParentheses.cpp
C++ Program to check for balanced parentheses in an expression using stack.
/*
C++ Program to check for balanced parentheses in an expression using stack.
Given an expression as string comprising of opening and closing characters
of parentheses - (), curly braces - {} and square brackets - [], we need to
check whether symbols are balanced or not.
*/
#include<iostream>
#include<stack>
#include<string>
using namespace std;
<!DOCTYPE html>
<html>
<head>
<title>Sound -</title>
</head>
<body>
<div>Frequence: <span id="frequency"></span></div>
<button type="button" id="play" onclick="play()">Play</button>
<!DOCTYPE html>
<html>
<head><title>SOUND</title></head>
<body>
<div>Frequence: <span id="frequency"></span></div>
<script type="text/javascript">
var audioCtx = new (window.AudioContext || window.webkitAudioContext)();
var oscillatorNode = audioCtx.createOscillator();
var gainNode = audioCtx.createGain();
@scoaband
scoaband / index.html
Created December 20, 2018 07:32
WebGL data visualization
<div id="content">
<!-- canas -->
<div id="paint"></div>
<!-- text -->
<div id="wrapper">
<div class="flex">
<div id="controls">
@scoaband
scoaband / index.html
Created December 20, 2018 07:18
Real Estate Flyer Template
<div class="container">
<main>
<img src="http://www.directcommercialfunding.com/images/apartment-building-loans.jpg" alt="apartment building" />
<div class="for-sale">
<header>
<i class="fa fa-home"></i>
<h3><span class="blue">DESIGNYEP</span><br /> PROPERTY</h3>
</header>
<h1><span class="blue light-weight">FOR</span><br /> <strong>SALE</strong></h1>
<h4>OFFERED AT</h4>
@scoaband
scoaband / homenote-js-example.markdown
Created December 20, 2018 07:15
Homenote.js Example
@scoaband
scoaband / index.html
Created December 20, 2018 07:12
Mortgage Calculator
<div class="dm-widget">
<h2>Mortgage Calculator</h2>
<div id="dm-form-container" class="dm-form-container">
<form class="dm-form">
<fieldset id="dm-amount-field">
<label for="dm-amount" class="dm-form-label">Mortgage Amount: ($)</label>
<input class="dm-form-input" id="dm-amount" type="text" placeholder="Mortgage Amount ($)" value="300000">
</fieldset>
<fieldset id="dm-rate-field">
<label for="dm-rate" class="dm-form-label">Interest Rate: (%)</label>
@scoaband
scoaband / index.html
Created December 20, 2018 07:05
Real Estate Template
<!-- SITE HEADER -->
<header class="site-header">
<nav class="site-nav navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#site-nav" aria-expanded="false">
<span class="sr-only">Menu</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
@scoaband
scoaband / index.markdown
Created December 20, 2018 07:04
Real Estate Landing Page

McLennan & Company

@scoaband
scoaband / angular-mortgage-calculator.markdown
Created December 20, 2018 06:59
Angular Mortgage Calculator

Angular Mortgage Calculator

Angular App developed for a real estate client, calculates your monthly mortgage payments in a USD amount. App based on the mortgage equation M = P[i(1+i)^n]/[(1+i)^n -1]. In the future variables such as insurance rates, property tax, and down payments can also be applied. Now includes down payment option.

A Pen by Peter Girnus on CodePen.

License.