Skip to content

Instantly share code, notes, and snippets.

View saminwankwo's full-sized avatar

Nwankwo Samuel saminwankwo

View GitHub Profile
@saminwankwo
saminwankwo / index.html
Created August 7, 2018 23:57
Javascript Calculator
<h1>JavaScript Calculator</h1>
<p class="warning">Don't divide by zero</p>
<div id="calculator" class="calculator">
<button id="clear" class="clear">C</button>
<div id="viewer" class="viewer">0</div>
<button class="num" data-num="7">7</button>
@saminwankwo
saminwankwo / checkleapyear.java
Last active July 12, 2018 07:21
code to determine whether the given year is leap year or not.
public class DetermineLeapYearExample {
public static void main(String[] args) {
//year we want to check
int year = 2004;
//if year is divisible by 4, it is a leap year
if((year % 400 == 0) || ((year % 4 == 0) && (year % 100 != 0)))
@saminwankwo
saminwankwo / datetime.java
Last active July 10, 2018 20:41
A demo code to calculate user's year, date and time of birth
package com.root.datetime;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.time.Instant;
import java.time.LocalDate;
import java.time.Period;
import java.time.ZoneId;
import java.util.Date;
@saminwankwo
saminwankwo / a2dp.py
Created April 20, 2018 13:24 — forked from pylover/a2dp.py
Fixing bluetooth stereo headphone/headset problem in ubuntu 16.04, 16.10 and also debian jessie, with bluez5.
#! /usr/bin/env python3.5
"""
Fixing bluetooth stereo headphone/headset problem in ubuntu 16.04 and also debian jessie, with bluez5.
Workaround for bug: https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1577197
Run it with python3.5 or higher after pairing/connecting the bluetooth stereo headphone.
This will be only fixes the bluez5 problem mentioned above .