Details
-
Aboutin love with automation projects Telegram: @GhayourForEver
-
Skillsc++, c#, java, js, css3, angularjs, ionic, cordova, android, basic, opencv, matlab, nodejs
Joined devRant on 12/1/2016
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
Hi devrant developers
I can develop a function that find duplicate images and forbid them to post again.
I saw some images more than 4 times ...8 -
function x () {
for (var i = 0; i < 5; i++) {
try {
return i;
} finally {
if (i != 3) continue;
}
}
}
console.log( x() ); // ?7 -
cout << "<?php echo \"system.out.println(\\\" console.log('<h1>hello world</h1>'); \\\"); \" ; ?>";15
-
document.getelementbyid("myid");
Runtime error !
must be "ById"
:/
also same problem with elem.innerHtml
(Correct: elem.innerHTML )2 -
I just compiled a code.
no any compile error at first compile !
I tested all inputs and outputs, everything is correct !
Am I sleeping ? -
Just 2 days spend on debuging a function !
Definition:
int func (int x, int y) {
...
}
Call :
int c = func (y, x);
I checked 1000 line for debuging this :-\
Plz remember that check your function args while debuging1