- First download
dbfpy
: http://sourceforge.net/projects/dbfpy/files/latest/download?source=files - Then install:
sudo python setup.py install
To convert DBF file to CSV:
./dbf2csv database.dbf
dbfpy
: http://sourceforge.net/projects/dbfpy/files/latest/download?source=filessudo python setup.py install
To convert DBF file to CSV:
./dbf2csv database.dbf
#!/usr/bin/env bash | |
set -e | |
# function to easily determine if a set of programs and files are available. | |
function deploy_programs_available { | |
local programs=(npm bower grunt) | |
local files=(package.json bower.json Gruntfile.js) | |
for p in ${programs[@]}; do |
git branch -m old_branch new_branch # Rename branch locally | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
#!/usr/bin/env runhaskell | |
-- Filter that adds the metadata block as h1, h2, h3 (title, author, date). | |
-- | |
-- Usage:: | |
-- chmod +x ./chapter.hs | |
-- | |
-- # (where each chapter is in its own md file and I want to compile them | |
-- # into one document preserving the title/author/date for each chapter): | |
-- | |
-- for f in Chapter*.md; do \ |
app.directive('datepickerLocaldate', ['$parse', function ($parse) { | |
var directive = { | |
restrict: 'A', | |
require: ['ngModel'], | |
link: link | |
}; | |
return directive; | |
function link(scope, element, attr, ctrls) { | |
var ngModelController = ctrls[0]; |
#!/bin/sh | |
# Laravel 5 new project setup bash script. | |
# Inspired by Mitchell van Wijngaarden | |
# Extended by John in 't Hout | |
projectname=$1 | |
git clone -o laravel -b develop https://github.com/laravel/laravel.git ${projectname} >/dev/null | |
cd ${projectname} | |
git checkout --orphan master |
app.directive('datepickerLocaldate', [function () { | |
var directive = { | |
require: 'ngModel', | |
link: link | |
}; | |
return directive; | |
function link(scope, element, attr, ngModel) { | |
var converted = false; | |
scope.$watch( |
app.config(function($compileProvider) { | |
if (!location.host.match(/localhost/)) { | |
$compileProvider.debugInfoEnabled(false); | |
} | |
}) |
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
<?php | |
$listOfTimeZones = [ | |
'Africa'=> [ | |
'Africa/Algiers'=>'Algeria (+01:00)', | |
'Africa/Gaborone'=>'Botswana (+02:00)', | |
'Africa/Douala'=>'Cameroon (+01:00)', | |
'Africa/Bangui'=>'Central African Republic (+01:00)', | |
'Africa/Ndjamena'=>'Chad (+01:00)', | |
'Africa/Kinshasa'=>'Democratic Republic of the Congo (+01:00)', |