This file contains 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 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 | |
This file contains 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
<?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" |
This file contains 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 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): |