View python_zen_arabic.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
الجميل خير من القبيح | |
Beautiful is better than ugly. | |
الصريح خير من المستتر | |
Explicit is better than implicit. | |
البسيط خير من المركّب | |
Simple is better than complex. | |
المركب خير من المعقّد | |
Complex is better than complicated. | |
المستوي خير من المتداخل | |
Flat is better than nested. |
View snowball_babel_js.generator_command.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sed 's/\\u/\\\\u/g' js_snowball/lib/snowball.es6 | babel --compact=false --presets es2015 --plugins transform-es2015-modules-umd --module-id snowballFactory | sed 's/\\\\u/\\u/g' > js_snowball/lib/snowball.babel.js |
View array_of_chained_list.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
//typedef struct element element; | |
using namespace std; | |
struct element { | |
char val; | |
element *next; | |
}; |
View geeks_talk.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@01walid - 1:42 AM | |
Have a good night, tell you mind to pull some dreams from its creativity repo, merge it with real and when you wake up , push yourself to changes :) | |
@assem-ch - 1:43 AM | |
:) | |
I'll just stash my ideas and clean my mind | |
@01walid - 1:43 AM | |
ok but don't RESET the HEAD :) |
View output-main.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
most frequent vocalized words | |
وَلَا - frequence = 1192 . | |
فِى - frequence = 1070 . | |
وَمَا - frequence = 1002 . | |
ٱللَّهِ - frequence = 807 . | |
ٱلَّذِينَ - frequence = 794 . | |
مِن - frequence = 719 . | |
ٱللَّهُ - frequence = 714 . | |
مَا - frequence = 690 . | |
لَا - frequence = 607 . |
View one_line.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sum(set(xrange(0,1000,5)) | set(xrange(0,1000,3))) |