Islam1001's Posts
Nairaland Forum › Islam1001's Profile › Islam1001's Posts
1 2 (of 2 pages)
Please ooo , the capitalist government we been get for 16 years , went we gain ? sexylassie2: |
Omooba77:You are very right .... Just another person who would not criticize constructively , always blaming one person .. coming on with future predictions that never actualize |
michaelwilli:I sure do unit testing , but bro I would be frank with you , you would always get unrealistic time line from project managers |
michaelwilli:bro there is no project that my employer doesn,t expect to be done in the shortest time , even when they know is not so realistic |
had the same issue on my most recent project , right now. I am glad that I worked overtime because am pleased with the result |
Experienced UI / UX designer needed in an software company in Lagos. comment whatsapp number if interested |
In as much as i am dissapointed in the excessive increase in the budget, we have to take into consideration the fact that we are in recession now so 1billion in 2015 and 2016 is now like 4billion now in 2016 so there definitly be increase in the budget |
i recently got posted to have my service in oyo state , i i would love to do it at a software company, please if anybody knows of a software company in oyo state , please reply with the companies website and recruiter email, thank uu........very urgent |
saintkel:You have to to into account the fac that we are black, we are African, we are Nigerian we are not white, we are neither European or Nort American, we ha are own ethic and believes there is nothi hypocritic about it |
FrankLampard:Well just like you I am a computer science major amd I know a computer does only what it is told to do |
FrankLampard:. FrankLampard the name of the post was PHP sucks when building enterprise sotwares NOT php can,t be used for anything enterprise, u also pointed tat etranzact was built wit Php, everybody in nigeria software industry know that it absolutly not true...... I tink u sould question where builtwithit get their sources from |
FrankLampard:well good to hear , but i have still not come across anybody using "voguepay" OR "simplepay" , or do you use it , also etranzact do not use PHP for anything at all, they built quickteller with ASP and their payment platform etranzact.com with JAVA not PHP And also i think you did not read the comments from users after reading that PAystack built their engine with PHP http://radar.techcabal.com/t/customer-success-engineer-at-paystack/7755 Am not saying you can,t use PHP to build Applications, what am saying is it should not b used when working on Enterprise systems, may be you should check the meanings of enterprise software https://en.wikipedia.org/wiki/Enterprise_software and i think you should check this out https://www./20141114182637-12880086-php-vs-asp-net-what-you-should-really-be-comparing-instead |
FrankLampard:send your cv first na |
FrankLampard:count the last line on each file not your libs |
FrankLampard:Dude YOU NO GO LIKE quit PHP and come and collect JAVA job with 350,000 gross from me |
kingofthejungle:BOSS there are lands of milk and honey outside PHP ooo! |
DanielTheGeek:interpreted languages are nothing close to as secure as languages that are converted in to bytecode, i am yet to find that hacker that can do sql injections on bytcode |
FrankLampard:Oga U no go like go build etranzact with PHP. |
FrankLampard:Boss there is not one big company that runs on "Pure" PHP, the day a big company tries it, that day blackhat hackers would hold a big Bash!! |
dhtml18:Sorry sir, i would like to ask, have you ever seen any nigerian financial dealer, be it banks or payment platform using "NODE.JS","PHP"or "PYTHON" at least i know of some asp.net, but if they where to go with those three above, security would be an issue!!! @OP am just saying |
guru01:Sorry to burst your bubble, I actually started out wit php and most of my initial projects were usually CRUD based, bet now tat I Ave to work on larger projects where I have to manage a lot of background jobs, process scheduling, garbage collection, communicate wit system kernel and sorts of other things, PHP is no where near those fields and those fields are some of the basics of operating systems........ @OP sincerely speaking men php sucks and is for. School kids to g things done, not for enterprise projects |
dhtml18:Well most times you build mobile apps, you build them to integrate wit something, and that something is usually written in java, at least most I have come in contact with |
dhtml18:Trust me men, in nigeria java EE own d financial sector, if at all you want to make serious money in software dev in nigeria, java comes first |
Ehm.... May be you have not heard of Google before Like wise facebook use many languages and a fully modified version of php |
I REALLY THINK PEOPLE SHOULD STOP MAKING NOISE ABOUT PHP , TO ME PHP SUCKS AND THIS ARE MY REASONS :---- The ternary operator In most programming languages the ternary operator is right-to-left assocative. This allows you to write things like this: print((foo == 1) ? "uno" : (foo == 2) ? "dos" : "tres" ;print("\n" ;This chunk of code obviously outputs the word uno. PHP's implementation of this operator has left-to-right. I dare you to guess what the following PHP snippet outputs: <?php $foo = 1; print(($foo === 1) ? "uno" : ($foo === 2) ? "dos" : "tres" ;print("\n" ;# (I use the === operator out of good habit.) ?> Hint: it's not the word uno. The || and && operators In non-retarded programming languages, they return either the result of the left operand or the result of the right operand. In PHP, 5 || 4 returns 1. 0 || 6 returns 1. While most people use || as a "default value" operator: $foo = $bar || "default value"; this cannot be done in PHP. Invoking external programs PHP does not provide multi-argument forms of system(), exec(), or other built-in functions. There is the pcntl extension, which is not enabled by default. Higher-Order Programming If you're forced to use a version of PHP older than 5.3, you don't get closures. Other Issues In PHP, the names of built-in functions are inconsistent. Is it isset() or is_set()? Is it isnull() or is_null()? Is it sort() or array_sort()? Is it merge() or array_merge()? Even I don't remember. I have to look up the PHP documentation to answer these. I'll let you do the same. The arguments to built-in functions are inconsistent. The built-in functions' return values are inconsistent. The number of built-in functions is too large. Do we really need 11 sort functions (scroll down)? Function names are case-insensitive, but variable names are case-sensitive. WHY? As I've stated above, the vast majority of official and user-contributed documentation is poor. PHP's authors have made a few non-backward-compatible changes to the language. Not just between PHP4 and PHP5, but in minor point releases of PHP4. Magic Quotes There is also the fact that PHP ever had the magic_quotes feature in the first place. While it's been turned off by default for quite some time, and will be removed from PHP 6, it will still affect you for some time to come in the following situations: When writing programs to distribute to other people who may be running PHP4 or PHP5. Such as yet another forum or CRM package. When writing programs you may port from one operating system to another someday. Even if both are running the same version of PHP... ...You see, there's one particular PHP feature called magic_quotes_gpc, where things get "interesting". It is on by default in PHP4. It is off by default in PHP5 on certain Linux distributions; on in others. You can probably stick "php_flag magic_quotes_gpc" off in apache.conf or .htaccess. But some shared-hosting providers make this impossible. In the worst case, you may very well have to pollute your code with things like this. (There are common techniques such as ereg_replace("/\\/", "" that a lot of programmers use, which do not work right in all cases. |
C# !!!!!!!!!! ALWAYS COPYING THINGS FROM OTHER LANGUAGES !!!! |
hello, i would like any information on software engineering master in Australia pleeaseee!!!!!!!!! ![]() |
1 2 (of 2 pages)
;