Skip to content

Instantly share code, notes, and snippets.

View aleksamarkoni's full-sized avatar

Aleksandar Markovic aleksamarkoni

View GitHub Profile
2019-06-13 17:11:56.672 17544-17544/? I/s.staging.debu: Late-enabling -Xcheck:jni
2019-06-13 17:11:56.783 17544-17544/com.welltok.cafewell.members.staging.debug I/s.staging.debu: The ClassLoaderContext is a special shared library.
2019-06-13 17:11:57.363 17544-17544/com.welltok.cafewell.members.staging.debug W/s.staging.debu: JIT profile information will not be recorded: profile file does not exits.
2019-06-13 17:11:57.364 17544-17544/com.welltok.cafewell.members.staging.debug I/chatty: uid=10229(com.welltok.cafewell.members.staging.debug) identical 10 lines
2019-06-13 17:11:57.364 17544-17544/com.welltok.cafewell.members.staging.debug W/s.staging.debu: JIT profile information will not be recorded: profile file does not exits.
2019-06-13 17:11:57.384 17544-17544/com.welltok.cafewell.members.staging.debug I/MultiDex: VM with version 2.1.0 has multidex support
2019-06-13 17:11:57.384 17544-17544/com.welltok.cafewell.members.staging.debug I/MultiDex: Installing application
2019-06-13 17:11:57.384 17544-17544/com
@aleksamarkoni
aleksamarkoni / Javascript
Created March 5, 2018 21:56
JavaScript Question
1) Find suboptimal code in the following snippet:
for (var i = 0; i < 100; i++) {
$("#list").append(i + ", ");
};
------------------------------------------
2) What is the result of the following code snippet:
A |B
---|---
1 |1
1 |0
0 |1
0 |0