This file contains 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
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 2 | |
indent_style = space | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
quote_type = single |
This file contains 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 | |
# First, download, extract and join the resource path | |
wget https://github.com/pgmodeler/pgmodeler/archive/refs/tags/v0.9.4.tar.gz -O pgmodeler-0.9.4.tar.gz | |
tar -zxvf pgmodeler-0.9.4.tar.gz | |
cd pgmodeler-0.9.4 | |
# Get the plugins project using git | |
git clone https://github.com/pgmodeler/plugins.git |
This file has been truncated, but you can view the full file.
This file contains 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
SET UTF-8 | |
TRY áàãâéêíóõôúüçesianrtolcdugmphbyfvkwjqxz | |
# VERO - Verificador Ortográfico Livre - Versão 3.2 | |
# Copyright (C) 2006 - 2013 por Raimundo Santos Moura | |
# <[email protected]> | |
# Brasil - outubro 2013 | |
# Este é um dicionário para correção ortográfica da língua Portuguesa | |
# para o Hunspell. | |
# Este programa é livre e pode ser redistribuído e/ou modificado nos |
This file contains 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 App\Controller; | |
class AppController extends Controller | |
{ | |
/** | |
* Initialization hook method. | |
* | |
* Use this method to add common initialization code like loading components. | |
* |
This file contains 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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
*.class | |
*.pyo |
This file contains 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 App\Database\Type; | |
use Cake\Database\Driver; | |
use Cake\Database\Type; | |
use PDO; | |
class TsvectorType extends Type | |
{ |
This file contains 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
object(App\Model\Entity\Article) { | |
'new' => true, | |
'accessible' => [ | |
[maximum depth reached] | |
], | |
'properties' => [ | |
[maximum depth reached] | |
], | |
'dirty' => [ |
This file contains 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 | |
# Run this script as root | |
# ADD REPOSITORY | |
zypper ar -f http://download.opensuse.org/repositories/server:/monitoring/openSUSE_13.1/ Monitoring | |
zypper refresh | |
# INSTALL ALL RELATED PACKAGES | |
zypper in gearmand-server gearmand-server-mysql gearmand-server-postgresql gearmand-server-sqlite3 gearmand-tools gearmand-devel |
This file contains 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 | |
require('Vendor/autoload.php'); | |
$phpWord = new \PhpOffice\PhpWord\PhpWord(); | |
$phpWord->setDefaultFontName('Calibri'); | |
$phpWord->setDefaultFontSize(14); | |
$phpWord->addFontStyle('normal', array( | |
'color' => '000000', | |
'bold' => false, |
This file contains 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 | |
class MyStat { | |
protected static $_data = ['initial' => 'default']; | |
public static function set($key, $value) { | |
self::$_data[$key] = $value; | |
} | |
public static function get($key) { | |
if (isset(self::$_data[$key])) { |
NewerOlder