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
public static String getAgeWithDeclination(double age){ | |
String result; | |
List<Double> units = Arrays.asList(2d, 3d, 4d); | |
List<Double> dozens = Arrays.asList(11d, 12d, 13d, 14d); | |
if(age != 11 && age % 10 == 1) { | |
result = age + " год"; | |
} else if(age % 1 != 0d || (units.contains(age % 10) && !dozens.contains(age % 100))) { | |
result = age + " года"; | |
} else { |
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
<?xml version="1.0"?> | |
<string-array name="cities"> | |
<item>Абаза, Хакасия</item> | |
<item>Абакан, Хакасия</item> | |
<item>Абдулино, Оренбургская область</item> | |
<item>Абинск, Краснодарский край</item> | |
<item>Агидель, Башкортостан</item> | |
<item>Агрыз, Татарстан</item> | |
<item>Адыгейск, Адыгея</item> | |
<item>Азнакаево, Татарстан</item> |
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
# Android Studio | |
.gradle | |
/local.properties | |
.DS_Store | |
/build | |
/captures | |
app/build/ | |
gradle/ | |
*.iml | |
.idea |
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
// Get bitmap shader circle img | |
public static Bitmap getCircleMaskedBitmapShader(Bitmap source, int radius) { | |
if (source == null) { return null; } | |
int diam = radius << 1; | |
Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG); | |
Bitmap scaledBitmap = scaleTo(source, diam); | |
final Shader shader = new BitmapShader(scaledBitmap, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP); |
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
try { | |
String DisplayName = "XYZ"; | |
String MobileNumber = "123456"; | |
String HomeNumber = "1111"; | |
String WorkNumber = "2222"; | |
String emailID = "[email protected]"; | |
String company = "bad"; | |
String jobTitle = "abcd"; | |
ArrayList<ContentProviderOperation> ops = new ArrayList < ContentProviderOperation > (); |
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
//Set timeout if hover over an element | |
$(document).ready(function() { | |
$('#slider').hover( | |
// if hover over an element | |
function(){ | |
setTimeout(function() { | |
$('i.arrows').css({"opacity":"1"}); | |
}, | |
300); |
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 | |
// Вывод даты на русском | |
$monthes = array( | |
1 => 'Января', 2 => 'Февраля', 3 => 'Марта', 4 => 'Апреля', | |
5 => 'Мая', 6 => 'Июня', 7 => 'Июля', 8 => 'Августа', | |
9 => 'Сентября', 10 => 'Октября', 11 => 'Ноября', 12 => 'Декабря' | |
); | |
echo(date('d ') . $monthes[(date('n'))] . date(' Y, H:i')); | |
// Вывод дня недели |