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
| images = images.OrderBy(i=>i.OrderNo); | |
| for (int i =0; i< images.Length; i++) | |
| { | |
| images[i].OrderNo = i+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
| [Migration(1)] | |
| public class FirstMigration : Migration | |
| { | |
| public override void Up() | |
| { | |
| Execute.EmbeddedScript("01-testscript.sql"); | |
| } | |
| public override void Down() | |
| { |
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
| [Migration(1)] | |
| public class FirstMigration : Migration | |
| { | |
| public override void Up() | |
| { | |
| Execute.EmbeddedScript("01-testscript.sql"); | |
| } | |
| public override void Down() | |
| { |
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
| x.For<IEventStoreConnection>() | |
| .Use(c => c.GetInstance<IEventStoreConnectionSource>().GetConnection()); |
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:40-1:58 вокал потише, может еще ревера немного | |
| 2) 4:10 вырезать вокал теранса (маленький кусочек, где Ю ЭН МИ вместе вокал) | |
| 3) 7:35-7:50 я бы сделал вокал чуть потише, а гитарный шум чуть громче | |
| 4) реверс с которого начинается 4й трек - больше фейд ина сделать (более плавно), но закончить его потише | |
| 5) звук зажигалки назад отодвинуть чтобы он тоже вдалеке был и тихо | |
| 6) в кашле убрать 'вступление' убрать ревер и сделать тоже чуть тише | |
| 7) сделать все чики-пуки |
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 sumAsync(x, y, callback){ | |
| var result = x + y; | |
| if (!x || !y){ | |
| callback('x or y undefined '); | |
| } | |
| callback(null, result); | |
| } | |
| function printResult (err, result){ | |
| if (err){ |
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 | |
| . /opt/elasticbeanstalk/env.vars | |
| function error_exit | |
| { | |
| eventHelper.py --msg "$1" --severity ERROR | |
| exit $2 | |
| } | |
| #install not-installed yet app node_modules | |
| if [ ! -d "/var/node_modules" ]; then |
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
| var activities = []; | |
| activities[0] = [{ | |
| from: 0, | |
| to: 6, | |
| width: 100, | |
| void: true // tracker offline | |
| }]; | |
| activities[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
| class Express{ | |
| Dictionary<String, IProcessor> getHandlers = new Dictionary<String, IProcessor>(); | |
| public static void onGet(String url, IProcessor processor){ | |
| getHandlers[url] = processor; | |
| } | |
| public static void get(String url){ | |
| var handler = getHandlers(url); | |
| HttpRequest req = new HttpRequest(url); |
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
| public class LaptopPage extends AbstractPage { | |
| @FindBy(xpath="//ul[@class='schema-filter__list']//span[text()='Apple']") | |
| private ExtendedWebElement appleCheck; | |
| @FindBy(xpath="//div[@id='schema-products']/div[1]//span[@class='i-checkbox__faux']") | |
| private ExtendedWebElement firstItemCheck; | |
| @FindBy(xpath="//div[@id='schema-products']/div[2]//span[@class='i-checkbox__faux']") | |
| private ExtendedWebElement secondItemCheck; |
OlderNewer