layout | title | description | tags | ||
---|---|---|---|---|---|
default |
SQL Style Guide |
A guide to writing clean, clear, and consistent SQL. |
|
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
'use strict'; | |
// Dependencies | |
// we can remove a dependency by using the vision | |
// package directly | |
const vision = require('@google-cloud/vision')({ | |
projectId: 'sara-bigquery', | |
keyfileName: 'keyfile.json' | |
}); | |
const fs = require('fs'); |
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
---------------------------------------------------------------------------- | |
FUNCTION fw_xml_add_child(p_parent IN XMLTYPE, p_child IN XMLTYPE) | |
---------------------------------------------------------------------------- | |
RETURN XMLTYPE | |
AS | |
l_parent_dom DBMS_XMLDOM.DOMDocument; | |
l_parent_elem DBMS_XMLDOM.DOMElement; | |
l_child_dom DBMS_XMLDOM.DOMDocument; | |
l_child_elem DBMS_XMLDOM.DOMElement; |
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
function Person(name) { | |
this.name = name; | |
} | |
Person.prototype.greet = function() { | |
console.log("Hello, my name is" + this.name); | |
} | |
// as of 2015... |
I hereby claim:
- I am moose56 on github.
- I am moose56 (https://keybase.io/moose56) on keybase.
- I have a public key ASAzAkxAUMWm1i0Uix2Y-V-2eyFwlZg0SoEVu0S-FtbGnwo
To claim this, I am signing this object:
Some notes on the process of making this change to an application.
In addition to this other changes that have been included are:
- Java 6/7 to Java 12
- Usage of HTML5
- Removal of the Trinidad component library
- Use of Maven 3.*
- Move from JDeveloper to Eclipse or IntelliJ IDEA
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
const AssetGraph = require('assetgraph'); // library to build dependency tree | |
const hashFiles = require('assetgraph-hashfiles'); // library to add hash | |
const del = require('del'); | |
// top level await calls need to be inside | |
// an async function call | |
(async () => { | |
// remove old version of dist folder so | |
// we start from a clean slate and no old |
Install OpenSSH Client optional feature
Add %SYSTEMROOT%\System32\OpenSSH\ to PATH