This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Funkcja wykorzystywana do force re-renderingu ([email protected] z pustymi stronami) | |
function redrawPage(top) { | |
document.body.scrollTop = 1; | |
document.body.scrollTop = 0; | |
$(function() { | |
document.body.scrollTop = top + 1; | |
document.body.scrollTop = top; | |
}); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NinePatchDrawable bg = (NinePatchDrawable) getResources().getDrawable(R.drawable.button_new_light); | |
int pL = btnLike.getPaddingLeft(); | |
int pR = btnLike.getPaddingRight(); | |
int pT = btnLike.getPaddingTop(); | |
int pB = btnLike.getPaddingBottom(); | |
if(Build.VERSION.SDK_INT >= 16) { | |
btnLike.setBackground(bg); | |
} else { | |
btnLike.setBackgroundDrawable(bg); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bitmap icon = BitmapFactory.decodeResource(context.getResources(), | |
R.drawable.icon_resource); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Porównanie string vs bool: | |
"00" == "0" → bool(true) | |
"0" == false → bool(true) | |
ale już: | |
"00" == false → bool(false) | |
Porównanie null vs bool vs string: | |
null == false → bool(true) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0 == "Lorem ipsum" → bool(true) | |
15 == "15 kwiatów w wazonie" → bool(true) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"1.00000000000000001" == "0.1e1" → bool(true) | |
"+1" == "0.1e1" → bool(true) | |
"1e0" == "0.1e1" → bool(true) | |
"-0e10" == "0" → bool(true) | |
"1000" == "0x3e8" → bool(true) | |
"1234" == " \t\r\n 1234" → bool(true) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ZEND_API int zend_binary_strcmp(const char *s1, uint len1, const char *s2, uint len2) /* {{{ */ | |
{ | |
int retval; | |
if (s1 == s2) { | |
return 0; | |
} | |
retval = memcmp(s1, s2, MIN(len1, len2)); | |
if (!retval) { | |
return (len1 - len2); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ZEND_FUNCTION(strcmp) | |
{ | |
char *s1, *s2; | |
int s1_len, s2_len; | |
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &s1, &s1_len, &s2, &s2_len) == FAILURE) { | |
return; | |
} | |
RETURN_LONG(zend_binary_strcmp(s1, s1_len, s2, s2_len)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ZEND_FUNCTION(strlen) | |
{ | |
char *s1; | |
int s1_len; | |
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &s1, &s1_len) == FAILURE) { | |
return; | |
} | |
RETVAL_LONG(s1_len); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Dane wejściowe (wklej tutaj kolejne) | |
$dane = "0.23110198974609 | |
0.23308801651001 | |
0.23321080207825 | |
0.23291993141174"; | |
// Koszt petli + liczba iteracji |