This file contains hidden or 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
| stages: | |
| - test | |
| test: | |
| stage: test | |
| script: | |
| - echo test |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # Usage: | |
| # | |
| # Copy text to file ./test-channel-name-ios.sh | |
| # run | |
| # chmod a+x test-channel-name-ios.sh | |
| # | |
| # Start script with channel name and token | |
| # |
This file contains hidden or 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
| SELECT id, link, name, hours_together, coef | |
| FROM ( | |
| SELECT my_users.user_id, COUNT (*)::float / 12 AS hours_together, COUNT(*)::float / user_coef.their_hours AS coef | |
| FROM user_online LEFT JOIN user_online AS my_users | |
| ON my_users.status = user_online.status | |
| INNER JOIN (SELECT user_id, COUNT(*) AS their_hours | |
| FROM user_online | |
| GROUP BY user_id) AS user_coef | |
| ON user_coef.user_id = my_users.user_id |
This file contains hidden or 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, но в конце пустили два нелепых гола. После этого игра не очень пошла, должны были сравнивать во втором, но не забили пару выходов 1 на 1 и потом начали катать 6 игрока, где и пустили много, поэтому такой крупный счет. "Клауверт" переиграл на опыте, после того как повели +1, они хорошо оборонялись, поэтому они и выиграли, ну просто не наш день был, надо забыть и продолжать набирать очки дальше. | |
| - Обратил внимание, что у вас много различных заготовок и наигранных каких-то комбинаций, которые пополняются от матча к матчу. Как вы умудряетесь это делать? | |
| - Ну со штрафным в этой игре мы немного переборщили, хотя выдумка была неплохая, нем |
This file contains hidden or 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
| function reverseSpeedTest(size, repeates){ | |
| myTimeReverse = 0; | |
| myTime = 0; | |
| arr = Array.from(Array(size).keys()); | |
| for(i = 0; i < repeates; i++){ | |
| var t0 = performance.now(); | |
| arr[size - 1]; | |
| var t1 = performance.now(); | |
| myTime += t1 - t0; |
This file contains hidden or 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
| SELECT BookId, Title, AvtorId, FirstName, MiddleName, LastName | |
| FROM libbook | |
| JOIN | |
| ( | |
| SELECT book_id FROM History | |
| WHERE UNIX_TIMESTAMP(timestamp) > 1502115643.435 | |
| ORDER BY timestamp DESC | |
| LIMIT 200 | |
| ) AS h ON BookId = h.book_id | |
| JOIN |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script> | |
| <body> | |
| <div ng-app="myApp" ng-controller="myCtrl"> | |
| <p>Today's welcome message is:</p> | |
| <h1>{{myWelcome}}</h1> |
This file contains hidden or 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
| function libRB(libnow) { | |
| cnt++; | |
| var tm = new Date; tm = tm.getTime(); | |
| if (libnow != 1 && tm - ltm < 1555) { setTimeout(libRB, 333); return; } //были недавно, зайдите попозже. | |
| ltm = tm; | |
| var par = ""; | |
| if (page) par = "page="+page+"&"; | |
| var a = ["t", "g", "ln", "fn", "mn", "s1", "s2", "e", "lng"]; | |
| for (var i in a) { |
This file contains hidden or 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
| SELECT id, link, name, hours_together, coef | |
| FROM ( | |
| SELECT my_users.user_id, COUNT (*)::float / 12 AS hours_together, COUNT(*)::float / user_coef.their_hours AS coef | |
| FROM online{$current_user} LEFT JOIN online{$current_user} AS my_users | |
| ON my_users.status = online{$current_user}.status | |
| INNER JOIN (SELECT user_id, COUNT(*) AS their_hours | |
| FROM online{$current_user} | |
| GROUP BY user_id) AS user_coef | |
| ON user_coef.user_id = my_users.user_id | |
| WHERE online{$current_user}.user_id = {$user} |
This file contains hidden or 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
| #!/bin/bash | |
| while read url ; do | |
| wget -O- -T 2 http://www.thebestofrussia.ru/ru/photo/162473/vote -e use_proxy=yes -e http_proxy=$url > /dev/null && echo $url >> worklist2 & | |
| done < list |
NewerOlder