View PythonCommandLineArgumentParser.py
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
#!/usr/bin/env python3 | |
""" | |
Implement command argument parser | |
""" | |
__author__ = "Aarsh Talati" | |
__version__ = "1.0.0" | |
__license__ = "GNU General Public License v3.0" | |
import sys |
View index.html
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>All patients</title> | |
<!--/*/ <th:block th:include="fragments/header :: head"></th:block> /*/--> | |
</head> | |
<body> | |
<!--/*/ <th:block th:include="fragments/header :: header"></th:block> /*/--> | |
<div class="table-responsive"> |
View imdb_pandas.py
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 pandas as pd | |
import numpy as np | |
import csv | |
basics_file_loc = 'title.basics.tsv' # https://datasets.imdbws.com/title.basics.tsv.gz | |
ratings_file_loc = 'title.ratings.tsv' # https://datasets.imdbws.com/title.ratings.tsv.gz | |
basics_fields = ['tconst', 'titleType', 'primaryTitle', | |
'originalTitle', 'startYear', 'genres'] | |
df_basics = pd.read_table(basics_file_loc, sep='\t', engine='c', skipinitialspace=True, usecols=basics_fields, dtype={ |
View Xaniel-Mate-tweak.panel
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
[general] | |
object-id-list=['firefox', 'notification-area', 'indicatorappletcomplete', 'clock', 'show-desktop', 'window-list', 'workspace-switcher', 'trashapplet', 'object-1', 'object_0'] | |
toplevel-id-list=['top', 'bottom'] | |
[toplevels/bottom] | |
expand=true | |
orientation='bottom' | |
screen=0 | |
y-bottom=0 | |
size=28 |
View Xaniel-Mate-tweak.layout
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
[Toplevel top] | |
orientation=top | |
expand=true | |
size=28 | |
[Toplevel bottom] | |
orientation=bottom | |
expand=true | |
size=28 |
View 12-autologin.conf
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
# create /etc/lightdm/lightdm.conf.d/12-autologin.conf, if it doesn't exist | |
# sudo nano /etc/lightdm/lightdm.conf.d/12-autologin.conf | |
[SeatDefaults] | |
autologin-user=username | |
# source: https://askubuntu.com/a/456957/490067 |
View PersonController.java
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
package edu.gatech.epidemics.controllers; | |
import org.springframework.stereotype.Controller; | |
import org.springframework.web.bind.annotation.GetMapping; | |
/** | |
* @author atalati | |
*/ | |
@Controller | |
public class PersonController { |
View PersonApiController.java
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
package edu.gatech.epidemics.api; | |
import edu.gatech.epidemics.entities.Person; | |
import edu.gatech.epidemics.service.PersonService; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.core.env.Environment; | |
import org.springframework.http.HttpStatus; | |
import org.springframework.http.MediaType; | |
import org.springframework.http.ResponseEntity; | |
import org.springframework.web.bind.annotation.*; |
View header.html
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
<!DOCTYPE html> | |
<html lang="en" xmlns:th="http://thymeleaf.org"> | |
<head lang="en" th:fragment="head"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta http-equiv="Content-Type" content="text/html"; charset="UTF-8"> | |
<link rel="stylesheet" href="/webjars/bootswatch/3.3.7/flatly/bootstrap.min.css"> | |
<link rel="stylesheet" href="/webjars/toastr/2.1.0/toastr.min.css"> | |
</head> | |
<body> |
View docker_compose_mysql_error.txt
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
Trying to reach FHIR server at fhir:8080... | |
Trying to reach FHIR server at fhir:8080... | |
Trying to reach FHIR server at fhir:8080... | |
Trying to reach FHIR server at fhir:8080... | |
Trying to reach FHIR server at fhir:8080... | |
Trying to reach FHIR server at fhir:8080... | |
Trying to reach FHIR server at fhir:8080... | |
Trying to reach FHIR server at fhir:8080... | |
Trying to reach FHIR server at fhir:8080... | |
Trying to reach FHIR server at fhir:8080... |
NewerOlder