Skip to main content

Profile

Welcome to my Blog!


Identifying innovative approaches and improved solutions to business challenges both motivate and drive me. Observation, inspiration and determination are my foundation for success. My philosophy is that introducing change, agility and new techniques allow businesses to evolve and grow.


To know more about me please visit my LinkedIn profile, or
Read my Arabic articles on Aljazeera, English at Medium.

(
.




Comments

  1. Dear Dr. Moustafa,

    Hope my email finds you well.

    I would really like to express all my respect for you, I have taken many courses with you, it was really a nice experience for me to be teached by you.

    My University years weren' t be better if I didn't had the chance to meet you, especially that I am using all the knowledge you have teached me in my current work.

    With All my respects,

    Regards,

    Basem Shalabi

    ReplyDelete
  2. Thank you for the nice words that really touched my heart. I wish you the best, I was only doing my job.

    Mustafa

    ReplyDelete
  3. project0809@windowslive.com12 October 2010 at 08:20

    I'm a lucky student that I reached your blog :) Actually I've been surfing the web for a research that I'm working on ! actually I'm interested in one of your posts

    http://blog.abusalah.info/2010/06/arabic-english-automatic-ontology.html

    Is there any chance to get knowledge from you in this manner or any helpful information about this topic ?

    ReplyDelete
  4. Lets communicate over email

    ReplyDelete
  5. hy ..excuse me , but could i have your yahoo id ?

    ReplyDelete
  6. Hi Ramona, I have sent you an email.

    ReplyDelete

Post a Comment

Popular posts from this blog

Top Google Adsense Alternatives

Google Adsense is a web tool that allows publishers in the Google Network of content sites to automatically serve text, image, video, and rich media adverts that are targeted to site content and audience. These adverts are administered, sorted, and maintained by Google, and they can generate revenue on either a per-click or per-impression basis.  Google servers advertisers using google adwords platform, while adsense is the publishers platform. Google Adsense is the top Ad Publishers platform over the web ranking number one in web advertising industry. Adsense offers contextual advertisements that covers web sites, blogs, games, videos, mobile browsing etc. What made Google Adsense no. 1 is the reliability, stability, variety of services and large number of publishers including google it self. Also google has a fair platform that detects invalid clicks so google successfully protects its advertisers and also offers its best publishers top CPC. Two reasons are behin...

ERROR: cross-database references are not implemented

You face this error while trying to query two tables from difference databases in Postgres, as Postgress is unlike SQL Server, you can't join two tables from different databases. Instead you may have One Database with Two different Schemas . Schemas group your data tables separately and give you the flexibility to query and join tables from across schemas in the same Database. So if you have DB1 and DB2, you need to move the tables in DB2 to DB1 but in a new schema. If you are using the public schema in DB2 you need to change the name:   alter schema public rename to new_schema_name ; create schema public ;   Now Backup your Schema: $ pg_dump --format custom --file "my_backup" --schema " new_schema_name " "db2" $ pg_restore --dbname "db1" "my_backup" Your Done. If you have any question please let me know.

Google Analytics on Refined Wiki Mobile Theme

Tracking mobile users on Confluence while using Refinedwiki mobile theme is not possible or straightforward using theme configuration. I found a work around that will track users on Google Analytics smoothly. Please follow the below steps: Create a js file, call is analytics.js with the analytics script code, it should look something similar to the below:   (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){   (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),   m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)   })(window,document,'script','//www.google-analytics.com/analytics.js','ga');   ga('create', ' UA-XXXXXX ', 'auto');   ga('set', 'userId',AJS.Data.get("remote-user")); // Set the user ID using signed-in user_id.    ga('send', 'pageview'); Save your script on confluence server confluenceInstall...