Skip to content

Instantly share code, notes, and snippets.

View tolufakiyesi's full-sized avatar

Tolu Fakiyesi tolufakiyesi

  • Ife
View GitHub Profile
import sys
from awsglue.transforms import *
from awsglue.utils import getResolvedOptions
from pyspark.context import SparkContext
from awsglue.context import GlueContext
from awsglue.job import Job
from pyspark.sql.functions import *
from awsglue.dynamicframe import DynamicFrame
@tolufakiyesi
tolufakiyesi / error.php
Created August 26, 2017 18:49
My problem today
<?php foreach ($journals as $journal) : ?>
<tr>
<td><?= $this->user_model->get_username_from_user_id($journal->author_id) ?></td>
<td><a href = "" target="_blank" > <?= $journal->title ?> </a> </td>
<td><?= $journal->date ?></td>
<td>
<button type="button" class="btn btn-sm btn-icon btn-flat btn-default" data-toggle="tooltip"
data-original-title="View"
class Human():
"""
This is the super class all other classes inherit from
"""
def __init__(self):
def sex(self, sex):
self.sex = sex
def age(self, age):