For example, you want to set 40% alpha transparence to #000000
(black color), you need to add 66
like this #66000000
.
This file contains 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
/****************************************************************************** | |
Online C Compiler. | |
Code, Compile, Run and Debug C program online. | |
Write your code in this editor and press "Run" button to compile and execute it. | |
*******************************************************************************/ | |
#include <stdio.h> | |
#include <stdbool.h> |
This file contains 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 System.Reactive.Disposables; | |
namespace cannect.Core | |
{ | |
public class DisposableObject : ICancelable | |
{ | |
public bool IsDisposed { get; private set; } | |
public void Dispose() |
This file contains 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> | |
<body> | |
<table class="wiki_table sortable" style="width: 93.9397%; height: 2559px;"> | |
<thead> | |
<tr> | |
<td> | |
<h4>ACTION</h4> | |
</td> | |
<td colspan="2"> |
This file contains 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 System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using Couchbase.Lite; | |
using Couchbase.Lite.Mapping; | |
using FluentAssertions; | |
using NUnit.Framework; | |
// ReSharper disable TailRecursiveCall |
This file contains 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 TargetType="Switch"> | |
<Setter Property="OnColor" Value="{DynamicResource SwitchOnColor}" /> | |
<Setter Property="ThumbColor" Value="{DynamicResource SwitchOnThumbColor}" /> | |
<Style.Triggers> | |
<Trigger TargetType="Switch" Property="IsToggled" Value="False"> | |
<Setter Property="ThumbColor" Value="{DynamicResource SwitchOffThumbColor}" /> | |
</Trigger> | |
</Style.Triggers> | |
</Style> |
This file contains 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
<CollectionView ItemsSource="{Binding Addresses}" | |
VerticalOptions="Start" | |
SelectionMode="Single" | |
HeightRequest="350" | |
SelectionChanged="OnItemSelected"> | |
<CollectionView.EmptyView> | |
<Label Text="No Results (l10n)" TextColor="{StaticResource OsloGrey}" Margin="10" /> | |
</CollectionView.EmptyView> | |
<CollectionView.ItemTemplate> | |
<DataTemplate> |
This file contains 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
[user] | |
name = MY NAME | |
email = [email protected] | |
initials = ME | |
[branches] | |
default = master | |
[rebase] | |
autoStash = true | |
[alias] | |
co = checkout |
This file contains 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.Triggers> | |
<DataTrigger TargetType="Grid" Binding="{Binding CurrentOrientation, Source={x:Static Device.Info}}" Value="{x:Static internals:DeviceOrientation.Portrait}" > | |
<Setter Property="FlexLayout.Basis" Value="50%" /> | |
</DataTrigger> | |
<DataTrigger TargetType="Grid" Binding="{Binding CurrentOrientation, Source={x:Static Device.Info}}" Value="{x:Static internals:DeviceOrientation.Landscape}" > | |
<Setter Property="FlexLayout.Basis" Value="33%" /> | |
</DataTrigger> | |
</Grid.Triggers> |
This file contains 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
Set-Alias less "C:\Program Files\Git\usr\bin\less.exe" | |
function f($text, $files="*.*") | |
{ | |
findstr /spin $text $files | less | |
} |
NewerOlder