Atom has a config not in the UI: core.restorePreviousWindowsOnStart
.
Set this to false
in your config.cson
file in order to start Atom in a blank state when you launch Atom.
package main | |
import ( | |
"context" | |
"fmt" | |
"github.com/oracle/oci-go-sdk/common" | |
"github.com/oracle/oci-go-sdk/common/auth" | |
"github.com/oracle/oci-go-sdk/core" | |
) |
package main | |
import ( | |
"context" | |
"fmt" | |
"github.com/oracle/oci-go-sdk/common" | |
"github.com/oracle/oci-go-sdk/common/auth" | |
"github.com/oracle/oci-go-sdk/identity" | |
) |
declare | |
begin | |
for i in | |
1..3<b>, | |
7..10</b> | |
loop | |
dbms_output.put_line(i); | |
end loop; | |
end; | |
/ |
List<SystemVersion> installedVersions = new List<SystemVersion>(); | |
installedVersions.Add(new SystemVersion("system17.1.123.1256")); | |
installedVersions.Add(new SystemVersion("system17.2.0.188.1159")); | |
installedVersions.Add(new SystemVersion("system4.2.123.1256")); | |
List<SystemVersion> sortedVersions = | |
installedVersions | |
.OrderByDescending(o=>o.BuildNumber.Major) | |
.ThenByDescending(o=>o.BuildNumber.Minor) | |
.ThenByDescending(o=>o.BuildNumber.MajorRevision) |
create type ot_info is object ( | |
a number, | |
b number, | |
c number, | |
map member function equals return raw | |
); | |
/ | |
create type body ot_info as |
set sqlformat ansiconsole | |
--See: http://www.aihw.gov.au/WorkArea/DownloadAsset.aspx?id=60129551915 | |
--http://meteor.aihw.gov.au/content/index.phtml/itemId/349510 | |
with raw_data as ( | |
select | |
upper('Smith') last, | |
upper('Nicholas') first, | |
to_date('29-01-1959', 'dd-mm-yyyy') dob, | |
'M' gender | |
from dual |
Atom has a config not in the UI: core.restorePreviousWindowsOnStart
.
Set this to false
in your config.cson
file in order to start Atom in a blank state when you launch Atom.
$ /home/trent/node-v0.12.2-linux-x64/bin/node app.js dev 110 | |
options { configFile: '/home/trent/apex-diff/config/config.json', | |
sqlcl: '/opt/sqlcl/bin/sql', | |
debug: true, | |
rebuildTempFile: false, | |
connections: | |
{ dev: 'dl_test/dl_test@localhost/xe', | |
prod: 'dl_prod/dl_prod@localhost/xe' } } | |
sql: { command: '%SQLCL% %CONNECTION% @%DIRECTORY%/%FILENAME% %PARAMS%', | |
files: |
declare | |
l_file files%rowtype; | |
begin | |
select * | |
into l_file | |
from files | |
where id = 261; | |
owa_util.mime_header(l_file.mime_type); |
I set up the the SSH profile:
See: sshprofile.png
Then I can set up the connection by specifying the type as SSH, successfully:
However, in the REST Admin, I don't get the SSH connection option: