i actually want to learn new technologies and use theme.
amagitech
Posts
-
Being Fossil -
Being Fossilthanks i will search open source projects.
-
Being Fossilthat's what i try now. i will make an open source hospital appointment project.
-
Being Fossili had some web projects from the past. he took all of the projects from me and gave them to junior developers and doesn't give me web projects. imo he afraid of i will escape if i have more experience on web or mobile. he want to maintain his old projects with me.
-
Being FossilI have worked as Desktop developer during all my career. I see and hear a lot of new technologies. And I study them myself evenings. For example docker, mvc, .net core, angular js, react... but in my company boss doesn't give web and mobile technologies to me. i feel really bored. i wanted to change my job for last week. but being unexperienced with real projects is really big problem for me. so nobody want to pay money what is my salary now. I feel like i am being fossil. and i can't find good jobs in the future.
-
Python is becoming the worlds most popular coding languageAfter I started the OSSU Computer Science I used python in a few course. it's popular because schools and universities uses it for teaching algorithm. so students search it in google. But I think python is little dangerous for big projects. But it's awesome for math and statistic. You can easily write scripts and check them while coding in spyder.
-
Why do people become a fan of a program languageSometimes i see some developers say that java kicks the c# or via versa. Yesterday a good know java developer which is jug chairman in turkey said that "I need to have install visual studio for a project, then i saw microsoft seized my computer.". Sometimes they share microsoft steal your codes. the source is that Visual Studio adding telemetry function calls to binary? : cpp[^] What do you think about that?
-
URL Shorteningthanks to twitter.
-
Thought of the Weak[^]
-
the worst web site everyou are right.
-
the worst web site ever[^]:D
-
the worst web site everi'm blind after trying to read who is Penny Juice?
-
the worst web site ever -
is future scientists important for IT companies?I read some text about that futurist works in Google. I think google's success and microsoft's failure depence that. For example after Google anounced Google glass , Microsft anounced holo. Google make an investment for android , after Microsft make an investment for windows phone. Now google works about unmanned vehicles, artificial intelligence(deep mind), ... What do you think about that?
-
Math symbology questionI graduated math but I 've never seen this symbol. Maybe it is Operation defined before question.
-
Everyone says c++ is faster than c#, why?:) I am junior developer. I need to learn more software culture. But I don't have any teacher(who is senior developer) for learning this subjects. So I take risk to asking dummy questions :)
-
Everyone says c++ is faster than c#, why?you righ'tit escaped me. I fixed now c# is 7 second.
-
Schrodinger's CatThe Cat's Last word :"Please open the box"
-
Everyone says c++ is faster than c#, why?Yee I tried printf("%i\n",i); it is 7 second. That's faster than coutt
-
Everyone says c++ is faster than c#, why?I used same algorithm for c# and c++. I have read c++ is faster than c# but my tests shows c# is faster than c++. What's wrong? My codes like this. c++ is 36 seconds
#include
#includeusing namespace std;
int main(){
const clock_t beginTime = clock();
for (int i = 2; i < 2000000; i++)
{
bool isPrime = true;
for (int j = 2; j*j <= i; j++)
{
if (i%j == 0){
isPrime = false;
break;
}
}
if (isPrime)
cout << i << endl;
}
cout << float(clock() - beginTime) / CLOCKS_PER_SEC;
}c# is 9 seconds
using System;
namespace Console01
{
class Program
{static void Main(string\[\] args) { DateTime beginTime = DateTime.Now; for (int i = 2; i <= 2000000; i++) { bool isPrime = true; for (int j = 2; j \* j < i; j++) { if (i % j == 0) { isPrime = false; break; } } if (isPrime) Console.WriteLine(i); } TimeSpan ts = DateTime.Now - beginTime; Console.WriteLine(ts.Seconds); } }
}