Skip to content

Instantly share code, notes, and snippets.

View strideynet's full-sized avatar
⛷️
Wishin I was skiin'

Noah Stride strideynet

⛷️
Wishin I was skiin'
View GitHub Profile

Keybase proof

I hereby claim:

  • I am strideynet on github.
  • I am strideynet (https://keybase.io/strideynet) on keybase.
  • I have a public key ASBJ7Xu5t_0DtWBlCH6suAYW0O4e6zWUIUIQGUUFcZ2EpQo

To claim this, I am signing this object:

@strideynet
strideynet / System Data Parser.js
Created October 25, 2018 06:39
System data parser
const fs = require('fs')
const readline = require('readline')
const parse = require('fast-json-parse')
const path = require('path')
function readdir(location, options) {
return new Promise((resolve, reject) => {
fs.readdir(location, options, (err, files) => {
if (err) return reject (err)
<template>
<div id="navbar">
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
@strideynet
strideynet / palindroime.py
Created September 9, 2017 12:49
Palindrome Finder
# Module to find nearest palindrome
number = int(input('Enter number to find next palindrome: '))
added = 0
while True:
if str(number + added) == str(number + added)[::-1]:
break
else:
added = added + 1