Skip to content

Instantly share code, notes, and snippets.

View plcosta's full-sized avatar

Pedro Costa plcosta

  • Brazil
  • 08:35 (UTC -03:00)
View GitHub Profile
'use strict';
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
watch: {
options: {
livereload: true
},
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# hospub - debian 7
config.vm.define "hospub" do |hospub|
@plcosta
plcosta / backup openbase hospub
Last active August 29, 2015 14:08
Backup OpenBase HOSPUB
#!/bin/bash
#
# Nao esquecer de colocar na cron do root as linhas abaixo:
# #!/bin/bash
# TERM=linux
##### Area das variaveis ################################################
# Declaro a varialvel EXEC com o nome dos executaveis
EXEC="SIADM SIADT SIALM SICEC SIFAR SIFIN SIGAE SIGHO SIGUE SIINF SIMAT SINAT SINUT SISRH SSAME HOSPUB ATIVA"
@plcosta
plcosta / gist:f496c4b12b242a6cee04
Created December 20, 2014 20:11
Linux Derrubar conexões ociosas
#!/bin/bash
###################################################
# #
# Script para matar conexoes ociosas #
# #
# Nome: LIMPANDO_CONEXAO Versao 0.2 #
# by Guilherme Moura de Souza #
# Colaboradores: Tulio.Hoffimann #
# stack_of #
@plcosta
plcosta / PG::Error: ERROR: new encoding (UTF8) is incompatible
Created October 5, 2015 14:01 — forked from amolkhanorkar/PG::Error: ERROR: new encoding (UTF8) is incompatible
Postgres PG::Error: ERROR: new encoding (UTF8) is incompatible
======= Prolbem =================================================================================================================
I have installed : ruby-2.0.0,postgres-9.2 , now in rails app when I execute:
rake db:create , command I get:
PG::InvalidParameterValue: ERROR: new encoding (UTF8) is incompatible with the encoding of the template database (SQL_ASCII)
HINT: Use the same encoding as in the template database, or use template0 as template.
: CREATE DATABASE "my_db_name" ENCODING = 'unicode'.......
bin/rake:16:in `load'
<?php
namespace LaravelDoctrine\ORM\Configuration\Connections;
use Illuminate\Support\Str;
class OpensqlConnection extends Connection
{
/**
* @param array $settings
public function index()
{
DB::connection('openbase')->enableQueryLog();
$internados = Bed::where('c02codclin', '002')->get();
dd( $internados );
}
@plcosta
plcosta / Vagrantfile
Created January 5, 2016 18:17
My Vagrant File
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# hospub - debian 7
config.vm.define "hospub" do |hospub|
@plcosta
plcosta / view.php
Created February 2, 2016 11:05
Using Laravel groupBy
@section('content')
<div class="row">
@foreach($beds->groupBy('ward_id') as $key => $grouped)
<div class="col-sm-4"> <!-- ENFERMARIA -->
<div class="panel panel-default border-top-success border-bottom-success">
<div class="panel-heading"><h5 class="panel-title">{{ $key }}</h5></div>
<div class="panel-body">
@foreach($grouped as $bed)
<div class="col-sm-3">
<div style="text-align: center;">
// api/index.js
import Request from 'superagent'
export const getUser (userId) {
return Request
.get('/api/user/:userId');
}