Skip to content

Instantly share code, notes, and snippets.

View saminwankwo's full-sized avatar

Nwankwo Samuel saminwankwo

View GitHub Profile
@saminwankwo
saminwankwo / file.php
Last active April 23, 2021 08:05
a simple class to convert number to ords
<?php
//simple class to convert number to words in php based on http://www.karlrixon.co.uk/writing/convert-numbers-to-words-with-php/
if ( !class_exists('NumbersToWords') ){
/**
* NumbersToWords
*/
class NumbersToWords{
public static $hyphen = '-';
public static $conjunction = ' and ';
@saminwankwo
saminwankwo / index.html
Created September 21, 2022 11:04 — forked from iamsaso/index.html
GraphiQL with JWT
<!DOCTYPE html>
<html>
<head>
<style>
body {
height: 100%;
margin: 0;
width: 100%;
overflow: hidden;
}
// src/components/Navbar.js
import React from 'react';
const Navbar = () => {
return (
<nav className="bg-blue-600 sticky top-0 z-50 shadow-md">
<div className="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
<div className="relative flex items-center justify-between h-16">
<div className="absolute inset-y-0 left-0 flex items-center sm:hidden">