REFERENCES FOR LEARNING & USING APPLESCRIPT Modified: 2018/06/19 18:47
AppleScript is a rather peculiar scripting language to learn.
| to convertDate(textDate) | |
| if length of textDate is 4 then | |
| set textDate to "1/1/" & textDate | |
| end if | |
| set resultDate to my date textDate | |
| return resultDate | |
| end convertDate | |
| to surname(textName) | |
| set r to textName |
| # It is show-the-point demo for my article | |
| # "On DataFrame datatype in Ruby" http://zverok.github.io/blog/2016-01-10-dataframe.html | |
| require 'good_data_frame' # `require': cannot load such file -- good_data_frame (LoadError) | |
| # Initialization (with default index): hashes of column: values | |
| # Values of each column are homogenous | |
| # First and most important thing is "what columns is" | |
| table = GDF.new( | |
| manager: ['Tom', 'Jerry', 'Magda'], |
| #!/usr/bin/python | |
| # encoding: utf-8 | |
| # | |
| # Copyright (c) 2013 <deanishe@deanishe.net>. | |
| # | |
| # MIT Licence. See http://opensource.org/licenses/MIT | |
| # | |
| # Created on 2013-11-01 | |
| # |
| ———————————————————————————————————————————————————————————————————————————————————————————————————— | |
| BBEdit / BBEdit-Lite / TextWrangler Regular Expression Guide Modified: 2018/08/10 01:19 | |
| ———————————————————————————————————————————————————————————————————————————————————————————————————— | |
| NOTES: | |
| The PCRE engine (Perl Compatible Regular Expressions) is what BBEdit and TextWrangler use. | |
| Items I'm unsure of are marked '# PCRE?'. The list while fairly comprehensive is not complete. |