This contains list of countries outside Schengen/EU area where VISA is NOT required for EU permanent residents.
- Turkey - VISA on arrival
- Cuba - Tourist Card
- Mexico
| // Prompt: Write a Javascript code that fetches all issues from Jira with a given filter, | |
| // finds the last edited value in Description field and reverts to that value | |
| import fetch from 'node-fetch'; | |
| const JIRA_DOMAIN = 'your-domain.atlassian.net'; | |
| const API_TOKEN = 'your-api-token'; | |
| const EMAIL = '[email protected]'; | |
| const headers = { | |
| 'Authorization': `Basic ${Buffer.from(`${EMAIL}:${API_TOKEN}`).toString('base64')}`, |
| #!/usr/bin/env python | |
| from dataclasses import dataclass | |
| @dataclass | |
| class Baby: | |
| name: str | |
| birthday: str | |
| mother: str = "Mother's name" |
pipenv install git+ssh://[email protected]/chhantytal/[email protected]#egg=parq
pipenv install git+ssh://[email protected]/chhantytal/parquet-cli.git@master#egg=parq
Works for pip as well.
| #!/bin/bash | |
| # Idea to copy all source files (packages in different repos) in once place | |
| # and use setup.py located in project to build single egg file. | |
| temp_dir=/tmp/ira/ | |
| curr_dir=$(pwd) | |
| dist_dir=${curr_dir}/dist/ | |
| # Copy project to a dir |
sqljdbc_{version}/enu/jre{version}/sqljdbc{version}.jarThere are few ways to use it.
mv {SPARK_HOME}/conf/spark-defaults.conf.template {SPARK_HOME}/conf/spark-defaults.confspark.driver.extraClassPath /path/to/sqljdbc.jar to spark-defaults.confWe collect 10€ from each participants.
https://www.kicktipp.com/vi-worldcup/
Collected money will be distributed to highest point earners based on kicktip ranking.
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "ubuntu/artful64" | |
| config.vm.network "forwarded_port", guest: 9090, host: 9090 | |
| config.vm.provision "shell", inline: <<-SHELL | |
| apt update |
| // npm install request | |
| let request = require('request') | |
| let range = n => Array.from(Array(n).keys()) | |
| data = range(1000) | |
| data.forEach(function (item) { | |
| request.get("https://httpbin.org/ip", function (error, response, body){ | |
| console.log("Request " + item + " complete.") |