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
$remoteport = bash.exe -c "ifconfig eth0 | grep 'inet '" | |
$found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}'; | |
if( $found ){ | |
$remoteport = $matches[0]; | |
} else{ | |
echo "The Script Exited, the ip address of WSL 2 cannot be found"; | |
exit; | |
} |
Run the .NET Core SDK docker image and share your working directory containing your .csproj file at /home
in the container.
On Linux/macOS:
docker run --interactive --tty --rm --volume "$(pwd):/home" mcr.microsoft.com/dotnet/core/sdk:2.2 /bin/bash
On Windows:
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>IncompatiblePaths</key> | |
<array> | |
<dict> | |
<key>Application Name</key> | |
<string>Sxs Memory Card Driver</string> | |
<key>Blurb</key> |
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
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"strconv" | |
"strings" |
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
#!/bin/bash | |
echo "-- installing mailcatcher -- " | |
apt-get install ruby ruby-dev ruby-all-dev sqlite3 libsqlite3-dev -y | |
gem install mailcatcher | |
echo '[Unit] | |
Description = MailCatcher |
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
// go get github.com/andlabs/ui | |
// go run main.go | |
// go build -ldflags "-H=windowsgui" main.go | |
package main | |
import ( | |
"github.com/andlabs/ui" | |
) | |
var window *ui.Window |
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
ftp://ftp.intron.ac/ | |
ftp://ftp.ox.ac/ | |
ftp://ftp.robelle3000.ai/ | |
ftp://ftp.linux.org.ar/ | |
ftp://ftp.secyt.gov.ar/ | |
ftp://eclipt.uni-klu.ac.at/ | |
ftp://ftp.ad.or.at/ | |
ftp://ftp.adis.at/ | |
ftp://ftp.ai.univie.ac.at/ | |
ftp://ftp.cg.tuwien.ac.at/ |
OrmLite has extensive support for Querying exposing an intuitive 1:1 Typed API that maps cleanly and has a high affinity with SQL that's not only natural to write but also easy to predict what SQL it generates.
For simple queries you can use terse lambda Expressions to specify the filter conditions you want:
For more advanced queries you can leverage the SqlExpression
builder which provides a Typed API that closely follows
NewerOlder