I hereby claim:
- I am rasjani on github.
- I am rasjani (https://keybase.io/rasjani) on keybase.
- I have a public key whose fingerprint is A742 6AA2 6A34 1F2B D5A3 73D2 412E B561 EAE2 70F5
To claim this, I am signing this object:
| import re | |
| from PIL import Image | |
| from natsort import natsorted | |
| from pathlib import Path | |
| import subprocess | |
| # convert 1-2.png -crop 2x1@ out-%d.png | |
| # convert etukansi.png -background white -page a5 etu.pdf |
| function(get_version JSONFILE OUTVAR) | |
| file(READ ${JSONFILE} _data) | |
| string(REGEX MATCH "\"version\": \"(.*)\"," _version ${_data}) | |
| string(REPLACE "\"" ";" _data ${CMAKE_MATCH_1}) | |
| list(GET _data 0 _version) | |
| set(${OUTVAR} "${_version}" PARENT_SCOPE) | |
| endfunction() |
| *** Settings *** | |
| Library String | |
| Test Template Do Something With The Test Data | |
| *** Test Cases *** MYSTR | |
| Test Case With Star Trek as Input String Star Trek | |
| Test Case With Star Wars as Input String Star Wars | |
| Test Case With PErry Rhodan as Input String Perry Rhodan | |
| *** Keywords *** |
| @{ITEMS} Create List Star Trek Star Wars Perry Rhodan | |
| FOR ${ELEMENT} IN @{ITEMS} | |
| ${ELEMENT} Replace String ${ELEMENT} ${SPACE} ${EMPTY} | |
| Log ${ELEMENT} | |
| END |
| # place this into /etc/profile.d/pathext_handler.sh | |
| command_not_found_handle() { | |
| res=127 | |
| cmd=$1 | |
| if [ ! -z "${PATHEXT-x}" ]; then | |
| cmd=$1 | |
| shift | |
| OIFS=$IFS | |
| IFS=';' | |
| for ext in ${PATHEXT}; do |
I hereby claim:
To claim this, I am signing this object:
| Grunt-webpack to load these: | |
| ./config/grunt/webpack.js | |
| ./config/webpack.conf.js | |
| Currently using canjs from grunt build: | |
| clone canjs repo | |
| build it: | |
| * npm install |