This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this is a test gist, it do not contain any sensitive information | |
sample password=xoxb-738473847384738-9384938493483948-834928abs38948394-8734873483iuwieuwe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<style> | |
.itembox{ | |
margin-bottom: 10px; | |
} | |
</style> | |
<div class="wrapperBox"> | |
<div class="itembox"><input type="text" class="item" /></div> | |
<div class="itembox"><input type="text" class="item" /></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE replace [<!ENTITY example "Doe"> ]> | |
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> | |
<channel> | |
<title>TEST BLOG</title> | |
<link>javascript:alert(document.domain)</link> | |
<description>A blog about things</description> | |
<lastBuildDate>Mon, 03 Feb 2014 00:00:00 -0000</lastBuildDate> | |
<item> | |
<title>First post</title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Posts{ | |
constructor(){ | |
this.json_string = '{"records":[{"b_id":"1","t_id":"1","fullname":"Husain Amreliwala","telephone":"8169164372","email":"[email protected]","arr_time":"5:15 AM","pickup_time":"0","airline":"British Airways","flight_no":"BA741","adult":"1","infant":"0","children":"0","elderly":"0","trip_type":"Drop Off","source":"","destination":"Wayne Mansion, Kampala","amount":"1266","status":"not started"},{"b_id":"19","t_id":"3","fullname":"Micheal Pena","telephone":"8523697411","email":"[email protected]","arr_time":"","pickup_time":"2019-01-25, 02:14 AM","airline":"KLM Airways","flight_no":"KLM35","adult":"2","infant":"0","children":"0","elderly":"0","trip_type":"Drop off","source":"Pena Estate, Kampala","destination":"","amount":"1266","status":"not started"},{"b_id":"20","t_id":"3","fullname":"Joshua Price","telephone":"987456321","email":"[email protected]","arr_time":"2019-01-30 08:08 PM","pickup_time":"","airline":"Jet Airways","flight_no":"J12349","adult":"3","infant":"1","c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<stdlib.h> | |
struct node{ | |
int value; | |
struct node *next; | |
}; | |
struct node *HEAD = NULL; | |
struct node *temp, *y; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<string.h> | |
char *reverse(char str[]){ | |
static char result[100]; | |
int start, end, i, j=0; | |
int len = strlen(str) - 1; | |
start = end = i = len; //starting from the end of the string. | |
while(i >= 0){ | |
if(str[i] == ' '){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tensorflow as tf | |
batch_size = 128 | |
no_classes = 10 | |
epochs = 2 | |
image_height, image_width = 28, 28 | |
(x_train, y_train), (x_test, y_test) = tf.keras.datasets.mnist.load_data() | |
x_train = x_train.reshape(x_train.shape[0], image_height, image_width, 1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
author : Mohammed Shibli | |
Date: 14-04-2018 | |
""" | |
import numpy as np | |
class LIRegressor: | |
sum_dependent = [] |