This file contains hidden or 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
/* | |
LoRa Duplex communication | |
Sends a message every half second, and polls continually | |
for new incoming messages. Implements a one-byte addressing scheme, | |
with 0xFF as the broadcast address. | |
Uses readString() from Stream class to read payload. The Stream class' | |
timeout may affect other functuons, like the radio's callback. For an |
This file contains hidden or 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; | |
public abstract class FractalNoise | |
{ | |
public abstract long GetSeed(); | |
public abstract double Eval(double x); | |
public abstract double Eval(double x, double y); |
This file contains hidden or 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
In /etc/autofs.conf | |
Change around line 38: | |
#browse_mode = no | |
browse_mode = yes | |
Create /etc/auto.map | |
nfsexample -rw,soft,intr,rsize=8192,wsize=8192 nfs.server.lan:/nfsshare | |
oldsmb -fstype=cifs,sec=ntlm,rw,credentials=/etc/creds/old.smb.password,file_mode=0777,dir_mode=0777,noperm ://oldsmb.server.lan/sharename |
OlderNewer