Ideia é disponibilizar catálogo dos bancos de dados sob gestão da unidade, e unidades subordinadas, consolidando cultura de Data Science Analytics
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "peru/windows-10-enterprise-x64-eval" | |
config.vm.synced_folder "data", "/vagrant_data" | |
config.vm.provider "virtualbox" do |vb| | |
# Display the VirtualBox GUI when booting the machine | |
vb.gui = true | |
# Customize the amount of memory on the VM: |
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
tap "buo/cask-upgrade" | |
tap "burntsushi/ripgrep", "https://github.com/BurntSushi/ripgrep.git" | |
tap "domt4/autoupdate" | |
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-drivers" | |
tap "homebrew/cask-eid" | |
tap "homebrew/cask-fonts" | |
tap "homebrew/cask-versions" | |
tap "homebrew/core" |
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/sh | |
# script to change the sleep mode of an OS X machine | |
usage () { | |
echo "supported sleep modes:" | |
echo " sleep" | |
echo " safesleep" | |
echo " hibernate" | |
echo " secure" | |
echo " insecure" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
$ git remote -v
origin https://github.com/symfony/demo.git (fetch)
origin https://github.com/symfony/demo.git (push)
$ composer licenses
A way to make adminer not ask for any of credentials, using default values for: fake-username, fake-password and sqlite file database path.
- Download
adminer.php
, put in the same folder ofindex.php
(root) and set the correct filename there; - Download
plugin.php
and put it in plugins folder; - Move
auto-login.php
andlogin-sqlite.php
into plugins folder; - Set correct sqlite file database path.
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
<?php | |
namespace Alura\Doctrine\Mapping; | |
use Alura\Doctrine\Entity\Aluno; | |
use Alura\Doctrine\Entity\Curso; | |
use Alura\Doctrine\Entity\Telefone; | |
use Alura\Doctrine\Repository\AlunoRepository; | |
use LaravelDoctrine\Fluent\EntityMapping; | |
use LaravelDoctrine\Fluent\Fluent; |
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
<?php | |
$_GET["username"] = ""; | |
$_GET["db"] = "database"; | |
function adminer_object() { | |
class AdminerAutoLogin extends Adminer { | |
function credentials() { | |
return array("127.0.0.1", "username", "password"); | |
} | |
function login($login, $password) { | |
return true; |