SlideShare une entreprise Scribd logo
1  sur  29
SignWriting in
an ASCII World!
by Stephen E Slevinski Jr
,,,,,,
o#'9MMHb':'-,o,
.oH":HH$' "' ' -*R&o,
dMMM*""'`' .oM"HM?.
,MMM' "HLbd< ?&H
.:MH ." ` MM MM&b
. "*H - &MMMMMMMMMH:
. dboo MMMMMMMMMMMM.
. dMMMMMMb *MMMMMMMMMP.
. MMMMMMMP *MMMMMP .
`#MMMMM MM6P ,
' `MMMP" HM*`,
' :MM .- ,
'. `#?.. . ..'
-. . .-
''-.oo,oo.-''
X X
X X X
X X X
X X X
X X X
X X X
X X X
X X X
X X X
X X X X X
X X X X X X
X X X X X X
X X X X X X X X
X X X X X X X X X X
X X X X X X X X X X X X
X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X
X X X X X X X X X X
X X X X X X X X
X X X X X X
X X X X X X
X X X X X X
X X X X X X
X X X X X X X X X X X
X X X X X X X X X X X
X X X X X X X X
X X X X X X X
X X X X X
X X X X X X
X X
X X X X X X X X X X X X X
X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X
X X X X X X X X X X X X X
X X X X X X X X X X
X X X X X X X X X
X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X
X X X X X X X X X X X X
X X X X X X X X X X
X X X X X X X X X X X X X X X
X X X X X X X X X X
X X X X X X X X X X X
X X X X X X X X X X X X X
X X X X X X X X X X X X X
X X X X X X X X X X X
X X X X X X X X X X X X X X
X X X
X X X X X
X X X X X X
X X X X X
X X X X X X
X X X X X X
X X X X
X X X X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X X X X X
X X X X X
X X X X X
X X X X X
X X X X X
X X X X X
X X X X X
X X X X X
X X X X X
X X X X X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X X X X
X X X X X
X X X X X X X
X X X X X X
X X X X X
X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X X X X
X X X X
X X X X
X X X X
X X X X X
X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X
X X X X X
X X X X X X
X X X X X
X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X X X
X X X X X
X X X X
X X X X
X X X X
X X X X
X X X X
X X X X
X X X X
X X X X
X X X X X X X X X X X X X X X X
X X X X X X X X X X X X X X
X X X X X X X X X X X X
X X X X X X X X X X
X X X X X X X X
X X X X X X
X X X X
X X
It’s an ASCII World!
A. Starting Point
1. ASCII
2. Regular Expressions
3. Token Patterns
4. Hexadecimal
B. Definition
1. Symbol Keys
2. Numbers
3. Formal SignWriting
4. Query Strings
ASCIIStarting Point
https://en.wikipedia.org/wiki/ASCII/
American Standard Code for
Information Interchange.
ASCII is the basis for
text processing and
standard definition.
Unicode is ASCII plus
additional characters.
ASCII is UTF-8,
character for character.
ASCII will outlive Unicode.
RegexStarting Point
https://xkcd.com/208/
It is faster to recognize
a string with regular
expressions then to
analyze a string with a
routine.
A regular expression
is used to examine
text and identify
strings that match a
stated pattern.
https://xkcd.com/208/
RegexStarting Point
Character
Match a character
0 or more times
Description
ABC* matches
AB, ABC, ABCC, ...
Example
*
Match a character
1 or more times
ABC+ matches
ABC, ABCC, ABCCC, …+
Match a character
0 or 1 times
ABC? matches
AB or ABC?
Match a character
explicit number times
AB{2} matches
ABB{#}
https://regex101.com/Test Regex Online
RegexStarting Point
Character
Match any character
from a list
Description
[ABC] matches
A, B, or C
Example
[ ]
Match any character
in a range
[A-C] matches
A, B, or C[ - ]
Create a group
for matching
A(BC)+ matches
ABC, ABCBC, ABCBCBC, …( )
Match one of
several alternatives
(AB|BC|CD) matches
AB, BC, or CD( | )
https://regex101.com/Test Regex Online
Find a number between 122 and 455
12[2-9]
Regex
122 to 129
Matches
Step 1) 10's don't match and the min
1's are not zero ( last number to 9)
1[3-9][0-9] 130 to 199Step 2) Bring up the 10's if hundreds
are different
[2-3][0-9][0-9] 200 to 399Step 3) Bring up the 100's if different
4[0-4][0-9] 400 to 449Step 4) Bring up the 10's
45[0-5] 450 to 455Step 5) Bring up the 1's
(12[1-9]|1[3-9][0-9]|[2-3][0-9][0-9]|4[0-4][0-9]|45[0-5])Final Regex
Starting Point Regex
https://regex101.com/Test Regex Online
Starting Point Token Patterns
A L M R Structural Markers
w s P Symbol Bases
i o Symbol Modifiers
n Numbers
B
A Sequence Marker
B SignBox Marker
L Left Lane Marker
M Middle Lane Marker
w Writing Base Symbol
s Sequence Base Symbol
P Punctuation Base Symbol
i Fill Modifier
o Rotation Modifier
n Number
R Right Lane Marker
Starting Point Token Patterns
Writing Symbol
w i o
Cartesian
Coordinate
n n
Starting Point Hexadecimal
Character Value
x0
x1
x2
x3
x4
x5
x6
x7
x8
x9
xA
xB
xC
xD
xE
xF
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
String Value
x00
x10
x20
x30
x40
x50
x60
x70
x80
x90
xA0
xB0
xC0
xD0
xE0
xFF
0
16
32
48
64
80
96
112
128
144
160
176
192
208
244
255
Standard numbers that we
use are base 10, using only
the 0 thru 9.
Decimal Value
Prefixed with an ‘x’,
hexadecimal characters
and strings are base 16,
using 0 thru 9 and A thru F.
Hexadecimal
Definition Symbol Key
w
s
P
i o
https://tools.ietf.org/html/draft-slevinski-signwriting-text-05#section-2.1
Symbol keys are used to
identify each of the 37,811
symbols of the ISWA 2010.
Symbols keys are built
using three tokens.
1. Symbol Base of “w”, “s”, or “P”
2. Fill Modifier of “i”
3. Rotation Modifier of “o”
i o
i o
Writing symbol
Sequence symbol
Punctuation symbol
Definition Symbol Key
S1005f
Symbol Starter
S 100
Base Fill Modifier Rotation Modifier
5 f
S[123][0-9a-f]{2}[0-5][0-9a-f]
Regex
http://signbank.org/SignWriting_Character_Viewer.html#?set=key
Symbol keys are 6
characters long.
Definition Numbers
Cartesian Coordinates
are built using two tokens.
1. Number of “n”
2. Number of “n”
Cartesian Coordinate
n n
The number characters
encode the ruler principle
for 2-dimensions.
https://tools.ietf.org/html/draft-slevinski-signwriting-text-05#section-2.2
Numbers range from 250 to 749,
with 500 being the center. 250x749
X Coordinate
250 749Y Coordinate
(250,749)
Top-Left Coordinate of symbol
Definition Numbers
500
X Coordinate
500x500
(2[5-9][0-9]|[3-6][0-9]{2}|7[0-4][0-9])
Regex for explicit number between 250 and 749
Numbers are 3
characters long.
Coordinates are 7
characters long. Y Coordinate
[0-9]{3}
[0-9]{3}x[0-9]{3}
Description Example Regex
https://tools.ietf.org/html/draft-slevinski-signwriting-text-05#section-2
According to Wikipedia, "In mathematics, computer
science, and linguistics, a formal language is a set
of strings of symbols that may be constrained by
rules that are specific to it."
Sign as Word
• Mathematical ASCII name
• Optional time for sorting
• Mandatory space for visual
Definition Formal SignWriting
w i o
Spatial symbols are built
using five tokens.
1. Symbol Base of “w”
2. Fill Modifier of “i”
3. Rotation Modifier of “o”
4. Number of “n”
5. Number of “n”
Spatial symbol
Definition Formal SignWriting
n n
Identifies a specific symbol
with coordinate information.
https://tools.ietf.org/html/draft-slevinski-signwriting-text-05#section-2.3
Used in the
Spatial Signbox
Regex
S[123][0-9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0-9]{3}
Spatial SignBox
Definition Formal SignWriting
A cluster of symbols
used in 2-dimensions
[BLMR]nn(wionn)*
Regex for Token Description
[BLMR]([0-9]{3}x[0-9]{3})(S[123][0-9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0-9]{3})*
Regex for Formal SignWriting
L M R
w
i o
n
B
Temporal Prefix
Definition Formal SignWriting
An optional ordered list of
symbols used for sorting.
(A([ws]io)+)?
Regex for Token Description
(A(S[123][0-9a-f]{2}[0-5][0-9a-f])+)?
Regex for Formal SignWriting
w
i o
A
s
AS18711S20500 M514x517S18711490x483S20500486x506
AS18711S20500M514x517S18711490x483S20500486x506
A S18711 S20500 M514x517 S18711490x483 S20500486x506
M 514x517 S18711 490x483 S20500 486x506
(514,517) (490,483) (486,506)
Time Space
Sequence
Marker
Symbol
Middle Lane
SignBox
Max
Coord
Spatial
Symbol
Definition Formal SignWriting
https://tools.ietf.org/html/draft-slevinski-signwriting-text-05#section-3
Definition Query String
The query string is a lite ASCII
markup similar to Formal SignWriting.
Formal SignWriting can be
converted into several different
query string, depending on the
search parameters.
Query strings are used to
search Formal SignWriting.
Query String
for all signs
Q
Query String for
sortable signs
QT
Formal SignWriting
Regular Expressions
Query Strings
15 to 50 times expansion
process million of characters per second
search results
Definition Query String
Q
(A(S[123][0-9a-f]{2}[0-5][0-9a-
f])+)?[BLMR]([0-9]{3}x[0-9]{3})(S[123][0-
9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0-9]{3})*
Definition Query String
The query string is a concise representation for a
much larger and detailed set of regular expressions.
When a query string returns more than one regular
expression, a filter and repeat step is required.
QS10000S20500
(A(S[123][0-9a-f]{2}[0-5][0-9a-
f])+)?[BLMR]([0-9]{3}x[0-9]{3})(S[123][0-
9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0-
9]{3})*S10000[0-9]{3}x[0-9]{3}(S[123][0-
9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0-9]{3})*
(A(S[123][0-9a-f]{2}[0-5][0-9a-
f])+)?[BLMR]([0-9]{3}x[0-9]{3})(S[123][0-
9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0-
9]{3})*S20500[0-9]{3}x[0-9]{3}(S[123][0-
9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0-9]{3})*
Two main sections of a query string
Definition Query String
Both sections use the same definition for a symbol or a range.
Spatial SignBox
Searching
Temporal Sequence
Searching
S[123][0-9a-f]{2}[0-5u][0-9a-fu]
R[123][0-9a-f]{2}t[123][0-9a-f]{2}
Search Symbol
Search Range
1-Dimensional order 2-Dimensional order
Q((A(S[123][0-9a-f]{2}[0-5u][0-9a-fu]|R[123][0-9a-f]{2}t[123][0-9a-f]{2})+)?T)?
Definition Query String
Temporal Sequence Searching
Symbol
Search
Range
Search
Fill and Rotation values of
‘u’ represent unknown and
allow all possible values.
Finds all symbols
between two specified
symbol bases
w i o w ss i o w w s s
It is possible to specify the start order of the temporal
sequence by identifying a series of symbols and/or ranges.
Q(S[123][0-9a-f]{2}[0-5u][0-9a-fu]([0-9]{3}x[0-9]{3})?|R[123][0-9a-f]{2}t[123][0-9a-f]{2}([0-9]{3}x[0-9]{3})?)*(V[0-9]+)?
Definition Query String
Spatial SignBox Searching
Symbol
Search
Optional
Coordinates
Range
Search
Optional
Coordinates
Optional
Variance
Allowable distance from
specified coordinates
Fill and Rotation values of
‘u’ represent unknown and
allow all possible values.
Specified coordinates will
limit the search results for
the previous symbol.
Finds all symbols
between two specified
symbol bases
Specified coordinates will
limit the search results for
the previous range.
w i o
n n n n
w w
It is possible to specify one or more symbols (or ranges of
symbols) that must be included in the spatial SignBox with
optional coordinates for each symbol or range.
SVG and PNG
Finds signs that use an exact
symbol in the SignBoxQS18711
Examples Query String
Query Description Results
Finds signs that use a general
base symbol in the SignBox
with any fill or rotation.
QS187uu
SVG and PNG
Finds signs that use an exact
symbol near a specific
coordinate in the sign box
QS10a11532x445
Examples Query String
Query Description Results
Finds signs that use a general
base symbol near a specific
coordinate in the SignBox with
any fill or rotation.
QS10auu491x526
SVG and PNG
Finds signs with a temporal
sequence that starts with
specified symbols
QAS14c12S10018T
Examples Query String
Query Description Results
Finds signs with a temporal
sequence that starts with the
ordered base symbols and any
fills or rotations
QAS14cuuS100uuT
Examples Query String
For mixed searching, the Temporal
Sequence searching is defined first.
Spatial SignBox
Searching
Temporal Sequence
Searching
QAS100uuS100uuTS20500470x470
Temporal Sequence starts with
any two index hand shapes
Contact star is used near
coordinate (470,470)

Contenu connexe

Similaire à SIGNWRITING SYMPOSIUM PRESENTATION 49, Part 1: SignWriting in an ASCII World by Stephen E Slevinski Jr

M&A in der Medienbranche
M&A in der MedienbrancheM&A in der Medienbranche
M&A in der Medienbrancheyopi5000
 
Atividades peixonauta números e letras
Atividades peixonauta números e letrasAtividades peixonauta números e letras
Atividades peixonauta números e letrasSimoneHelenDrumond
 
How SaaS founders can raise Angel funds
How SaaS founders can raise Angel fundsHow SaaS founders can raise Angel funds
How SaaS founders can raise Angel fundsKevin Dewalt
 
Mapa de un diseño para el PAFSu de una UMF
Mapa de un diseño para el PAFSu de una UMFMapa de un diseño para el PAFSu de una UMF
Mapa de un diseño para el PAFSu de una UMFBryan Bone
 
Essay Writing Service | Writing Reports | How To Write A Report
Essay Writing Service | Writing Reports | How To Write A ReportEssay Writing Service | Writing Reports | How To Write A Report
Essay Writing Service | Writing Reports | How To Write A ReportEssayUK
 
Cluster (for Demetrio Stratos)
Cluster (for Demetrio Stratos)Cluster (for Demetrio Stratos)
Cluster (for Demetrio Stratos)Massimiliano Viel
 
Jason svm tutorial
Jason svm tutorialJason svm tutorial
Jason svm tutorialImran Khan
 
Jason svm tutorial
Jason svm tutorialJason svm tutorial
Jason svm tutorialeragon226
 
Replicating Parser Behavior using Neural Machine Translation
Replicating Parser Behavior using Neural Machine TranslationReplicating Parser Behavior using Neural Machine Translation
Replicating Parser Behavior using Neural Machine TranslationSebastiano Panichella
 

Similaire à SIGNWRITING SYMPOSIUM PRESENTATION 49, Part 1: SignWriting in an ASCII World by Stephen E Slevinski Jr (14)

M&A in der Medienbranche
M&A in der MedienbrancheM&A in der Medienbranche
M&A in der Medienbranche
 
Atividades peixonauta números e letras
Atividades peixonauta números e letrasAtividades peixonauta números e letras
Atividades peixonauta números e letras
 
Specialusis Vilniaus dviračių takų plėtros planas iki 2020 metų
Specialusis Vilniaus dviračių takų plėtros planas iki 2020 metųSpecialusis Vilniaus dviračių takų plėtros planas iki 2020 metų
Specialusis Vilniaus dviračių takų plėtros planas iki 2020 metų
 
How SaaS founders can raise Angel funds
How SaaS founders can raise Angel fundsHow SaaS founders can raise Angel funds
How SaaS founders can raise Angel funds
 
Mapa de un diseño para el PAFSu de una UMF
Mapa de un diseño para el PAFSu de una UMFMapa de un diseño para el PAFSu de una UMF
Mapa de un diseño para el PAFSu de una UMF
 
Contabilidad res
Contabilidad resContabilidad res
Contabilidad res
 
DHV13
DHV13DHV13
DHV13
 
Essay Writing Service | Writing Reports | How To Write A Report
Essay Writing Service | Writing Reports | How To Write A ReportEssay Writing Service | Writing Reports | How To Write A Report
Essay Writing Service | Writing Reports | How To Write A Report
 
Cluster (for Demetrio Stratos)
Cluster (for Demetrio Stratos)Cluster (for Demetrio Stratos)
Cluster (for Demetrio Stratos)
 
Jason svm tutorial
Jason svm tutorialJason svm tutorial
Jason svm tutorial
 
Jason svm tutorial
Jason svm tutorialJason svm tutorial
Jason svm tutorial
 
No
NoNo
No
 
Cryptory
CryptoryCryptory
Cryptory
 
Replicating Parser Behavior using Neural Machine Translation
Replicating Parser Behavior using Neural Machine TranslationReplicating Parser Behavior using Neural Machine Translation
Replicating Parser Behavior using Neural Machine Translation
 

Plus de SignWriting For Sign Languages

SignWriting Symposium 2018: Myanmar Signwriting Fingerspelling Keyboards
SignWriting Symposium 2018: Myanmar Signwriting Fingerspelling KeyboardsSignWriting Symposium 2018: Myanmar Signwriting Fingerspelling Keyboards
SignWriting Symposium 2018: Myanmar Signwriting Fingerspelling KeyboardsSignWriting For Sign Languages
 
SignWriting Symposium 2018 Presentation 71: "SignWriting Vision 2030" by Step...
SignWriting Symposium 2018 Presentation 71: "SignWriting Vision 2030" by Step...SignWriting Symposium 2018 Presentation 71: "SignWriting Vision 2030" by Step...
SignWriting Symposium 2018 Presentation 71: "SignWriting Vision 2030" by Step...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM 2017: DEMONSTRATION Sutton SignWriting Standard of 2017
SIGNWRITING SYMPOSIUM 2017:  DEMONSTRATION Sutton SignWriting Standard of 2017SIGNWRITING SYMPOSIUM 2017:  DEMONSTRATION Sutton SignWriting Standard of 2017
SIGNWRITING SYMPOSIUM 2017: DEMONSTRATION Sutton SignWriting Standard of 2017SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM 2017: Sutton SignWriting Standard of 2017 by Stephen E....
SIGNWRITING SYMPOSIUM 2017: Sutton SignWriting Standard of 2017 by Stephen E....SIGNWRITING SYMPOSIUM 2017: Sutton SignWriting Standard of 2017 by Stephen E....
SIGNWRITING SYMPOSIUM 2017: Sutton SignWriting Standard of 2017 by Stephen E....SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM PRESENTATION 68: "Sign Language Writing: SignWriting as...
SIGNWRITING SYMPOSIUM PRESENTATION 68: "Sign Language Writing: SignWriting as...SIGNWRITING SYMPOSIUM PRESENTATION 68: "Sign Language Writing: SignWriting as...
SIGNWRITING SYMPOSIUM PRESENTATION 68: "Sign Language Writing: SignWriting as...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM 2017: "SignEcriture: A Decade of Writing French-Swiss S...
SIGNWRITING SYMPOSIUM 2017: "SignEcriture: A Decade of Writing French-Swiss S...SIGNWRITING SYMPOSIUM 2017: "SignEcriture: A Decade of Writing French-Swiss S...
SIGNWRITING SYMPOSIUM 2017: "SignEcriture: A Decade of Writing French-Swiss S...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM 2016 PRESENTATION 63 "Using SignWriting for the Peruvia...
SIGNWRITING SYMPOSIUM 2016 PRESENTATION 63 "Using SignWriting for the Peruvia...SIGNWRITING SYMPOSIUM 2016 PRESENTATION 63 "Using SignWriting for the Peruvia...
SIGNWRITING SYMPOSIUM 2016 PRESENTATION 63 "Using SignWriting for the Peruvia...SignWriting For Sign Languages
 
SignWriting Symposium 2016 Live Broadcast July 18 Session 1: “A Home & Educat...
SignWriting Symposium 2016 Live Broadcast July 18 Session 1: “A Home & Educat...SignWriting Symposium 2016 Live Broadcast July 18 Session 1: “A Home & Educat...
SignWriting Symposium 2016 Live Broadcast July 18 Session 1: “A Home & Educat...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...
SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...
SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM PRESENTATION 56: "SignWriting in Tunisian Deaf Educatio...
SIGNWRITING SYMPOSIUM PRESENTATION 56: "SignWriting in Tunisian Deaf Educatio...SIGNWRITING SYMPOSIUM PRESENTATION 56: "SignWriting in Tunisian Deaf Educatio...
SIGNWRITING SYMPOSIUM PRESENTATION 56: "SignWriting in Tunisian Deaf Educatio...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM PRESENTATION 57: "A Web Tool for Building Parallel Corp...
SIGNWRITING SYMPOSIUM PRESENTATION 57: "A Web Tool for Building Parallel Corp...SIGNWRITING SYMPOSIUM PRESENTATION 57: "A Web Tool for Building Parallel Corp...
SIGNWRITING SYMPOSIUM PRESENTATION 57: "A Web Tool for Building Parallel Corp...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM PRESENTATION 59: "The spread of SignWriting in Maranhão...
SIGNWRITING SYMPOSIUM PRESENTATION 59: "The spread of SignWriting in Maranhão...SIGNWRITING SYMPOSIUM PRESENTATION 59: "The spread of SignWriting in Maranhão...
SIGNWRITING SYMPOSIUM PRESENTATION 59: "The spread of SignWriting in Maranhão...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM PRESENTATION 60: "The Learning of SignWriting at ANPACI...
SIGNWRITING SYMPOSIUM PRESENTATION 60: "The Learning of SignWriting at ANPACI...SIGNWRITING SYMPOSIUM PRESENTATION 60: "The Learning of SignWriting at ANPACI...
SIGNWRITING SYMPOSIUM PRESENTATION 60: "The Learning of SignWriting at ANPACI...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...
SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...
SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM PRESENTATION 61: SignWriting in Unicode Next by Stephen...
SIGNWRITING SYMPOSIUM PRESENTATION 61: SignWriting in Unicode Next by Stephen...SIGNWRITING SYMPOSIUM PRESENTATION 61: SignWriting in Unicode Next by Stephen...
SIGNWRITING SYMPOSIUM PRESENTATION 61: SignWriting in Unicode Next by Stephen...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM PRESENTATION 58: "SignWriting as an appropriate writing...
SIGNWRITING SYMPOSIUM PRESENTATION 58: "SignWriting as an appropriate writing...SIGNWRITING SYMPOSIUM PRESENTATION 58: "SignWriting as an appropriate writing...
SIGNWRITING SYMPOSIUM PRESENTATION 58: "SignWriting as an appropriate writing...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM PRESENTATION 54 SignTyp: a cross linguistic database an...
SIGNWRITING SYMPOSIUM PRESENTATION 54 SignTyp: a cross linguistic database an...SIGNWRITING SYMPOSIUM PRESENTATION 54 SignTyp: a cross linguistic database an...
SIGNWRITING SYMPOSIUM PRESENTATION 54 SignTyp: a cross linguistic database an...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM PRESENTATION 62: SignPuddle 3: Front and Back by Stephe...
SIGNWRITING SYMPOSIUM PRESENTATION 62: SignPuddle 3: Front and Back by Stephe...SIGNWRITING SYMPOSIUM PRESENTATION 62: SignPuddle 3: Front and Back by Stephe...
SIGNWRITING SYMPOSIUM PRESENTATION 62: SignPuddle 3: Front and Back by Stephe...SignWriting For Sign Languages
 
SIGNWRITING SYMPOSIUM PRESENTATION 55: "Moving Forward with Sign Language Pro...
SIGNWRITING SYMPOSIUM PRESENTATION 55: "Moving Forward with Sign Language Pro...SIGNWRITING SYMPOSIUM PRESENTATION 55: "Moving Forward with Sign Language Pro...
SIGNWRITING SYMPOSIUM PRESENTATION 55: "Moving Forward with Sign Language Pro...SignWriting For Sign Languages
 

Plus de SignWriting For Sign Languages (20)

SignWriting Symposium 2018: Myanmar Signwriting Fingerspelling Keyboards
SignWriting Symposium 2018: Myanmar Signwriting Fingerspelling KeyboardsSignWriting Symposium 2018: Myanmar Signwriting Fingerspelling Keyboards
SignWriting Symposium 2018: Myanmar Signwriting Fingerspelling Keyboards
 
SignWriting Symposium 2018 Presentation 71: "SignWriting Vision 2030" by Step...
SignWriting Symposium 2018 Presentation 71: "SignWriting Vision 2030" by Step...SignWriting Symposium 2018 Presentation 71: "SignWriting Vision 2030" by Step...
SignWriting Symposium 2018 Presentation 71: "SignWriting Vision 2030" by Step...
 
SIGNWRITING SYMPOSIUM 2017: DEMONSTRATION Sutton SignWriting Standard of 2017
SIGNWRITING SYMPOSIUM 2017:  DEMONSTRATION Sutton SignWriting Standard of 2017SIGNWRITING SYMPOSIUM 2017:  DEMONSTRATION Sutton SignWriting Standard of 2017
SIGNWRITING SYMPOSIUM 2017: DEMONSTRATION Sutton SignWriting Standard of 2017
 
SIGNWRITING SYMPOSIUM 2017: Sutton SignWriting Standard of 2017 by Stephen E....
SIGNWRITING SYMPOSIUM 2017: Sutton SignWriting Standard of 2017 by Stephen E....SIGNWRITING SYMPOSIUM 2017: Sutton SignWriting Standard of 2017 by Stephen E....
SIGNWRITING SYMPOSIUM 2017: Sutton SignWriting Standard of 2017 by Stephen E....
 
SIGNWRITING SYMPOSIUM PRESENTATION 68: "Sign Language Writing: SignWriting as...
SIGNWRITING SYMPOSIUM PRESENTATION 68: "Sign Language Writing: SignWriting as...SIGNWRITING SYMPOSIUM PRESENTATION 68: "Sign Language Writing: SignWriting as...
SIGNWRITING SYMPOSIUM PRESENTATION 68: "Sign Language Writing: SignWriting as...
 
SIGNWRITING SYMPOSIUM 2017: "SignEcriture: A Decade of Writing French-Swiss S...
SIGNWRITING SYMPOSIUM 2017: "SignEcriture: A Decade of Writing French-Swiss S...SIGNWRITING SYMPOSIUM 2017: "SignEcriture: A Decade of Writing French-Swiss S...
SIGNWRITING SYMPOSIUM 2017: "SignEcriture: A Decade of Writing French-Swiss S...
 
SIGNWRITING SYMPOSIUM 2016 PRESENTATION 63 "Using SignWriting for the Peruvia...
SIGNWRITING SYMPOSIUM 2016 PRESENTATION 63 "Using SignWriting for the Peruvia...SIGNWRITING SYMPOSIUM 2016 PRESENTATION 63 "Using SignWriting for the Peruvia...
SIGNWRITING SYMPOSIUM 2016 PRESENTATION 63 "Using SignWriting for the Peruvia...
 
SignWriting Symposium 2016 Live Broadcast July 18 Session 1: “A Home & Educat...
SignWriting Symposium 2016 Live Broadcast July 18 Session 1: “A Home & Educat...SignWriting Symposium 2016 Live Broadcast July 18 Session 1: “A Home & Educat...
SignWriting Symposium 2016 Live Broadcast July 18 Session 1: “A Home & Educat...
 
SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...
SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...
SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...
 
SIGNWRITING SYMPOSIUM PRESENTATION 56: "SignWriting in Tunisian Deaf Educatio...
SIGNWRITING SYMPOSIUM PRESENTATION 56: "SignWriting in Tunisian Deaf Educatio...SIGNWRITING SYMPOSIUM PRESENTATION 56: "SignWriting in Tunisian Deaf Educatio...
SIGNWRITING SYMPOSIUM PRESENTATION 56: "SignWriting in Tunisian Deaf Educatio...
 
SIGNWRITING SYMPOSIUM PRESENTATION 57: "A Web Tool for Building Parallel Corp...
SIGNWRITING SYMPOSIUM PRESENTATION 57: "A Web Tool for Building Parallel Corp...SIGNWRITING SYMPOSIUM PRESENTATION 57: "A Web Tool for Building Parallel Corp...
SIGNWRITING SYMPOSIUM PRESENTATION 57: "A Web Tool for Building Parallel Corp...
 
SIGNWRITING SYMPOSIUM PRESENTATION 59: "The spread of SignWriting in Maranhão...
SIGNWRITING SYMPOSIUM PRESENTATION 59: "The spread of SignWriting in Maranhão...SIGNWRITING SYMPOSIUM PRESENTATION 59: "The spread of SignWriting in Maranhão...
SIGNWRITING SYMPOSIUM PRESENTATION 59: "The spread of SignWriting in Maranhão...
 
SIGNWRITING SYMPOSIUM PRESENTATION 60: "The Learning of SignWriting at ANPACI...
SIGNWRITING SYMPOSIUM PRESENTATION 60: "The Learning of SignWriting at ANPACI...SIGNWRITING SYMPOSIUM PRESENTATION 60: "The Learning of SignWriting at ANPACI...
SIGNWRITING SYMPOSIUM PRESENTATION 60: "The Learning of SignWriting at ANPACI...
 
SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...
SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...
SIGNWRITING SYMPOSIUM PRESENTATION 61: "SignWriting in Unicode and Rich Text ...
 
SIGNWRITING SYMPOSIUM PRESENTATION 61: SignWriting in Unicode Next by Stephen...
SIGNWRITING SYMPOSIUM PRESENTATION 61: SignWriting in Unicode Next by Stephen...SIGNWRITING SYMPOSIUM PRESENTATION 61: SignWriting in Unicode Next by Stephen...
SIGNWRITING SYMPOSIUM PRESENTATION 61: SignWriting in Unicode Next by Stephen...
 
SIGNWRITING SYMPOSIUM PRESENTATION 58: "SignWriting as an appropriate writing...
SIGNWRITING SYMPOSIUM PRESENTATION 58: "SignWriting as an appropriate writing...SIGNWRITING SYMPOSIUM PRESENTATION 58: "SignWriting as an appropriate writing...
SIGNWRITING SYMPOSIUM PRESENTATION 58: "SignWriting as an appropriate writing...
 
SIGNWRITING SYMPOSIUM PRESENTATION 54 SignTyp: a cross linguistic database an...
SIGNWRITING SYMPOSIUM PRESENTATION 54 SignTyp: a cross linguistic database an...SIGNWRITING SYMPOSIUM PRESENTATION 54 SignTyp: a cross linguistic database an...
SIGNWRITING SYMPOSIUM PRESENTATION 54 SignTyp: a cross linguistic database an...
 
SIGNWRITING SYMPOSIUM PRESENTATION 62: SignPuddle 3: Front and Back by Stephe...
SIGNWRITING SYMPOSIUM PRESENTATION 62: SignPuddle 3: Front and Back by Stephe...SIGNWRITING SYMPOSIUM PRESENTATION 62: SignPuddle 3: Front and Back by Stephe...
SIGNWRITING SYMPOSIUM PRESENTATION 62: SignPuddle 3: Front and Back by Stephe...
 
SIGNWRITING SYMPOSIUM PRESENTATION 55: "Moving Forward with Sign Language Pro...
SIGNWRITING SYMPOSIUM PRESENTATION 55: "Moving Forward with Sign Language Pro...SIGNWRITING SYMPOSIUM PRESENTATION 55: "Moving Forward with Sign Language Pro...
SIGNWRITING SYMPOSIUM PRESENTATION 55: "Moving Forward with Sign Language Pro...
 
Lessons in SignWriting Textbook by Valerie Sutton
Lessons in SignWriting Textbook by Valerie SuttonLessons in SignWriting Textbook by Valerie Sutton
Lessons in SignWriting Textbook by Valerie Sutton
 

Dernier

How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 

Dernier (20)

How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 

SIGNWRITING SYMPOSIUM PRESENTATION 49, Part 1: SignWriting in an ASCII World by Stephen E Slevinski Jr

  • 1. SignWriting in an ASCII World! by Stephen E Slevinski Jr ,,,,,, o#'9MMHb':'-,o, .oH":HH$' "' ' -*R&o, dMMM*""'`' .oM"HM?. ,MMM' "HLbd< ?&H .:MH ." ` MM MM&b . "*H - &MMMMMMMMMH: . dboo MMMMMMMMMMMM. . dMMMMMMb *MMMMMMMMMP. . MMMMMMMP *MMMMMP . `#MMMMM MM6P , ' `MMMP" HM*`, ' :MM .- , '. `#?.. . ..' -. . .- ''-.oo,oo.-'' X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X
  • 2. It’s an ASCII World! A. Starting Point 1. ASCII 2. Regular Expressions 3. Token Patterns 4. Hexadecimal B. Definition 1. Symbol Keys 2. Numbers 3. Formal SignWriting 4. Query Strings
  • 3. ASCIIStarting Point https://en.wikipedia.org/wiki/ASCII/ American Standard Code for Information Interchange. ASCII is the basis for text processing and standard definition. Unicode is ASCII plus additional characters. ASCII is UTF-8, character for character. ASCII will outlive Unicode.
  • 4. RegexStarting Point https://xkcd.com/208/ It is faster to recognize a string with regular expressions then to analyze a string with a routine. A regular expression is used to examine text and identify strings that match a stated pattern. https://xkcd.com/208/
  • 5. RegexStarting Point Character Match a character 0 or more times Description ABC* matches AB, ABC, ABCC, ... Example * Match a character 1 or more times ABC+ matches ABC, ABCC, ABCCC, …+ Match a character 0 or 1 times ABC? matches AB or ABC? Match a character explicit number times AB{2} matches ABB{#} https://regex101.com/Test Regex Online
  • 6. RegexStarting Point Character Match any character from a list Description [ABC] matches A, B, or C Example [ ] Match any character in a range [A-C] matches A, B, or C[ - ] Create a group for matching A(BC)+ matches ABC, ABCBC, ABCBCBC, …( ) Match one of several alternatives (AB|BC|CD) matches AB, BC, or CD( | ) https://regex101.com/Test Regex Online
  • 7. Find a number between 122 and 455 12[2-9] Regex 122 to 129 Matches Step 1) 10's don't match and the min 1's are not zero ( last number to 9) 1[3-9][0-9] 130 to 199Step 2) Bring up the 10's if hundreds are different [2-3][0-9][0-9] 200 to 399Step 3) Bring up the 100's if different 4[0-4][0-9] 400 to 449Step 4) Bring up the 10's 45[0-5] 450 to 455Step 5) Bring up the 1's (12[1-9]|1[3-9][0-9]|[2-3][0-9][0-9]|4[0-4][0-9]|45[0-5])Final Regex Starting Point Regex https://regex101.com/Test Regex Online
  • 8. Starting Point Token Patterns A L M R Structural Markers w s P Symbol Bases i o Symbol Modifiers n Numbers B
  • 9. A Sequence Marker B SignBox Marker L Left Lane Marker M Middle Lane Marker w Writing Base Symbol s Sequence Base Symbol P Punctuation Base Symbol i Fill Modifier o Rotation Modifier n Number R Right Lane Marker Starting Point Token Patterns Writing Symbol w i o Cartesian Coordinate n n
  • 10. Starting Point Hexadecimal Character Value x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 String Value x00 x10 x20 x30 x40 x50 x60 x70 x80 x90 xA0 xB0 xC0 xD0 xE0 xFF 0 16 32 48 64 80 96 112 128 144 160 176 192 208 244 255 Standard numbers that we use are base 10, using only the 0 thru 9. Decimal Value Prefixed with an ‘x’, hexadecimal characters and strings are base 16, using 0 thru 9 and A thru F. Hexadecimal
  • 11. Definition Symbol Key w s P i o https://tools.ietf.org/html/draft-slevinski-signwriting-text-05#section-2.1 Symbol keys are used to identify each of the 37,811 symbols of the ISWA 2010. Symbols keys are built using three tokens. 1. Symbol Base of “w”, “s”, or “P” 2. Fill Modifier of “i” 3. Rotation Modifier of “o” i o i o Writing symbol Sequence symbol Punctuation symbol
  • 12. Definition Symbol Key S1005f Symbol Starter S 100 Base Fill Modifier Rotation Modifier 5 f S[123][0-9a-f]{2}[0-5][0-9a-f] Regex http://signbank.org/SignWriting_Character_Viewer.html#?set=key Symbol keys are 6 characters long.
  • 13. Definition Numbers Cartesian Coordinates are built using two tokens. 1. Number of “n” 2. Number of “n” Cartesian Coordinate n n The number characters encode the ruler principle for 2-dimensions. https://tools.ietf.org/html/draft-slevinski-signwriting-text-05#section-2.2 Numbers range from 250 to 749, with 500 being the center. 250x749 X Coordinate 250 749Y Coordinate (250,749) Top-Left Coordinate of symbol
  • 14. Definition Numbers 500 X Coordinate 500x500 (2[5-9][0-9]|[3-6][0-9]{2}|7[0-4][0-9]) Regex for explicit number between 250 and 749 Numbers are 3 characters long. Coordinates are 7 characters long. Y Coordinate [0-9]{3} [0-9]{3}x[0-9]{3} Description Example Regex
  • 15. https://tools.ietf.org/html/draft-slevinski-signwriting-text-05#section-2 According to Wikipedia, "In mathematics, computer science, and linguistics, a formal language is a set of strings of symbols that may be constrained by rules that are specific to it." Sign as Word • Mathematical ASCII name • Optional time for sorting • Mandatory space for visual Definition Formal SignWriting
  • 16. w i o Spatial symbols are built using five tokens. 1. Symbol Base of “w” 2. Fill Modifier of “i” 3. Rotation Modifier of “o” 4. Number of “n” 5. Number of “n” Spatial symbol Definition Formal SignWriting n n Identifies a specific symbol with coordinate information. https://tools.ietf.org/html/draft-slevinski-signwriting-text-05#section-2.3 Used in the Spatial Signbox Regex S[123][0-9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0-9]{3}
  • 17. Spatial SignBox Definition Formal SignWriting A cluster of symbols used in 2-dimensions [BLMR]nn(wionn)* Regex for Token Description [BLMR]([0-9]{3}x[0-9]{3})(S[123][0-9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0-9]{3})* Regex for Formal SignWriting L M R w i o n B
  • 18. Temporal Prefix Definition Formal SignWriting An optional ordered list of symbols used for sorting. (A([ws]io)+)? Regex for Token Description (A(S[123][0-9a-f]{2}[0-5][0-9a-f])+)? Regex for Formal SignWriting w i o A s
  • 19. AS18711S20500 M514x517S18711490x483S20500486x506 AS18711S20500M514x517S18711490x483S20500486x506 A S18711 S20500 M514x517 S18711490x483 S20500486x506 M 514x517 S18711 490x483 S20500 486x506 (514,517) (490,483) (486,506) Time Space Sequence Marker Symbol Middle Lane SignBox Max Coord Spatial Symbol Definition Formal SignWriting
  • 20. https://tools.ietf.org/html/draft-slevinski-signwriting-text-05#section-3 Definition Query String The query string is a lite ASCII markup similar to Formal SignWriting. Formal SignWriting can be converted into several different query string, depending on the search parameters. Query strings are used to search Formal SignWriting. Query String for all signs Q Query String for sortable signs QT
  • 21. Formal SignWriting Regular Expressions Query Strings 15 to 50 times expansion process million of characters per second search results Definition Query String Q (A(S[123][0-9a-f]{2}[0-5][0-9a- f])+)?[BLMR]([0-9]{3}x[0-9]{3})(S[123][0- 9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0-9]{3})*
  • 22. Definition Query String The query string is a concise representation for a much larger and detailed set of regular expressions. When a query string returns more than one regular expression, a filter and repeat step is required. QS10000S20500 (A(S[123][0-9a-f]{2}[0-5][0-9a- f])+)?[BLMR]([0-9]{3}x[0-9]{3})(S[123][0- 9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0- 9]{3})*S10000[0-9]{3}x[0-9]{3}(S[123][0- 9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0-9]{3})* (A(S[123][0-9a-f]{2}[0-5][0-9a- f])+)?[BLMR]([0-9]{3}x[0-9]{3})(S[123][0- 9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0- 9]{3})*S20500[0-9]{3}x[0-9]{3}(S[123][0- 9a-f]{2}[0-5][0-9a-f][0-9]{3}x[0-9]{3})*
  • 23. Two main sections of a query string Definition Query String Both sections use the same definition for a symbol or a range. Spatial SignBox Searching Temporal Sequence Searching S[123][0-9a-f]{2}[0-5u][0-9a-fu] R[123][0-9a-f]{2}t[123][0-9a-f]{2} Search Symbol Search Range 1-Dimensional order 2-Dimensional order
  • 24. Q((A(S[123][0-9a-f]{2}[0-5u][0-9a-fu]|R[123][0-9a-f]{2}t[123][0-9a-f]{2})+)?T)? Definition Query String Temporal Sequence Searching Symbol Search Range Search Fill and Rotation values of ‘u’ represent unknown and allow all possible values. Finds all symbols between two specified symbol bases w i o w ss i o w w s s It is possible to specify the start order of the temporal sequence by identifying a series of symbols and/or ranges.
  • 25. Q(S[123][0-9a-f]{2}[0-5u][0-9a-fu]([0-9]{3}x[0-9]{3})?|R[123][0-9a-f]{2}t[123][0-9a-f]{2}([0-9]{3}x[0-9]{3})?)*(V[0-9]+)? Definition Query String Spatial SignBox Searching Symbol Search Optional Coordinates Range Search Optional Coordinates Optional Variance Allowable distance from specified coordinates Fill and Rotation values of ‘u’ represent unknown and allow all possible values. Specified coordinates will limit the search results for the previous symbol. Finds all symbols between two specified symbol bases Specified coordinates will limit the search results for the previous range. w i o n n n n w w It is possible to specify one or more symbols (or ranges of symbols) that must be included in the spatial SignBox with optional coordinates for each symbol or range.
  • 26. SVG and PNG Finds signs that use an exact symbol in the SignBoxQS18711 Examples Query String Query Description Results Finds signs that use a general base symbol in the SignBox with any fill or rotation. QS187uu
  • 27. SVG and PNG Finds signs that use an exact symbol near a specific coordinate in the sign box QS10a11532x445 Examples Query String Query Description Results Finds signs that use a general base symbol near a specific coordinate in the SignBox with any fill or rotation. QS10auu491x526
  • 28. SVG and PNG Finds signs with a temporal sequence that starts with specified symbols QAS14c12S10018T Examples Query String Query Description Results Finds signs with a temporal sequence that starts with the ordered base symbols and any fills or rotations QAS14cuuS100uuT
  • 29. Examples Query String For mixed searching, the Temporal Sequence searching is defined first. Spatial SignBox Searching Temporal Sequence Searching QAS100uuS100uuTS20500470x470 Temporal Sequence starts with any two index hand shapes Contact star is used near coordinate (470,470)