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
import json | |
from datetime import datetime | |
input_file = 'bitwarden_export_original.json' | |
output_file = 'output.json' | |
# These columns are ignored when comparing if two entries are the same. | |
# - Ids are unique, so always different | |
# - revisionDate and creationDate tend to be slighly apart between entries | |
columns_to_ignore = ["id", "revisionDate", "creationDate"] |
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
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Camilo A. Sampedro", | |
"label": "Experienced Risk Engineer and Backend Developer specializing in functional programming", | |
"image": "http://camilosampedro.github.io/img/8657866.png", | |
"email": "[email protected]", | |
"url": "http://camilosampedro.github.io/", | |
"summary": "I'm a software developer with experience in Scala, Java, Golang, and JavaScript. I've worked with a pseudo-SCRUM methodology, handling both backend and frontend projects. I'm skilled in software testing and debugging, and I'm well-versed in a variety of software development tools and frameworks", | |
"location": { |
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
{ | |
"workbench.settings.useSplitJSON": true, | |
"window.zoomLevel": 1, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code Regular, Liga Hack, Consolas, monospace", | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"name": "Comment", | |
"scope": [ |
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
// https://stackoverflow.com/a/33755463/4474204 | |
// https://stackoverflow.com/a/33755463/4474204 | |
var fs = require("fs"); | |
var parse = require("csv-parse"); | |
var async = require("async"); | |
var AWS = require("aws-sdk"); | |
var csv_filename = "data.csv"; | |
rs = fs.createReadStream(csv_filename); |
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
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
let g:terraform_align=1 | |
set number | |
highlight LineNr term=bold cterm=NONE ctermfg=129 ctermbg=NONE gui=NONE guifg=DarkGrey guibg=NONE | |
set numberwidth=1 | |
set backspace=indent,eol,start | |
set clipboard=unnamed | |
"set paste |
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
# i3status configuration file. | |
# see "man i3status" for documentation. | |
# It is important that this file is edited as UTF-8. | |
# The following line should contain a sharp s: | |
# ß | |
# If the above line is not correctly displayed, fix your editor first! | |
general { | |
colors = true |
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/sh | |
exec scala "$0" "$@" | |
!# | |
/* | |
This script creates a SQL output with a format: | |
INSERT INTO table (columns, ...) | |
VALUES | |
(values, ...), |
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
#!/usr/bin/php -q | |
<?php | |
set_time_limit(30); | |
$param_error_log = '/tmp/notas.log'; | |
$param_debug_on = 1; | |
require('phpagi.php'); | |
require('yandex.php'); | |
require("definiciones.inc"); | |
$agi = new AGI(); |
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
#!/usr/bin/php -q | |
<?php | |
set_time_limit(30); | |
$param_error_log = '/tmp/notas.log'; | |
$param_debug_on = 1; | |
require('phpagi.php'); | |
require("definiciones.inc"); | |
$agi = new AGI(); | |
$agi->answer(); | |
sleep(1); |
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 | |
# Variables | |
activator_version="1.3.12" | |
mysql_password="atonmysqldb" | |
# Install java | |
echo " => Installing Java 8" | |
echo " ==> Adding webupd8team/java repository" | |
sudo add-apt-repository ppa:webupd8team/java | |
echo " ==> Updating with the added repository" |
NewerOlder