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
<xml> | |
<a r="err"> | |
</a> | |
</xml> |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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 CoffeeMaker { | |
@Inject Lazy<Heater> heater; // Don't want to create a possibly costly heater until we need it. | |
@Inject Pump pump; | |
...... | |
class Thermosiphon implements Pump { | |
private final Heater heater; | |
@Inject |
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>------ Build started: Project: ViewPagerIndicator, Configuration: Debug Any CPU ------ | |
1> Reading AcwMapFile: Z:\Volumes\MySD\Download\viewpager\viewpager_source_WinVS\ViewPagerIndicator\ViewPagerIndicator\obj\Debug\acw-map.txt | |
1> AcwMapFile: ViewPagerIndicator.TestFragment = viewpagerindicator.TestFragment | |
1> AcwMapFile: ViewPagerIndicator.TestFragmentAdapter = viewpagerindicator.TestFragmentAdapter | |
1> AcwMapFile: ViewPagerIndicator.BaseSampleActivity = viewpagerindicator.BaseSampleActivity | |
1> AcwMapFile: ViewPagerIndicator.ActivityListItem = viewpagerindicator.ActivityListItem | |
1> AcwMapFile: ViewPagerIndicator.TestTitleFragmentAdapter = viewpagerindicator.TestTitleFragmentAdapter | |
1> AcwMapFile: ViewPagerIndicator.SampleCirclesDefault = viewpagerindicator.SampleCirclesDefault | |
1> AcwMapFile: ViewPagerIndicator.SampleCirclesInitialPage = viewpagerindicator.SampleCirclesInitialPage | |
1> AcwMapFile: ViewPagerIndicator.SampleCirclesSnap = viewpagerindicator.SampleCirclesSnap |
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>------ Build started: Project: ViewPagerIndicator, Configuration: Debug Any CPU ------ | |
1> Reading AcwMapFile: Z:\Volumes\MySD\Download\viewpager\viewpager_source_WinVS\ViewPagerIndicator\ViewPagerIndicator\obj\Debug\acw-map.txt | |
1> AcwMapFile: ViewPagerIndicator.TestFragment = viewpagerindicator.TestFragment | |
1> AcwMapFile: ViewPagerIndicator.TestFragmentAdapter = viewpagerindicator.TestFragmentAdapter | |
1> AcwMapFile: ViewPagerIndicator.BaseSampleActivity = viewpagerindicator.BaseSampleActivity | |
1> AcwMapFile: ViewPagerIndicator.ActivityListItem = viewpagerindicator.ActivityListItem | |
1> AcwMapFile: ViewPagerIndicator.TestTitleFragmentAdapter = viewpagerindicator.TestTitleFragmentAdapter | |
1> AcwMapFile: ViewPagerIndicator.SampleCirclesDefault = viewpagerindicator.SampleCirclesDefault | |
1> AcwMapFile: ViewPagerIndicator.SampleCirclesInitialPage = viewpagerindicator.SampleCirclesInitialPage | |
1> AcwMapFile: ViewPagerIndicator.SampleCirclesSnap = viewpagerindicator.SampleCirclesSnap |
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
[Activity(Label = "Circles/With Listener3")] | |
[IntentFilter(new[] { Intent.ActionMain }, Categories = new[] { "mono.viewpagerindicator.sample" })] | |
public class ProductTour : BaseActivity | |
{ | |
... | |
} |
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
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
<CodeSnippet Format="1.0.0"> | |
<Header> | |
<Title>MVVMCross Command</Title> | |
<Shortcut>commandm</Shortcut> | |
<Description>Code snippet of MVVM Command </Description> | |
<Author>Sherlock</Author> | |
<SnippetTypes> | |
<SnippetType>Expansion</SnippetType> | |
</SnippetTypes> |
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
# Import file "Passcode" | |
passcode = Framer.Importer.load("imported/Passcode@1x") | |
instructionY=passcode.instructions.y | |
pincodeY=passcode.pinCode.y | |
passcode.instructions.y=Screen.height | |
passcode.pinCode.y=Screen.height | |
passcode.logo.scale=0 | |
passcode.keyPad.opacity=0 |
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
for lay in passcode.pinCode.subLayers | |
lay.scale=1 | |
lay.animate | |
properties: | |
scale: 3 | |
time:3 | |
repeat:2 |
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
for lay in passcode.pinCode.subLayers | |
lay.scale=1 | |
lay.animate | |
properties: | |
#設定元件的放大比例 | |
scale: 3 | |
#設定動畫的執行長度 | |
time:3 | |
#設定動畫的執行次數 |
OlderNewer