Birte Published & Destroyed that: Difference between revisions

From Hackers & Designers
(Created page with "The Arabic language has become a symbol of hate in the eyes and ears of the Western World. The ways in which the language is presented to us, mostly through media and politics...")
 
No edit summary
Line 4: Line 4:
our perception on everything that is Arabic along with it. By using translation as a tool we  
our perception on everything that is Arabic along with it. By using translation as a tool we  
can back translate the origin of the arabic word and '''destroy''' our perception.
can back translate the origin of the arabic word and '''destroy''' our perception.
''Birte Veenkamp''


----
----
o#!/bin/bash
mapfile -t words < [yourtextfile].txt
for (( ; ; ))
do
        for word in "${words[@]}"
        do :
          clear
          dict -d fd-eng-ara $word | tail -5
          sleep 5
        done
done

Revision as of 14:33, 12 February 2016

The Arabic language has become a symbol of hate in the eyes and ears of the Western World. The ways in which the language is presented to us, mostly through media and politics, has changed our perception of what is an incredibly beautiful language. And it has changed our perception on everything that is Arabic along with it. By using translation as a tool we can back translate the origin of the arabic word and destroy our perception. Birte Veenkamp


o#!/bin/bash
mapfile -t words < [yourtextfile].txt
for (( ; ; ))
do
       for word in "${words[@]}"
       do :
         clear
         dict -d fd-eng-ara $word | tail -5
         sleep 5
       done
done