I hereby claim:
- I am jbasko on github.
- I am jbasko (https://keybase.io/jbasko) on keybase.
- I have a public key ASCG6JaPj_Yn7o53c-omTdE900qmWFTal4bHwtRK2OJjlgo
To claim this, I am signing this object:
Sub ResetFindParameters(oRng As Range) | |
With oRng.Find | |
.ClearFormatting | |
.Replacement.ClearFormatting | |
.Text = "" | |
.Replacement.Text = "" | |
.Forward = True | |
.Wrap = wdFindStop | |
.Format = False | |
.MatchCase = False |
import itertools | |
frakcijas = [ | |
("JV", 26), | |
("ZZS", 16), | |
("AS", 15), | |
("NA", 13), | |
("S!", 11), | |
("LPV", 9), | |
("PRO", 10), |
/** | |
* Generate index based on multiple inflections of the same term. | |
* Requires http://underscorejs.org/ (with export statement removed) to be placed in the specified path. | |
* | |
*/ | |
#target indesign; | |
#include "/path/to/underscore.js" | |
var _ = this._; |
""" | |
Dabūt laukā visus terminu locījumus no tezaurs.lv | |
""" | |
from typing import List | |
import requests | |
import dataclasses | |
API = "https://api.tezaurs.lv/v1/inflections/" |
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://unpkg.com/[email protected]/konva.min.js"></script> | |
<meta charset="utf-8" /> | |
<title>Konva Drop</title> | |
<style> | |
body { | |
margin: 0; |
I hereby claim:
To claim this, I am signing this object:
import math | |
from kivy.base import runTouchApp | |
from kivy.clock import Clock | |
from kivy.lang import Builder | |
from kivy.properties import ObjectProperty, StringProperty | |
from kivy.uix.boxlayout import BoxLayout | |
from kivy.uix.recycleview import RecycleView | |
import collections | |
from typing import Iterable | |
class Vertex: | |
def __init__(self, value, graph: "Graph"): | |
self._graph = graph | |
self.value = value | |
def __hash__(self): |
cd ~
pyenv global 3.6.6 3.7.0
pip install tox
cd ~/workspace/xxx/project-name
pyenv local 3.6.6 3.7.0
tox
def filter1(r): | |
return r % 3 == 0 | |
def filter2(r): | |
return r % 5 == 0 | |
def apply_all(records, *filters): |