I hereby claim:
- I am posva on github.
- I am posva (https://keybase.io/posva) on keybase.
- I have a public key whose fingerprint is F92A 0A3D 8D7F 3C01 AEBD E539 59AF 6DFC 8A56 282D
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Two Vue Apps, One Pinia</title> | |
</head> | |
<body> | |
<script src="https://unpkg.com/[email protected]/dist/vue.global.js"></script> |
# Javascript Node 8 simple CircleCI 2.0 configuration file | |
# Eduardo San Martin Morote | |
# Check https://circleci.com/docs/2.0/language-javascript/ for more details | |
# Put this file in a .circleci/ folder | |
version: 2 | |
jobs: | |
build: | |
docker: |
I hereby claim:
To claim this, I am signing this object:
Install the needed packages
npm i --save-dev nightwatch selenium-server chromedriver
Create a e2e-tests
dir:
mkdir e2e-tests
#!/bin/bash | |
# Script for installing tmux on systems where you don't have root access. | |
# tmux will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
TMUX_VERSION=1.9 |
#! /bin/bash | |
L=$(echo index_a6_se_ast.html index_a6_se_tst.html js_a6_se_ast/*.js js_a6_se_tst/*.js js/lib/qtBinding.js js/lib/nuntius.js js_a6_se_tst/css/main.css json/README.md json/genjs.sh json/genjson.py json/a6JSONValidator.js) | |
N=$(cat $L | wc -l) | |
echo "Total $N" | |
old='' | |
for i in $L; do | |
T=$(wc -l $i) | |
lines=$(echo "$T" | cut -d " " -f1) |
#! /bin/sh | |
WHEN=$(stat -c "%Y" report.tex) | |
while true; do | |
NOW=$(stat -c "%Y" report.tex) | |
if [ "$NOW" -gt "$WHEN" ]; then | |
make | |
fi | |
WHEN="$NOW" | |
sleep 1 |
" fill rest of line with characters | |
function! FillLine( str, l ) | |
" strip trailing spaces first | |
.s/[[:space:]]*$// | |
" calculate total number of 'str's to insert | |
let reps = (a:l - col("$")) / len(a:str) | |
" insert them, if there's room, removing | |
" trailing spaces (though forcing | |
" there to be one) | |
if reps > 0 |
var diff = function(a, b) { | |
var c = [], dels = [], delsIndex = []; | |
var i = 0, j = 0, k, | |
x, y, z; | |
var t = 0; //debug | |
while (i < a.length || j < b.length) { | |
x = a[i]; | |
y = b[j]; | |
t++; |
set-window-option -g utf8 on | |
set-window-option -g mode-keys vi | |
set -s escape-time 0 | |
setw -g window-status-current-attr underscore | |
set-option -g default-terminal "screen-256color" | |
set-option -g status-interval 5 | |
set -g pane-active-border-fg white |