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
| # This is the CMakeCache file. | |
| # For build in directory: c:/Users/battl/OneDrive/Documents/Work/vcpkg/buildtrees/osgearth/x64-windows-dbg | |
| # It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe | |
| # You can edit this file to change values found and used by cmake. | |
| # If you do not want to change any of the values, simply exit the editor. | |
| # If you do want to change a value, simply edit, save, and exit the editor. | |
| # The syntax for the file is as follows: | |
| # KEY:TYPE=VALUE | |
| # KEY is the name of a variable in the cache. | |
| # TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. |
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
| [osgEarth] [Earth Plugin] Forced load: osgEarthUtil.dll | |
| [osgEarth] [EarthSerializer2] Loaded extension lib "osgPlugins-3.5.6/osgdb_osgearth_viewpoints.dll" | |
| [osgEarth] [Map] cache=none; policy=read-write; bin=no | |
| [osgEarth] hashConfFinal = { | |
| "elevation" : { | |
| "driver" : "tms", | |
| "url" : "http://readymap.org/readymap/tiles/1.0.0/116/" | |
| } | |
| } |
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
| Source: osgearth | |
| Version: 2.9 | |
| Description: osgEarth - Dynamic map generation toolkit for OpenSceneGraph Copyright 2015 Pelican Mapping. | |
| Build-Depends: osg |
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
| ### INSTALLATION ### | |
| # install | |
| rpm -i ${packagename}.rpm | |
| # install with progress | |
| rpm -ivh ${packagename}.rpm | |
| # install in full-on debug mode | |
| rpm -ivvvh ${packagename}.rpm |
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
| Show Last Commit on each remote branch | |
| for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r | |
| Raw |
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
| <Style | |
| BasedOn="{StaticResource MetroListView}" | |
| TargetType="{x:Type ListView}"> | |
| <Setter Property="ScrollViewer.CanContentScroll" Value="True" /> | |
| <Setter Property="ScrollViewer.IsDeferredScrollingEnabled" Value="True" /> | |
| <Setter Property="VirtualizingStackPanel.IsVirtualizing" Value="True" /> | |
| <Setter Property="VirtualizingStackPanel.VirtualizationMode" Value="Recycling" /> | |
| </Style> |
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
| using System; | |
| using Moq; | |
| using Xunit; | |
| public class BigMethodClass | |
| { | |
| private readonly IBitmapOperations _bitmapOperations; | |
| public BigMethodClass( IBitmapOperations bitmapOperations ) |
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
| moq.SetupSet( s =>s.ShapeColor = It.IsAny<Color>()).CallBack<Color>( c => moq.SetupGet( s => s.ShapeColor).Returns( c) ); | |
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
| if (radHiragana.IsChecked == true) { | |
| strExpression = "/kana/hirg/aiueo/*"; | |
| strExpression = XPaths.aiueo.hirg[randomKana.Next( XPaths.aiueo.hirg .Length)]; | |
| GetKana(nav, strExpression); | |
| } | |
| else if (radKatakana.IsChecked == true) { | |
| strExpression = "/kana/kata/aiueo/*"; | |
| strExpression = XPaths.aiueo.kata[randomKana.Next( XPaths.aiueo.kata.Length )]; | |
| GetKana(nav, strExpression); | |
| } |
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
| using NUnit.Framework; | |
| namespace Project | |
| { | |
| public static class FizzBuzz | |
| { | |
| public static string Compute( int inputNumber ) | |
| { | |
| if ( inputNumber % 3 == 0 && inputNumber % 5 == 0 ) | |
| return "FizzBuzz"; |