I hereby claim:
- I am velppa on github.
- I am pavelpopov (https://keybase.io/pavelpopov) on keybase.
- I have a public key whose fingerprint is 2C74 B3C9 FE3B 6AA7 49B3 8C8D 24E1 5BAB 2BA4 7B95
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| declare | |
| l_xml xmltype; | |
| l_json clob; | |
| begin | |
| apex_json.initialize_clob_output; | |
| select XMLElement("obj", | |
| XMLForest( | |
| XMLForest( | |
| 12345 as "id" |
| #!/bin/bash | |
| # File: rbc.15.m.sh | |
| # Description: Plugin for BitBar (github.com/matryer/bitbar) displaying russian | |
| # stock-market indicators from rbc.ru | |
| # Author: github.com/schmooser | |
| # Dependencies: | |
| # jq - github.com/stedolan/jq | |
| # pup - github.com/EricChiang/pup | |
| # (install them using brew install jq pup) | |
| # They should be added in PATH |
| SQL> with s as ( | |
| select 1 a, 10 b from dual union all | |
| select 20 a, 30 b from dual union all | |
| select 30 a, 40 b from dual union all | |
| select 50 a, 60 b from dual union all | |
| select 55 a, 57 b from dual union all | |
| select 65 a, 75 b from dual union all | |
| select 70 a, 80 b from dual union all | |
| select 75 a, 85 b from dual | |
| ) |
| # Install tmux on Centos release 6.5 | |
| # install deps | |
| yum install gcc kernel-devel make ncurses-devel | |
| # DOWNLOAD SOURCES FOR LIBEVENT AND MAKE AND INSTALL | |
| curl -OL https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz | |
| tar -xvzf libevent-2.0.21-stable.tar.gz | |
| cd libevent-2.0.21-stable | |
| ./configure --prefix=/usr/local |
The trigger body is a PL/SQL block in which you can issue both SQL and PL/SQL statements from the trigger body. You can also call a stored procedure or a Java procedure from the trigger body. You can also invoce a procedure developed using object-oriented languages, such as C.
USER_PROCEDURES and USER_OBJECTS views - object status is in USER_OBJECTS
| package main | |
| import ( | |
| "fmt" | |
| "golang.org/x/tour/tree" | |
| ) | |
| func walk(t *tree.Tree, ch chan int) { | |
| if t.Left != nil { | |
| walk(t.Left, ch) |
| package main | |
| import "fmt" | |
| import "strconv" | |
| import "math" | |
| //maxInt takes []int and returns maximum integer stacking | |
| //them in any order | |
| func maxInt(nums []int) int { | |
| if len(nums) == 0 { |
| I thought I'd write about the last four years, an eventful time for Bitcoin and | |
| me. | |
| For those who don't know me, I'm Hal Finney. I got my start in crypto working on | |
| an early version of PGP, working closely with Phil Zimmermann. When Phil decided | |
| to start PGP Corporation, I was one of the first hires. I would work on PGP | |
| until my retirement. At the same time, I got involved with the Cypherpunks. I | |
| ran the first cryptographically based anonymous remailer, among other | |
| activities. |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Notebook</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> |