subprojects/subproject1/data/some_dir/some_text.some_text.graphml
subprojects/subproject1/data/some_text.graphml
subprojects/subproject1/data/some_text.some_text.graphml
git config --global core.excludesfile
sshfs -o idmap=user
$.each({usd: 2, eur: 2, byr: 0, uah: 1, kzt: 0}, function(currency, precision) {
var bankCurrency = document.getElementById('bank-' + currency).innerText;
$.each([777, 1777, 2777, 4777], function(i, tariff) {
document.getElementById(currency + 'Tariff' + (i + 1)).innerHTML = (tariff / bankCurrency).toFixed(precision);
});
});
ssh -R "*:8080:localhost:8080" ...
Specifying a remote bind_address will only succeed if the server's GatewayPorts option is enabled (see sshd_config(5)).
new OuterClass.InnerStaticClass();
new OuterClass.InnerNonStaticClass(); // нельзя
OuterClass o = new OuterClass();
new o.InnerNonStaticClass(); // можно
new OuterClass.InnerStaticClass(); // а в случае со статическим классом так можно
select user.user_id, (coalesce(topics.sum, 0) + coalesce(comments.sum, 0)) as rating from tb_user user
left join (select user_id, sum(topic_rating) as sum from tb_topic where topic_date_add > NOW() - INTERVAL 7 DAY group by user_id) topics on topics.user_id = user.user_id
left join (select user_id, sum(comment_rating) as sum from tb_comment where comment_date > NOW() - INTERVAL 7 DAY group by user_id) comments on comments.user_id = user.user_id
order by rating desc limit 10;