Skip to content

Instantly share code, notes, and snippets.

View gentisaliu's full-sized avatar

Genti Saliu gentisaliu

  • FIS Systeme GmbH
  • Frankfurt am Main, Germany
View GitHub Profile
@gentisaliu
gentisaliu / WAVFile.cs
Created February 3, 2016 17:26
Class for manipulating WAV files
/* This file contains the WAVFile class and related things. The WAVFile class
* allows manipulation of WAV audio files. I used the following web pages as
* resources on the WAV file format:
* http://ccrma.stanford.edu/courses/422/projects/WaveFormat
* http://www.sonicspot.com/guide/wavefiles.html
* http://technology.niagarac.on.ca/courses/ctec1631/WavFileFormat.html
* http://www.ringthis.com/dev/wave_format.htm
*
* Date Author Description
* 2009-03-09 erico Created
array(4) {
["email"]=>
array(1) {
[0]=>
string(22) "The email is required."
}
["password"]=>
array(1) {
["first"]=>
array(1) {
@gentisaliu
gentisaliu / gist:6989423
Created October 15, 2013 10:08
Asset generated with symfony 2.3.3 (the correct one)
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */
/* ==========================================================================
HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined in IE 8/9.
*/
article,
aside,
details,
@gentisaliu
gentisaliu / gist:6989396
Created October 15, 2013 10:05
Asset generated with symfony 2.3.6 (the problematic one)
}
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
color: white; }
button.alert, .button.alert {
background-color: #c60f13;
border-color: #970b0e;
color: white; }
button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
text-decoration: none;
background-color: #970b0e; }
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace KontrataDheFatura_KESH.Views.NewContract