Skip to content

Instantly share code, notes, and snippets.

View voidnerd's full-sized avatar
:octocat:
Debugging

Ndifreke Friday voidnerd

:octocat:
Debugging
View GitHub Profile
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="https://kit.fontawesome.com/e4a7d3234e.js" crossorigin="anonymous"></script>
<title>Kiitec Email Template</title>
<style>
@media only screen and (max-width: 620px) {
table[class=body] h1 {
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# https://www.nginx.com/resources/wiki/start/
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
# https://wiki.debian.org/Nginx/DirectoryStructure
#
# In most cases, administrators will remove this file from sites-enabled/ and
# leave it as reference inside of sites-available where it will continue to be
# updated by the nginx packaging team.
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# https://www.nginx.com/resources/wiki/start/
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
# https://wiki.debian.org/Nginx/DirectoryStructure
#
# In most cases, administrators will remove this file from sites-enabled/ and
# leave it as reference inside of sites-available where it will continue to be
# updated by the nginx packaging team.
@voidnerd
voidnerd / hook.json
Created February 4, 2020 11:03 — forked from Afaara/hook.json
{
"event": "charge.success",
"data": {
"id": 84,
"domain": "test",
"status": "success",
"reference": "9cfbae6e-bbf3-5b41-8aef-d72c1a17650g",
"amount": 50000,
"message": null,
"gateway_response": "Approved",
import React from "react";
import MapView from "react-native-maps";
import {
StyleSheet,
Image,
TouchableOpacity,
View,
Dimensions
} from "react-native";
import {
import React from "react";
import MapView from "react-native-maps";
import {
StyleSheet,
Image,
TouchableOpacity,
View,
Dimensions
} from "react-native";
import {
import React from "react";
import MapView from "react-native-maps";
import {
StyleSheet,
Image,
TouchableOpacity,
View,
Dimensions
} from "react-native";
import {
import React from "react";
import MapView from "react-native-maps";
import {
StyleSheet,
Image,
TouchableOpacity,
View,
Dimensions
} from "react-native";
import {
{
"name": "expo",
"displayName": "expo",
"expo": {
"name": "xxxxx",
"icon": "./src/assets/android-icon-144x144.png",
"slug": "xxx",
"privacy": "unlisted",
"sdkVersion": "36.0.0",
"version": "1.0.0",
const doWhileBubbleSort = arr => {
let swapped;
do {
swapped = false;
for (let i = 0; i < arr.length; i++) {
let next = i + 1;
if (arr[i] > arr[next]) {
let temp = arr[i];
arr[i] = arr[next];
arr[next] = temp;