Warning! This doc is pretty outdated, I'm rewriting it right now and I'll update this as soon as it's done.
First, install the Go compiler from Google's Go Website: https://golang.org/dl/
First, install the Go compiler from Google's Go Website: https://golang.org/dl/
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
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/ |
// 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 |
#!/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 |
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"strconv" | |
"strings" |
<?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> |
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:
$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; | |
} |