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
0.0.0.0 a-0001.a-msedge.net | |
0.0.0.0 a-0002.a-msedge.net | |
0.0.0.0 a-0003.a-msedge.net | |
0.0.0.0 a-0004.a-msedge.net | |
0.0.0.0 a-0005.a-msedge.net | |
0.0.0.0 a-0006.a-msedge.net | |
0.0.0.0 a-0007.a-msedge.net | |
0.0.0.0 a-0008.a-msedge.net | |
0.0.0.0 a-0009.a-msedge.net | |
0.0.0.0 a-msedge.net |
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
#!/usr/bin/env powershell | |
function Prepend-Idempotent { | |
# the delimiter is expected to be just 1 unique character | |
# otherwise there may be problems with trimming | |
param ( | |
[string]$InputString, | |
[string]$OriginalString, | |
[string]$Delimiter = '', |
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
/** | |
* (C) 2013 HealthConnect NV. All rights reserved. | |
*/ | |
package magnifierdemo; | |
import javafx.beans.binding.DoubleBinding; | |
import javafx.beans.property.BooleanProperty; | |
import javafx.beans.property.BooleanPropertyBase; | |
import javafx.beans.property.DoubleProperty; | |
import javafx.beans.property.DoublePropertyBase; |