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
PostgreSQL database server provides pg_dump and psql utilities for backup and restore databases. This article will describe various ways to use of pg_dump command to backup database. Also you will learn how to restore datbase backup. | |
Backup and Restore Database in PostgreSQL | |
Below is some connections options which you can use for connecting remote server or authenticated server with all queries given in this article. | |
-d, –dbname=DBNAME database name | |
-h, –host=HOSTNAME database server hostname or ip | |
-p, –port=PORT database server port number (default: 5432) | |
-U, –username=NAME connect as specified database user | |
-W, –password force password prompt |
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
package com.gabesechan.android.reusable.receivers; | |
import java.util.Date; | |
import android.content.BroadcastReceiver; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.telephony.TelephonyManager; | |
public abstract class PhonecallReceiver extends BroadcastReceiver { |
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
{ | |
*************************************************** | |
* A binary compatible SHA1 implementation * | |
* written by Dave Barton ([email protected]) * | |
*************************************************** | |
* 160bit hash size * | |
*************************************************** | |
} | |
unit SHA1; |
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 | |
# | |
# Script para deploy de Rails 3.2.17 | |
# nos servidores compartilhados da Kinghost | |
# Desenvolvido por Gustavo Kuklinski (@tuxlinski) | |
# http://www.kuklinski.com.br | |
# | |
# Até o momento o Script apenas funciona caso você tenha mais de UMA aplicação | |
# criada pelo painel de controle! |