One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| name := "DES and AES encryption in Scala" | |
| version := "1.0" | |
| scalaVersion := "2.9.1" | |
| libraryDependencies += "commons-codec" % "commons-codec" % "1.6" |
| mpg | cylinders | displacement | horsepower | weight | acceleration | model_year | origin | name | |
|---|---|---|---|---|---|---|---|---|---|
| 18 | 8 | 307 | 130 | 3504 | 12 | 70 | 1 | chevrolet chevelle malibu | |
| 15 | 8 | 350 | 165 | 3693 | 11.5 | 70 | 1 | buick skylark 320 | |
| 18 | 8 | 318 | 150 | 3436 | 11 | 70 | 1 | plymouth satellite | |
| 16 | 8 | 304 | 150 | 3433 | 12 | 70 | 1 | amc rebel sst | |
| 17 | 8 | 302 | 140 | 3449 | 10.5 | 70 | 1 | ford torino | |
| 15 | 8 | 429 | 198 | 4341 | 10 | 70 | 1 | ford galaxie 500 | |
| 14 | 8 | 454 | 220 | 4354 | 9 | 70 | 1 | chevrolet impala | |
| 14 | 8 | 440 | 215 | 4312 | 8.5 | 70 | 1 | plymouth fury iii | |
| 14 | 8 | 455 | 225 | 4425 | 10 | 70 | 1 | pontiac catalina |
| #!/usr/bin/env python | |
| # | |
| # Very basic example of using Python and IMAP to iterate over emails in a | |
| # gmail folder/label. This code is released into the public domain. | |
| # | |
| # RKI July 2013 | |
| # http://www.voidynullness.net/blog/2013/07/25/gmail-email-with-python-via-imap/ | |
| # | |
| import sys | |
| import imaplib |
| package com.liberorignanese.android.gist; | |
| import android.graphics.Canvas; | |
| import android.graphics.Paint; | |
| import android.text.style.ReplacementSpan; | |
| /** | |
| * Created by Libero Rignanese. | |
| */ |
| DB2 SQL-Error: -007 SQLState: 42601 | |
| Short Description: STATEMENT CONTAINS THE ILLEGAL CHARACTER | |
| The specified 'character' is not a valid character in SQL statements. System action: The statement cannot be executed. Programmer response: Correct the syntax and resubmit the statement. Refer to Chapter 2 of DB2 SQL Reference for information about the valid SQL character set. | |
| DB2 SQL-Error: -010 SQLState: 42603 | |
| Short Description: THE STRING CONSTANT BEGINNING IS NOT TERMINATED | |
| The statement contains a string constant, beginning with 'string', that is not terminated properly. System action: The statement cannot be executed. Programmer response: Examine the statement for missing quotation marks or apostrophes in the indicated string constant. | |
| DB2 SQL-Error: -029 SQLState: 42601 | |
| Short Description: INTO CLAUSE REQUIRED |
| { | |
| "info": { | |
| "_postman_id": "07c117b0-7200-41b9-94fc-5836a6b08d7b", | |
| "name": "Kafka Rest Proxy API", | |
| "description": "Adapted from https://docs.confluent.io/current/kafka-rest/api.html", | |
| "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | |
| }, | |
| "item": [ | |
| { | |
| "name": "v2", |
| #!/bin/bash | |
| set -oue pipefail | |
| INFO='\033[0;36m' # Cyan for general information | |
| SUCCESS='\033[0;32m' # Green for success messages | |
| WARN='\033[0;33m' # Yellow for warnings | |
| ERROR='\033[0;31m' # Red for errors | |
| NC='\033[0m' # No Color | |
| echo "This script will help you set up 1Password in a Flatpak browser." |
This is not my work, but I wanted to share it here because it's a great hack. I found it on this 1Password forum thread. The original author is Sn0wCrack.