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
# ============================================================================= | |
# π Documentation | |
# ============================================================================= | |
# This Makefile is designed to support Go projects of any size, from small | |
# personal projects to large enterprise applications. It provides a comprehensive | |
# set of targets for development, testing, building, and deployment. | |
# | |
# Quick Start: | |
# 1. Copy this Makefile to your project | |
# 2. Create a .env file for local overrides (optional) |
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
<!-- | |
π Pull Request Template | |
======================== | |
Thank you for contributing to [REPO NAME HERE]! Please follow this template to ensure a smooth and efficient review process. | |
β Please delete any sections that are not relevant to your PR. | |
--> | |
## π Description |
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
package main | |
import ( | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"os" | |
"path/filepath" | |
"strings" | |
) |
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 { Router } from 'express'; | |
import passport from 'passport'; | |
import isAuth from '../middleware/isAuth'; | |
import validateToken from '../middleware/validateToken'; | |
import search from '../middleware/search'; | |
const fetch = require('node-fetch'); | |
const Sub = require(`${process.cwd()}/models/Subscriptions`); | |
const Events = require(`${process.cwd()}/models/EventModel`); |
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
-- DBF Sem 1 2019 | |
-- Schema Definition | |
-- New Endor Integrated Data Infrastructure | |
DROP TABLE MODEL CASCADE CONSTRAINTS; | |
DROP TABLE LOCATION CASCADE CONSTRAINTS; | |
DROP TABLE TICKET CASCADE CONSTRAINTS; | |
DROP TABLE ROUTE CASCADE CONSTRAINTS; | |
DROP TABLE IRREGULAR_EVENT CASCADE CONSTRAINTS; | |
DROP TABLE SERVICE CASCADE CONSTRAINTS; |
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
package com.myhospital; | |
import java.util.ArrayList; | |
import java.util.Scanner; | |
public class Main { | |
private static ArrayList<Patient> allPatients = new ArrayList<>(); | |
private static ArrayList<Department> allDepartments = new ArrayList<>(); |
NewerOlder