Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
name: Security audit | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
paths: | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
jobs: | |
security_audit: |
struct S { | |
int n; | |
mixin property!("field", "get => this.n", "set => this.n = set"); | |
} | |
unittest { | |
import std.conv : to; | |
S s; | |
s.field = 3; | |
assert(s.field == 3); |
Network views tend to be the view of the network from a single node, or small selection of nodes. They are not complete views of the network. This is impossible to achieve. Even if many node views were combined, it would still be incomplete.
These network views, or network maps, have been termed 'visualisers' by the LN community.
Screenshots may reflect older visual styles, and are dated accordingly.
.require <- | |
function(pkg) | |
{ | |
withCallingHandlers({ | |
suppressPackageStartupMessages({ | |
require(pkg, character.only=TRUE, quietly=TRUE) | |
}) | |
}, warning=function(w) { | |
invokeRestart("muffleWarning") | |
}) || { |
cd /opt/local/ | |
curl -O http://dl.ubnt.com/unifi/4.6.3/UniFi.unix.zip | |
pkgin install mongodb-2.6.7 unzip openjdk7 git gmake gcc47 apache-maven javacc | |
unzip UniFi.unix.zip | |
cd UniFi | |
rm bin/mongod | |
ln -s /opt/local/bin/mongod /opt/local/UniFi/bin/ | |
## The snappy library isn't working on Solaris/SmartOS here is how to get a new one. |
diff --git a/config/action.d/ipfilter.conf b/config/action.d/ipfilter.conf | |
index 61420e3..091c92d 100644 | |
--- a/config/action.d/ipfilter.conf | |
+++ b/config/action.d/ipfilter.conf | |
@@ -13,14 +13,14 @@ | |
# Values: CMD | |
# | |
# enable IPF if not already enabled | |
-actionstart = /sbin/ipf -E | |
+actionstart = /usr/sbin/ipf -E |