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
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: app | |
name: app | |
namespace: portals | |
spec: | |
progressDeadlineSeconds: 600 |
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 java.util.*; | |
import java.util.stream.Collectors; | |
public class TableRelation { | |
public static void main(String[] args) { | |
ArrayList<Table> tablesList = new ArrayList<Table>(); | |
// tableColumnDetails |
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>Nightwatch HTML Report - Default Theme</title> | |
<style type="text/css">body{ | |
margin: 10px; | |
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | |
font-size: 0.8em; | |
} |
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
// we set up the data fetch and hand the data | |
// to our main function | |
const fetch = require('node-fetch'); | |
const getRedditJSONUrl = url => url.replace(/\/?$/, '.json'); | |
const fetchData = url => fetch(url).then(response => response.json()); | |
const extractPosts = redditPage => redditPage.data.children; |