The following links are mentioned during the talk:
- supports PSRAM, sutable for projects with GUI
- ESP32-S3-BOX-3 - JoyStick-Controller Example
#!/bin/bash | |
if [ -z "$1" ]; then | |
echo "Specify file name" | |
exit 1 | |
fi | |
FILE="$1" | |
VERSION=`grep ' : "v' "$FILE" | sed -e 's/^.* : "v\([^"]*\)*".*$/\1/g' ` | |
VERSION=$[ VERSION + 1 ] |
zmodload zsh/complist | |
export ZLS_COLORS='' | |
#Saving history | |
HISTSIZE=200 | |
HISTFILE=~/.zsh_history | |
SAVEHIST=200 | |
function precmd { |
task helloFromGist() { | |
description "Say Hello! Code stored as gist at Github." | |
doLast { | |
println "Hello from gist!" | |
} | |
} |
#import <Foundation/Foundation.h> | |
#import <SystemConfiguration/SCDynamicStoreCopyDHCPInfo.h> | |
int main(int argc, const char * argv[]) { | |
@autoreleasepool { | |
CFDictionaryRef info = SCDynamicStoreCopyDHCPInfo(NULL, NULL); | |
if (info != NULL) { | |
// code RFC 2132 - http://www.ietf.org/rfc/rfc2132.txt |
#!/bin/bash | |
for I in *; do | |
mv $I `echo $I|tr [A-Z] [a-z]` | |
done |
The following links are mentioned during the talk: