Skip to content

Instantly share code, notes, and snippets.

@franzwong
franzwong / getpassExample.py
Created September 30, 2012 14:53
no password is shown when typing in console
import getpass
password = getpass.getpass('enter password: ')
@franzwong
franzwong / python_cheatsheet.md
Last active August 19, 2021 10:31
Python cheatsheet

Python cheatsheet

  • for loop
for i in xrange(10):
  print i
@franzwong
franzwong / mainScript.sql
Created September 29, 2012 03:50
Sample for persisting CLOB with PL/SQL
DECLARE
documentId DOCUMENT.ID%TYPE;
documentName DOCUMENT.NAME%TYPE := 'python cheatsheet';
documentFileName VARCHAR2(1024 CHAR) := 'python.html';
documentFile BFILE;
documentClob CLOB;
sourceOffset INTEGER := 1;
destinationOffset INTEGER := 1;
@franzwong
franzwong / DocumentDAO.java
Created September 28, 2012 14:20
Sample for persisting CLOB with pure JDBC
package example.clob001;
import java.math.BigDecimal;
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.Path;
import java.sql.Clob;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;