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 json | |
import urllib | |
url = 'http://pr4e.dr-chuck.com/tsugi/mod/python-data/data/comments_168215.json' | |
input = urllib.urlopen(url).read() | |
info = json.loads(input) | |
#print info |
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> | |
#define MAX 10 | |
int choice = 0; | |
int stackBag[MAX] = {}; | |
int pos = 0; | |
int value = 0; | |
// Function for Push an Element to Stack |
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 program will calculate factorial value of a given input. Reccursive function is used in this program. | |
**/ | |
#include<stdio.h> | |
/* Main function */ | |
int main(){ | |
int n; | |
int result = 0; |
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
/** | |
--------------------------------------------------------------------------------------------------------- | |
Student Name: Md Sirajus Salayhin | |
Student ID: 1014311039 | |
Email: [email protected] | |
--------------------------------------------------------------------------------------------------------- | |
OCT 2015 ICT 5101 Assignment 1014311039 | |
--------------------------------------------------------------------------------------------------------- | |
Problem Statement (Bus Terminal): |
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
from jira import JIRA | |
import pandas as pd | |
import pdb | |
from collections import defaultdict | |
import datetime | |
import pprint | |
class ImportJiraAnalyticsData: |
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
{% load staticfiles %} | |
<html> | |
<head> | |
<title>Pycamp - 2018</title> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"> | |
<link href='//fonts.googleapis.com/css?family=Lobster&subset=latin,latin-ext' rel='stylesheet' type='text/css'> | |
<link rel="stylesheet" href="{% static 'css/base.css' %}"> | |
</head> | |
<body> |
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
{% extends 'base.html' %} | |
{% block content %} | |
<div class="jumbotron"> | |
<h1>Py Camp</h1> | |
</div> | |
<h2>{{ text }}</h2> |
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
/* Space out content a bit */ | |
body { | |
padding-top: 20px; | |
padding-bottom: 20px; | |
} | |
/* Everything but the jumbotron gets side spacing for mobile first views */ | |
.header, | |
.marketing, | |
.footer { |
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
id,created_at,updated_at | |
27199433,"2018-08-01 08:23:07","2018-08-01 08:23:07" | |
27199432,"2018-08-01 08:23:06","2018-08-01 08:23:06" | |
27199431,"2018-08-01 08:23:06","2018-08-01 08:23:06" | |
27199430,"2018-08-01 08:23:05","2018-08-01 08:23:06" | |
27199429,"2018-08-01 08:23:05","2018-08-01 08:23:05" | |
27199428,"2018-08-01 08:23:05","2018-08-01 08:23:06" | |
27199427,"2018-08-01 08:23:05","2018-08-01 08:23:05" | |
27199426,"2018-08-01 08:23:05","2018-08-01 08:23:05" | |
27199425,"2018-08-01 08:23:04","2018-08-01 08:23:05" |
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
id,created_at,updated_at | |
27187915,"2018-08-01 01:21:39","2018-08-01 01:39:14" | |
27187914,"2018-08-01 01:21:34","2018-08-01 01:21:49" | |
27187913,"2018-08-01 01:21:05","2018-08-01 01:34:49" | |
27187912,"2018-08-01 01:20:53","2018-08-01 01:39:47" | |
27187910,"2018-08-01 01:20:42","2018-08-01 01:40:06" | |
27187902,"2018-08-01 01:19:27","2018-08-01 02:17:20" | |
27187901,"2018-08-01 01:19:22","2018-08-01 01:22:00" | |
27187899,"2018-08-01 01:18:26","2018-08-01 01:45:56" | |
27187896,"2018-08-01 01:18:20","2018-08-01 02:24:43" |