BasharJobs, Job matching site with advanced matching technology targeting the arabic region. pretty challenging field with a lot of already positioned competitors.
Entrepreneurship has become one of the one of the most interesting topic in the business side in any country in the world. While it is digging its way in the middle east, there is some sort of confusion and a lot of aspects related to that topic. A Startup can act and advance to tackle business opportunities in a way that competes with large enterprises. and most of the times, they need to be supported by Investors to back them up. One of the things that started to really bother me in the culture is the definition of success of a startup. No one denies that a decent revenue generating startup is a successful one. However, some people believe that just raising an investment is a success.... umm, debatable. I believe we can make some kind of analogy with some entities that showed up in the past decade like biznas and skybiz (I'm sure some of you will remember those names). they used an invalid scheme summarized as: People can register and join the network for a fee (as an i
did u know that 34136029 is a prime number?!! well.. that's what i recently realized :) I thought of writing a piece of code for that purpose.. wondering how far i can get. The idea of the code is simple We know that 2 and 3 are prime numbers the code checks every following odd numbers to be prime or not. To verify a prime number, the number divisibility by the prime numbers generated so far is checked. (29 is a prime number.. because it id not divisible by 2, 3, 5, 7, 11, 13, 17, 19 nor 23) We only need to verify divisibility against the numbers smaller than or equal to the root of the number in hand. (We needn't check the divisibility of 33 with 11, as we already must have found out it is divisible by 3).. I did not want to go with the mathematical root evaluation as i am not sure about its load. I used bits handling instead. the root of a number uses at most half of the number of bits that the original number uses. i only made a naive java implementation so far. downloa
Nearly a couple of weeks ago, I got system update of Android 6 , Marshmallow on my Google Nexus 5 . Having system updates early is one of the things I like much about Google Nexus devices. There are several wonderful things in the new android, but I was eagerly waiting for this update, specifically for the selective permissions module. Lots of android apps use lots of excessive permissions. too much than necessary IMHO. However, let me tell you about how I found things. One of the things I liked a lot since my last version of android is the launcher app menu, I used to have to swipe left several times to get to apps with names starting with letters coming late in the alphabet (Z, x, S, and arabic names). Android 6 default app menu avoids this horizontal scrolling. and: 1) Uses vertical scrolling which is more natural and usable for users 2) Allows you to search apps, to reach the app quickly by typing a couple of letters form its name 3) The most frequent used apps ar
Comments