This file contains hidden or 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
/** | |
* Simple Java query builder for Play! Framework | |
* | |
* Author: Daniele Napolitano <[email protected]> | |
* | |
* Features: | |
* | |
* Support for SELECT, INSERT, UPDATE and DELETE statements. | |
* No support for multiple tables, JOINs, GROUP BY | |
* WHEREs concatenated only with AND |
This file contains hidden or 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
#!/bin/bash | |
# sites to check | |
site=( | |
"www.google.com" | |
"www.github.com" | |
# insert here other sites... | |
) | |
# color costants |
This file contains hidden or 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
#!/usr/bin/env python | |
# Uses OpenSC pkcs11 generic library and pkcs11 python wrapper | |
# Print personal data from che italian CNS smart card (new health card) | |
from PyKCS11 import LowLevel | |
import sys | |
def getPersonalData(p11, slot): |