I'm writing this up from memory, so errors may appear.
This has been updated to use SHA256 certificates.
- Go to http://www.startssl.com/
- Click on 'Control Panel'
cd $HOME | |
ln -s `which php56` ~/bin/php | |
export PATH=$HOME/bin:$PATH | |
curl -sS https://getcomposer.org/installer | php56 | |
echo -e "\n# Composer\nalias composer=\"php56 \$HOME/composer.phar\"" >> $HOME/.bash_profile | |
source $HOME/.bash_profile |
var debug = process.env.NODE_ENV !== "production"; | |
var webpack = require('webpack'); | |
module.exports = { | |
context: __dirname, | |
devtool: debug ? "inline-sourcemap" : null, | |
entry: "./js/scripts.js", | |
output: { | |
path: __dirname + "/js", | |
filename: "scripts.min.js" |
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# Uncomment the following line if you don't like systemctl's auto-paging feature: | |
# export SYSTEMD_PAGER= |
(load-theme 'wombat) | |
(setq frame-title-format "emacs") | |
(load-theme 'wombat) | |
(setq frame-title-format "emacs") | |
;(menu-bar-mode -1) | |
;(tool-bar-mode -1) | |
(scroll-bar-mode -1) | |
(set-default 'cursor-type 'hbar) | |
(ido-mode) | |
(column-number-mode) |
I'm writing this up from memory, so errors may appear.
This has been updated to use SHA256 certificates.
using System.Data.Entity; | |
namespace WebMigrationTest.Models | |
{ | |
public class Album | |
{ | |
[Key] public int AlmbumId { get; set; } | |
[Required()] |
import Vuex from 'vuex' | |
import { shallow, createLocalVue } from 'vue-test-utils' | |
import State from './State.vue' | |
const localVue = createLocalVue() | |
localVue.use(Vuex) | |
describe('State', () => { | |
it('renders a value from $store.state', () => { | |
const wrapper = shallow(State, { | |
mocks: { | |
$store: { |
This issue still exists, but I don't know if this is PMA or something else, anyway as workaround: | |
``` | |
$ docker-compose exec mysql bash | |
$ mysql -u root -p | |
``` | |
You should be able to login as 'root' or your other password. | |
Execute the following commands: |
(function schedule() { | |
background.asyncStuff().then(function() { | |
console.log('Process finished, waiting 5 minutes'); | |
setTimeout(function() { | |
console.log('hacer post cada 5 minutos'); | |
this.post("/url/para/ejecutar/logs") | |
}, 1000 * 60 * 5); | |
}).catch(err => console.error('error in scheduler', err)); | |
})(); |
<?php | |
namespace Tests\Feature; | |
use Tests\TestCase; | |
use Illuminate\Foundation\Testing\WithFaker; | |
use Illuminate\Foundation\Testing\RefreshDatabase; | |
class ExamenesPostTest extends TestCase | |
{ |