User Osama ALASSIRY - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T10:51:42Zhttp://stackoverflow.com/feeds/user/25544http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/928438/which-applications-would-you-like-to-see-integrated-with-google-wave/1678985#16789851Answer by Osama ALASSIRY for Which applications would you like to see integrated with Google Wave?Osama ALASSIRY2009-11-05T07:51:55Z2009-11-05T07:51:55Z<p>Anything related to collaboration:</p>
<ul>
<li>A minutes of meetings editor (specialized text editor, maybe even some others)</li>
<li>A project management tool: WaveProject. People would add tasks, update them, ...</li>
<li>And much more.</li>
</ul>
<p>I think that a desktop app with caching may be much more responsive than doing it over the web, BUT, internet speeds are scaling up to a desktop-like experience.</p>
http://stackoverflow.com/questions/643032/is-disneys-fastpass-valid-and-or-useful-queue-theory/643279#6432798Answer by Osama ALASSIRY for Is Disney's FastPass Valid and/or Useful Queue TheoryOsama ALASSIRY2009-03-13T15:35:50Z2009-10-25T09:30:50Z<p>I've tried FastPass, and this is how I see it:</p>
<p>Let's say you go to a ride with 1h expected waiting time, if you go to FastPass, you will get an assigned time period where you are guaranteed immediate entry. It's usually after more than 1h.</p>
<p>We got FastPasses for the popular rides, and during that time,queued in 10-15m queues allowing us to queue and go to 3 rides while being in the FastPass virtual queue. They also gave us extra uncounted FastPasses to some very unpopular rides, if we used those we would get some load off the more popular rides and fill the very unpopular ones.</p>
<p>Here's a graphic comparing the time we spent vs the non-fastpass option:</p>
<p><img src="http://img259.imageshack.us/img259/5173/fastpass.png" alt="fastpass" /></p>
<p>It seems to me as a valid queuing theory, it allows resources with less expected wait times to be executed while delaying one with a higher expected wait time even more.</p>
http://stackoverflow.com/questions/1496819/right-to-left-email/1560493#15604932Answer by Osama ALASSIRY for Right-to-Left EmailOsama ALASSIRY2009-10-13T14:10:42Z2009-10-13T14:10:42Z<p><strong>I am unsure how to explicitly specify this in the email, or even if this is necessary.</strong></p>
<p>For plain-text unicode, you can add a <a href="http://en.wikipedia.org/wiki/Right-to-left%5Fmark" rel="nofollow">right-to left mark</a> inline, but it's not really needed. </p>
<p><em>I'd say why not add the RTL mark, but it's not really necessary</em></p>
<p><strong>How would an Arabic speaker typically work with plain-text email?Would they usually rely on the global text direction setting in their email client, or is there some other, generally accepted way of forcing the text direction in the email itself?</strong></p>
<p>most users would be able to either switch the text direction to get a correct padding of the lines, or are used to a jagged-right Arabic text (the text itself will appear correctly if it doesn't contain any inline English characters, and users are used to reading it in chunks even if it does).</p>
http://stackoverflow.com/questions/1262420/configure-html-tidy-to-ignore-php-short-start-and-end-tags-when-inside-html-attri/1282983#12829830Answer by Osama ALASSIRY for Configure HTML Tidy to ignore PHP short start and end tags when inside html attributesOsama ALASSIRY2009-08-15T22:04:24Z2009-08-15T22:04:24Z<p>You could pre-process your php:</p>
<p>by adding comments by converting <code><?</code> to <code><!--<?</code>, and <code>?></code> to <code>?>--></code></p>
<p><code><input value='<?=$variable?>'></code></p>
<p>would become</p>
<p><code><input value='<!--<?=$variable?>-->'></code></p>
<p>after running HTMLtidy, you would do the opposite.</p>
<ol>
<li>pre-process by adding comment tags</li>
<li>run HTMLtidy</li>
<li>un-pre-process...</li>
</ol>
http://stackoverflow.com/questions/1062226/sqlite-berkeley-db-benchmarking/1270092#12700922Answer by Osama ALASSIRY for sqlite , berkeley db benchmarkingOsama ALASSIRY2009-08-13T04:58:11Z2009-08-15T19:58:07Z<p>Before thinking about benchmarking, you need to compare the features of the databases.</p>
<p>SQLite and BDB are completely different in the features they support, and if the data is complicated, I'd suggest SQLite for easier querying of relational data (if that's how your data is laid out)</p>
http://stackoverflow.com/questions/1266319/processing-english-statements/1277946#12779461Answer by Osama ALASSIRY for Processing English StatementsOsama ALASSIRY2009-08-14T13:47:34Z2009-08-14T13:47:34Z<p>The Stanford Parser as suggested by ealdent would do the job, I would prefer to encode it as:</p>
<ul>
<li>Bump(X,Y,Past)</li>
<li>Kick(Y,Z,Past)</li>
</ul>
<p>A POS tagger could also work, but your sentence is complicated ("who in turn").</p>
http://stackoverflow.com/questions/1136469/log-file-rotation-name/1270972#12709720Answer by Osama ALASSIRY for Log file rotation nameOsama ALASSIRY2009-08-13T09:28:03Z2009-08-13T09:28:03Z<p>I would look at the end of the string, and if it's a number, I'd keep going back until I reach a non-numeric character, adding these to a string, and keeping the position (p).</p>
<ul>
<li>'filename' => ''</li>
<li>'filename_9' => '9'</li>
<li>'filename-3786' => '3786'</li>
</ul>
<p>I'd then convert it to a number n, if it's empty, I'd assume a zero.</p>
<p>I would take the original string up to p, convert n+1 to a string and concatenate it.</p>
<ul>
<li>'filename' => 'filename2'</li>
<li>'filename_9' => 'filename_10'</li>
<li>'filename-3786' => 'filename-3787'</li>
</ul>
<p>You could also look for separators at the p-th character like ' ', '_', '-', and remove them, then always add a fixed separator like _.</p>
http://stackoverflow.com/questions/1052460/geolocation-assisted-atm-monitoring/1270195#12701950Answer by Osama ALASSIRY for Geolocation assisted ATM monitoringOsama ALASSIRY2009-08-13T05:36:15Z2009-08-13T05:36:15Z<p>I would suggest using <a href="http://code.google.com/apis/maps/" rel="nofollow">Google's Maps API</a>, it uses a UI familiar to many people online and it can be customized as you see fit.</p>
<p><strong>Advantages</strong></p>
<ul>
<li>Easy to use.</li>
<li>Easy to develop.</li>
<li>Familiar UI.</li>
<li>Very customizable.</li>
<li>Maps updated frequently.</li>
</ul>
<p><strong>Disadvantages</strong></p>
<ul>
<li>Requires an internet connection.</li>
</ul>
http://stackoverflow.com/questions/1139881/whats-the-most-common-method-for-exploding-a-string-of-tags/1266080#12660800Answer by Osama ALASSIRY for What's the most common method for exploding a string of tags?Osama ALASSIRY2009-08-12T13:09:44Z2009-08-12T13:09:44Z<p>I would split dogs, bad_mojo + help-me yawning,, "who's there?", red shoes into the tags:</p>
<ul>
<li>dogs</li>
<li>bad mojo</li>
<li>help me </li>
<li>yawning</li>
<li>who's there?</li>
<li>red shoes</li>
</ul>
<p>I would accept + in C++, but I wouldn't accept any single character tags.</p>
<p>If you want to use SO-style tags, you could process these to:</p>
<ul>
<li>dogs</li>
<li>bad-mojo</li>
<li>help-me </li>
<li>yawning</li>
<li>whos-there</li>
<li>red-shoes</li>
</ul>
<p>Mechanical turk seems to be a good route to sort-out all the tags.</p>
http://stackoverflow.com/questions/1258698/storing-distances-in-mysql/1258841#12588413Answer by Osama ALASSIRY for Storing distances in MySQLOsama ALASSIRY2009-08-11T07:16:25Z2009-08-11T08:37:09Z<p>you could do this:</p>
<pre><code>table colors(r,g,b)
table colordistance(user_r,user_g,user_b,r,g,b,distance)
</code></pre>
<p>but do you expect your users to keep entering the same numbers??? The maximum numbers of rows in this table is 16777216 if you only include the closest color.</p>
<p>I still suspect that the database access is slower than the calculation, so I'm thinking of the quote "<em>premature optimization is the root of all evil</em>".</p>
<p>I would run it without any caching of the calculation until I see it as an actual problem.</p>
http://stackoverflow.com/questions/1100268/load-sqlite-database-from-remote-sql-server/1172265#11722650Answer by Osama ALASSIRY for Load SQLite database from remote SQL Server?Osama ALASSIRY2009-07-23T14:44:35Z2009-07-23T14:44:35Z<p>You don't really need an in-memory database, you can use <a href="http://en.wikipedia.org/wiki/SQL%5FServer%5FExpress" rel="nofollow">SQL Server Express</a> on your PC, or a unit-testing VM.</p>
<p>You could overwrite the database file each time you run the test.</p>
http://stackoverflow.com/questions/1117722/affiliate-system/1172087#11720870Answer by Osama ALASSIRY for Affiliate SystemOsama ALASSIRY2009-07-23T14:19:46Z2009-07-23T14:19:46Z<p>How about setting the cookie, and payment redirection on your site?
<img src="http://img190.imageshack.us/img190/1703/affiliatek.png" alt="Affiliate System" /></p>
<p>This way you could track all the clicks per affiliate, the referer domain name, as well as compare the clicks to the actual purchases.</p>
<p>You could even add your own ID for every click to automatically link each click on a "BUY" button to a possible actual purchase.</p>
<p>Linking it to 2checkout or paypal would be done on your site (much simpler), using the standard methods published on their websites.</p>
http://stackoverflow.com/questions/1099213/data-warehouse-modelling-a-future-schedule/1148550#11485500Answer by Osama ALASSIRY for Data Warehouse: Modelling a future scheduleOsama ALASSIRY2009-07-18T20:55:21Z2009-07-18T20:55:21Z<p>I would use a table (securityid,startdate, paymentevery, period) <em>it could also include enddate, paymentpershare</em></p>
<p>period would be 1 for days, 2 for weeks, 3 for months, 4 for years.</p>
<p>So for security 1 that started paying weekly on 3/1/2009, then the date changed to every 20 days on 4/2, then weekly after 5/1/2009, then to monthly on 7/1/2009, it would contain:</p>
<pre><code>1,'3/1/2009',1,2
1,'4/2/2009',20,1
1,'5/1/2009',1,2
1,'7/1/2009',1,3
</code></pre>
<p>To get the actual dates, I'd use an algorithm like this:</p>
<p>To know the payment dates on security 1 from 3/5/2009 to 5/17/2008:</p>
<pre><code>Find first entry before 3/5 = 3/1
Loop:
Get next date that's after 3/5 and before the next entry (4/2 - weekly) = 3/8
Get next date that's before next the entry (4/2) = 3/15
Get next date that's before next the entry (4/2) = 3/22
Get next date that's before next the entry (4/2) = 3/29
Next date >4/2 switch to next entry:
Loop:
Get next date that's after 4/2 and before the next entry (5/1 - every 20 days) = 4/22
Next date 5/12 is AFTER next entry 5/1, switch to next entry
Loop:
Get next date that's after 5/1 and before the lastdate (5/17 - weekly) = 5/8
Get next date that's before the lastdate = 5/15
Next date > 5/17
</code></pre>
<p>The dates between 3/5/2009 and 5/17/2008 would be 3/8,3/15,3/22,3/29,4/22,5/8,5/15</p>
http://stackoverflow.com/questions/1148303/sum-amount-of-overlapping-datetime-ranges-in-mysql/1148464#1148464-1Answer by Osama ALASSIRY for Sum amount of overlapping datetime ranges in MySQLOsama ALASSIRY2009-07-18T20:14:22Z2009-07-18T20:14:22Z<p>I would suggest an in-memory structure that has start-time,end-time,#events... (This is simplified as time(hours), but using unix time gives up to the second accuracy)</p>
<p>For every event, you would insert the new event as-is if there's no overlap, otherwise, find the overlap, and split the event to (up to 3) parts that may be overlapping, With your example data, starting from the first event:</p>
<p>Event 1 starts at 3am and ends at 10am: Just add the event since no overlaps:</p>
<pre><code> 3,10,1
</code></pre>
<p>Event 2 starts at 5am and ends at 9am: Overlaps,so split the original, and add the new one with extra "#events"</p>
<pre><code> 3,5,1
5,9,2
9,10,1
</code></pre>
<p>Event 3 starts at 7am and ends at 9am: also overlaps, do the same with all periods:</p>
<pre><code> 3,5,1
5,7,2
7,9,3
9,10,1
</code></pre>
<p>So calculating the overlap hours per #events:</p>
<pre><code>1 event= (5-3)+(10-9)=3 hours
2 events = 7-5 = 2 hours
3 events = 9-7 = 2 hours
</code></pre>
<p>It would make sense to run this as a background process if there are many events to compare.</p>
http://stackoverflow.com/questions/1148122/fastest-way-to-retrieve-store-millions-of-small-binary-objects/1148285#11482850Answer by Osama ALASSIRY for Fastest way to retrieve/store millions of small binary objectsOsama ALASSIRY2009-07-18T18:54:16Z2009-07-18T18:54:16Z<p>How about a binary file with fixed size blocks of around 2k, having the first 4 bytes be the length of the object... </p>
<p>location of object i is at i*2048 bytes, then read 2048 bytes for the object, getting the length of the actual object from the first 4 bytes (unsigned).</p>
http://stackoverflow.com/questions/560684/svn-obliterate3SVN Obliterate!Osama ALASSIRY2009-02-18T11:30:36Z2009-07-08T15:32:18Z
<p>I was just thinking of writing a shell script to implement the obliteratee functionality in an east to do way (externally, using the suggested way, but automated).</p>
<p>Here's what I had in mind:</p>
<p><strong>On the client</strong></p>
<ol>
<li><code>svn list -R > file-list</code>.</li>
<li>filter file-list in several ways like grep to create a file "files-to-delete", something like a set of <code>grep XXX file-list>>files-to-delete</code>.</li>
<li>transfer <code>files-to-delete</code> to the server using scp.</li>
</ol>
<p><strong>On the server</strong></p>
<ol>
<li>Dump the repository <code>svnadmin dump /path/to/repos > repos-dumpfile</code>, this can be kept as a backup too.</li>
<li>Copy the dumpfile to a new file that we'll process <code>cp repos-dumpfile new-dumpfile</code></li>
<li>Filter the new file, for each word in "files-to-delete", do: <code>cat new-dumpfile | svndumpfilter exclude $file > new-dumpfile</code></li>
<li>Create a new repository and load the new file to it <code>svnadmin create new-name; svnadmin load new-name < new-dumpfile</code></li>
</ol>
<p>Would this work? How can it fail? Any other ideas?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1098566/how-to-construct-this-in-regular-expression/1098805#10988051Answer by Osama ALASSIRY for How to construct this in regular expressionOsama ALASSIRY2009-07-08T15:24:51Z2009-07-08T15:24:51Z<p>I'd suggest a perl/python script (or any other scripting language) that takes 3 parameters:</p>
<ol>
<li>The pattern</li>
<li>Start date as yyyymmdd</li>
<li>End date as yyyymmdd</li>
</ol>
<p>It would :</p>
<ol>
<li>decode start and end date.</li>
<li>loop through the files in a folder</li>
<li>decode any dates in the filename</li>
<li>check if it's between the dates, and grep the pattern</li>
</ol>
http://stackoverflow.com/questions/1087076/help-me-put-oracle-terminology-into-sql-server-terminology/1087934#10879342Answer by Osama ALASSIRY for Help me put Oracle terminology into SQL Server terminologyOsama ALASSIRY2009-07-06T16:30:36Z2009-07-06T16:30:36Z<p>Oracle/SQLServer:</p>
<ul>
<li>tablespace = doesn't exist</li>
<li>database = doesn't exist</li>
<li>instance = instance</li>
<li>schema = database</li>
<li>listener = doesn't exist</li>
<li>service name = database name</li>
<li>SID = database name</li>
</ul>
http://stackoverflow.com/questions/872795/eastern-arabic-numerals-in-wordpress/1080881#10808810Answer by Osama ALASSIRY for Eastern Arabic Numerals in WordpressOsama ALASSIRY2009-07-03T21:20:49Z2009-07-03T21:20:49Z<p>I'd suggest that you don't do the replacement...</p>
<p>Keeping the normal numbers 0x40 to 0x49 allows search engines to search in the numbers. An Arab who prefers the other number system would have set that in their operating system, and they would see 0123456789 as ٠١٢٣٤٥٦٧٨٩.</p>
http://stackoverflow.com/questions/1056316/algorithm-for-determining-tic-tac-toe-game-over-java/1058804#10588040Answer by Osama ALASSIRY for Algorithm for Determining Tic Tac Toe Game Over (Java)Osama ALASSIRY2009-06-29T15:00:28Z2009-06-29T15:00:28Z<p>How about this pseudocode:</p>
<p>After a player puts down a piece at position (x,y):</p>
<pre><code>col=row=diag=rdiag=0
winner=false
for i=1 to n
if cell[x,i]=player then col++
if cell[i,y]=player then row++
if cell[i,i]=player then diag++
if cell[i,n-i+1]=player then rdiag++
if row=n or col=n or diag=n or rdiag=n then winner=true
</code></pre>
<p>I'd use an array of char [n,n], with O,X and space for empty.</p>
<ol>
<li>simple.</li>
<li>One loop.</li>
<li>Five simple variables: 4 integers and one boolean.</li>
<li>Scales to any size of n.</li>
<li>Only checks current piece.</li>
<li>No magic. :)</li>
</ol>
http://stackoverflow.com/questions/1030221/how-important-is-mirroring-the-entire-user-interface-for-arabic-speakers/1058555#10585552Answer by Osama ALASSIRY for How important is mirroring the _entire_ user interface for Arabic speakers?Osama ALASSIRY2009-06-29T14:16:24Z2009-06-29T14:16:24Z<p>In Arabic, we read and scan graphic elements right-to-left</p>
<p>You will need to horizontal-flip the whole display, except for the images and text (the BiDi library - usually in the OS - handles that). You're only flipping the <strong>locations</strong> of the control. </p>
<p>A control bound by (x1,y1,x2,y2) in a w*h screen becomes (w-x2,y1,w-x1,y2), the contents of the rectangle are not to be flipped, just the position. It would keep its dimensions.</p>
<p>For example, compare Google news in <a href="http://news.google.com/" rel="nofollow">English</a>, and <a href="http://news.google.com/?hl=ar" rel="nofollow">Arabic</a>... notice the menu, the images, the news items.</p>
http://stackoverflow.com/questions/1037024/storage-of-many-log-files/1048374#10483740Answer by Osama ALASSIRY for Storage of many log filesOsama ALASSIRY2009-06-26T10:25:36Z2009-06-26T10:25:36Z<p>Since you would like to store them to be able to compute misc. statistics over them nightly , export them (ordered by date of arrival or first line content) ... You're expecting 100,000 files a day, at a total of 10,000,000 lines:</p>
<p>I'd suggest:</p>
<ol>
<li>Store all the files as regular textfiles using the following format : yyyymmdd/producerid/fileno.</li>
<li>At the end of the day, <strong>clear the database</strong>, and load all the textfiles for the day.</li>
<li>After loading the files, it would be easy to get the stats from the database, and post them in any format needed. (maybe even another "stats" database). You could also generate graphs.</li>
<li>To save space ,you could compress the daily folder. Since they're textfiles, they would compress well.</li>
</ol>
<p>So you would only be using the database to be able to easily aggregate the data. You could also reproduce the reports for an older day if the process didn't work, by going through the same steps.</p>
http://stackoverflow.com/questions/1044518/delphi-app-communicates-with-program-that-ends-up-crashing-occasionally-vendor/1044756#10447564Answer by Osama ALASSIRY for Delphi App Communicates with Program That Ends Up Crashing Occasionally - Vendor Blames My Delphi AppOsama ALASSIRY2009-06-25T15:57:55Z2009-06-25T15:57:55Z<ol>
<li>Make the customer happy.</li>
<li>Don't assume it's not your dll, it could be. Even if "<em>Others using the software in an identical fashion have never experienced a crash</em>", it could be that with different data, it does different things...</li>
<li>I'd suggest that you setup logging to a textfile in a "special" diagnostic version.</li>
<li>Log everything, your parameters, your exceptions, and the steps you're going through. Maybe even the start and end of every function, and every other line.</li>
</ol>
<p>Here's how it could look...</p>
<pre><code>Loaded DLL
Started MyFunction1 with parameters: 1,4,hello
1
2
...
500
Ended MyFunction1
</code></pre>
<p>to make that,,, I'd setup a few functions (in their own unit): </p>
<pre><code>// opens a text file (fixed name), and appends to it.
function InitializeLog;
// closes the file
function CloseLog;
//add a log line.
function Log(message:string='', startNewFunction:boolean:False);
</code></pre>
<p>you would call it like this:</p>
<pre><code>function MyFunction1(Integer,Integer,String);
begin
try
Log('Loaded DLL');
//use inttostr and do some string concats to get the params
Log('Started MyFunction1 with parameters: 1,4,hello',true);
//Then every other line:
Log;
//this would increment a global variable FuncLine:Integer
//and write it to the file.
except
On E:Exception (Log('***'+E.Message));
end;
end;
</code></pre>
<p>Something like this should have a {$DEFINE} to enable these logging functions, to enable/disable the diagnostic logging.</p>
<p><a href="http://stackoverflow.com/questions/10935/how-to-trace-com-objects-exceptions">This could also be useful.</a></p>
http://stackoverflow.com/questions/1021542/handcoded-gui-application-design-visualization/1022786#10227860Answer by Osama ALASSIRY for Handcoded GUI application Design & VisualizationOsama ALASSIRY2009-06-20T23:26:30Z2009-06-20T23:26:30Z<p>This depends on the library you're using, and the widgets provided... Some provide layout classes that allow putting other control in them in an ordered manner, while others don't.</p>
<p>You need a convention in naming your files/classes/methods/functions, so that they are consistent across files. This will ease using something from one file in another file.</p>
http://stackoverflow.com/questions/996773/accelerator-keys-in-bilingual-multilingual-input-environment/1013609#10136090Answer by Osama ALASSIRY for accelerator keys in bilingual / multilingual input environmentOsama ALASSIRY2009-06-18T16:10:27Z2009-06-18T16:10:27Z<p>I'd dare to say that it works because Arabic and Hebrew keyboards still have the English characters on their keys (The keyboard I'm typing this on is a QWERTY keyboard, and those letters have ضصثقفغ on them), I'm sure the best way to handle these two languages is to use the "key code" and not the resulting character after the layout translation.</p>
http://stackoverflow.com/questions/930670/easy-questions-for-teaching-pascal-to-a-kid/932912#9329120Answer by Osama ALASSIRY for Easy Questions for Teaching Pascal to a kidOsama ALASSIRY2009-05-31T21:35:57Z2009-06-07T20:13:00Z<p>If you know any C/C-like language it's basically the same:</p>
<ul>
<li>{ } are begin end;</li>
<li>== is =</li>
<li>= is := </li>
<li>a function that returns nothing is a procedure. </li>
<li>a function that returns something is still a function.</li>
<li>int is Integer.</li>
</ul>
<p>The rest is almost the same. The syntax is a bit different, but not very different.</p>
<p>You would need to know which Pascal they're using, and what they taught them to be sure you're not wasting your/his/her time.</p>
http://stackoverflow.com/questions/961252/how-do-i-read-write-to-a-remote-xml-file-with-vb-net/961265#9612652Answer by Osama ALASSIRY for how do i read / write to a remote xml file with vb.net?Osama ALASSIRY2009-06-07T05:29:18Z2009-06-07T18:37:28Z<p>If it's really remote. I'd suggest wrapping access in a webservice:</p>
<p>If it's a local xml file, or on a LAN, I'd access it directly.</p>
<p>If you have an xml file on a server that is somewhere on the internet , or somewhere on a WAN:</p>
<p>Write the code that deals with the XML, and allows access to the data in it in a webservice by selecting an appropriate set of functions that can be used remotely.</p>
<p>In your example in the comments, you say you have about 100 arrays with 100 items each, I'd assume each array has an indexing reference.</p>
<p>The back-end could be XML, or even a database. To transfer data you could have the webservice with:</p>
<p><strong>GetArray(index)</strong> : get's an array by index, returns XML or even maybe CSV. It could return an error code if the index is not found.</p>
<p><strong>PutArray(index,data)</strong> : puts data an array by index, data is XML or even maybe CSV.</p>
<p><strong>DelArray(index)</strong> : deletes an array from the back-end storage.</p>
http://stackoverflow.com/questions/962354/where-to-manage-the-most-sensitive-content-you-have-under-version-control/962392#9623921Answer by Osama ALASSIRY for Where to manage the most sensitive content you have under version control?Osama ALASSIRY2009-06-07T17:45:35Z2009-06-07T17:45:35Z<p>Subversion doesn't allow it, and I don't think any others do.</p>
http://stackoverflow.com/questions/938751/database-question-change-simple-relational-tables-to-non-relational/958359#9583590Answer by Osama ALASSIRY for Database Question: Change Simple Relational Tables to Non-Relational?Osama ALASSIRY2009-06-05T22:04:06Z2009-06-05T22:04:06Z<p>You need to flatten it all up, I think AppEngine allows structures like</p>
<p>ID=1, ItemName=Car, ItemPriority=7, Property=(Blue,1),Property=(Four Wheels,2),Property=(Sedan,0)
ID=2, ItemName=Table, ItemPriority=2, Property=(Rectangular,1),Property=(One Leg,1)
ID=3, ItemName=Desk, ItemPriority=7</p>
<p>Notice that the same "field" could have multiple values, and that you could use multiple items in it.</p>
<p>Your sample data would be 3 rows in one table.</p>
http://stackoverflow.com/questions/935153/allowing-controlled-use-of-chinese-text/958341#9583412Answer by Osama ALASSIRY for Allowing controlled use of Chinese textOsama ALASSIRY2009-06-05T21:59:35Z2009-06-05T21:59:35Z<p>I'd move it all to UTF8, this will keep your ASCII as single byte, and allow you to enter any language (maybe you'll need to add French, German, Japanese, Korean)....</p>
<p>You can detect chinese characters in your unicode, and display an error message if the country isn't china/hongkong/taiwan. I'd also make this extensible to other languages and countries.</p>
http://stackoverflow.com/questions/1865078/sychronizing-two-databasesComment by Osama ALASSIRY on Sychronizing two databasesOsama ALASSIRY2009-12-08T07:00:48Z2009-12-08T07:00:48ZBy "get flushed", you mean deleted?http://stackoverflow.com/questions/1757822/php-find-some-text-in-a-string-if-its-thereComment by Osama ALASSIRY on php find some text in a string (if it's there)Osama ALASSIRY2009-11-21T00:23:31Z2009-11-21T00:23:31ZYou have many ways to order the photos, I tend to prefer to order by rand() which would randomize the photos. Or by date (I would add a date field to the photos table), Or even let the user select one of the fields in the photos table, as well as direction (ascending or DESCending).http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/537598#537598Comment by Osama ALASSIRY on Where do you keep your code?Osama ALASSIRY2009-09-03T23:22:56Z2009-09-03T23:22:56Zd:\SVN\{RepositoryName} on windows, /home/osama/SVN/{RepositoryName} on Linux.http://stackoverflow.com/questions/432066/max-pages-for-a-software-engineers-resume/498622#498622Comment by Osama ALASSIRY on Max pages for a Software Engineer's resume?Osama ALASSIRY2009-08-29T15:54:28Z2009-08-29T15:54:28ZTry to emphasize what you think could be relevant to the position... by removing anything that may not be related...http://stackoverflow.com/questions/1052460/geolocation-assisted-atm-monitoring/1270195#1270195Comment by Osama ALASSIRY on Geolocation assisted ATM monitoringOsama ALASSIRY2009-08-13T19:40:22Z2009-08-13T19:40:22ZGoogle's API requires internet access.http://stackoverflow.com/questions/973465/how-to-make-one-variable-two-others-instead-of-just-oneComment by Osama ALASSIRY on How to make one variable = two others instead of just oneOsama ALASSIRY2009-08-13T09:12:52Z2009-08-13T09:12:52ZJust a note, you're calling ToLower too many times, how about gaby=gaby.ToLower as the first line, and Replace(gaby,<b>*,*</b>) for the rest?http://stackoverflow.com/questions/1169687/problem-in-saving-aspx-file-with-encoding/1169702#1169702Comment by Osama ALASSIRY on Problem in saving aspx file with encodingOsama ALASSIRY2009-08-13T05:52:21Z2009-08-13T05:52:21ZNobodt uses ISO 8859-6, I'd say most (95%) of the electronic content in Arabic is encoded MS CP 1256.http://stackoverflow.com/questions/409280/what-do-you-write-in-your-log-book/409284#409284Comment by Osama ALASSIRY on What do you write in your log book?Osama ALASSIRY2009-08-11T14:23:33Z2009-08-11T14:23:33ZThis won't be useful for people who never turn off their computers.http://stackoverflow.com/questions/1152405/postgresql-is-better-using-multiple-databases-with-1-schema-each-or-1-databaseComment by Osama ALASSIRY on Postgresql: is better using multiple databases with 1 schema each, or 1 database with multiple schemas?Osama ALASSIRY2009-07-20T13:15:02Z2009-07-20T13:15:02Z"all of my databases/schemas will ever have the same structure!" do you mean they all have the same structure? Or never?http://stackoverflow.com/questions/1148122/fastest-way-to-retrieve-store-millions-of-small-binary-objects/1148285#1148285Comment by Osama ALASSIRY on Fastest way to retrieve/store millions of small binary objectsOsama ALASSIRY2009-07-18T19:47:04Z2009-07-18T19:47:04ZThis won't work in that case, a database could be your best choice...http://stackoverflow.com/questions/1147337/borland-cant-compile-what-is-going-on-i-cant-even-get-started/1148284#1148284Comment by Osama ALASSIRY on Borland Can't Compile, what is going on, I can't even get startedOsama ALASSIRY2009-07-18T19:18:43Z2009-07-18T19:18:43ZBorland C++ 5.5 is "legacy"http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/79720#79720Comment by Osama ALASSIRY on What do you use to keep notes as a developer?Osama ALASSIRY2009-07-18T19:02:26Z2009-07-18T19:02:26Zssh on port 443 should work.http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78772#78772Comment by Osama ALASSIRY on What do you use to keep notes as a developer?Osama ALASSIRY2009-07-18T19:00:16Z2009-07-18T19:00:16ZI prefer to use a real wiki on a webserver, I'm online 24/7 so I can always access it.http://stackoverflow.com/questions/872795/eastern-arabic-numerals-in-wordpress/1080881#1080881Comment by Osama ALASSIRY on Eastern Arabic Numerals in WordpressOsama ALASSIRY2009-07-18T15:39:11Z2009-07-18T15:39:11ZIt's 100% true, depending on how you setup windows to show numbers in regional settings... the user can select the "standard digits", and "digit substitution" (I'd suggest using <i>Context</i>).
You don't need to play with the unicode characters, what's next? specifying exact unicode character shapes for every letter???http://stackoverflow.com/questions/1098566/how-to-construct-this-in-regular-expression/1098646#1098646Comment by Osama ALASSIRY on How to construct this in regular expressionOsama ALASSIRY2009-07-08T15:25:27Z2009-07-08T15:25:27ZAnd you need to manually do this for every date range...