- 1 cup sour cream
- 6 tbsp butter
- 2 eggs
- 1/2 cup sugar
- 2 1/2 cups flour
- 1 tsp vanilla
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 version="1.0" encoding="utf-8" ?> | |
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
xmlns:meadowgraphicstester="clr-namespace:MeadowGraphicsTester" | |
x:Class="MeadowGraphicsTester.MainPage" | |
Title="Meadow Graphics" | |
Padding="20"> | |
<Grid RowDefinitions="Auto, Auto, Auto, *" RowSpacing="20"> | |
<Label Text="240 x 240" HorizontalOptions="Center" FontSize="Title" Grid.Row="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
<Grid ColumnDefinitions="*,*" RowDefinitions="*,Auto"> | |
<Button Text="Abort" | |
Grid.Column="0" | |
Grid.Row="1" | |
BackgroundColor="Blue" | |
TextColor="White" | |
Margin="10, 0, 5, 15" | |
CornerRadius="4" /> | |
<Button Text="OK" |
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 Foundation | |
import Mapbox | |
class MapViewDelegate : NSObject, MGLMapViewDelegate | |
{ | |
var callback:MapboxWrapperCallback | |
public var mapStyle:MGLStyle | |
public init(callback:MapboxWrapperCallback) | |
{ |
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 Android.App; | |
using Android.OS; | |
using Android.Runtime; | |
using Android.Support.Design.Widget; | |
using Android.Support.V7.App; | |
using Android.Views; | |
using Android.Widget; | |
// <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
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
// Add this to your module's build.gradle | |
// then run: | |
// gradlew :module-name:copyImpl | |
// The deps will be in the /module-name/downloadedlibs/* dir | |
configurations.implementation.setCanBeResolved(true) | |
configurations.api.setCanBeResolved(true) | |
task copyImpl(type: Copy) { | |
from configurations.implementation | |
into "downloadedlibs" |
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
#include <ESP8266WiFi.h> | |
#include <ESP8266mDNS.h> // Include the mDNS library | |
const char* ssid = "JJAGD"; | |
const char* password = ""; | |
// Assign output variables to GPIO pins | |
const int pinHeater = 4; | |
const int pinPump1 = 5; | |
const int pinPump2 = 12; |
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
- platform: Android | |
outputBasePath: "../PoolMathApp.Droid/Resources" | |
assets: | |
- file: "./dropdown.svg" | |
size: 12x12 | |
- file: "./google.svg" | |
size: 20x20 | |
- file: "./facebook.svg" | |
size: 20x20 | |
- file: "./twitter.svg" |
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
// Nuget: Xamarin.Android.Arch.Work.Runtime | |
var r = PeriodicWorkRequest.Builder.From<MyWorker>(TimeSpan.FromSeconds(5)) | |
.SetConstraints(new Constraints.Builder() | |
.SetRequiresCharging(true) | |
.SetRequiredNetworkType(NetworkType.Unmetered) | |
.Build()) | |
.Build(); | |
WorkManager.Instance.Enqueue(r); |
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
/////////////////////////////////////////////////////////////////////////////// | |
// COMMAND LINE ARGUMENTS | |
// | |
// --localSource [a directory path or URL to a NuGet source] | |
// This can be used to provide access to the build | |
// artifacts to use as the base for the fat | |
// packages. | |
// --packagesPath [a directory path to download NuGet packages to] | |
// This can be used to change where the existing | |
// packages get downloaded to temporarily. |
NewerOlder