Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
/* | |
Needs Hibernate 5.2.11.Final | |
*/ | |
public List<ObjectNode> getQuery( | |
Integer anno, | |
Integer settimana) { | |
Query q = em.createNativeQuery( | |
"NATIVE SQL....",Tuple.class); |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
-- see https://github.com/ankidroid/Anki-Android/wiki/Database-Structure for a more maintained version of this | |
-- cards are what you review. easy! | |
CREATE TABLE cards ( | |
id integer primary key, | |
-- the epoch milliseconds of when the card was created | |
nid integer not null, | |
-- notes.id | |
did integer not null, | |
-- deck id (available in col table) |
nexus: | |
build: ./nexus | |
ports: | |
- "18081:8081" | |
jenkins: | |
build: ./jenkins | |
ports: | |
- "18080:8080" | |
links: |
http://d.stavrovski.net/blog/post/how-to-install-and-setup-oracle-java-jdk-in-centos-6 | |
# rpm | |
wget --no-cookies \ | |
--no-check-certificate \ | |
--header "Cookie: oraclelicense=accept-securebackup-cookie" \ | |
"http://download.oracle.com/otn-pub/java/jdk/7u55-b13/jdk-7u55-linux-x64.rpm" \ | |
-O jdk-7-linux-x64.rpm | |
# ubuntu |