The following links are mentioned during the talk:
- supports PSRAM, sutable for projects with GUI
- ESP32-S3-BOX-3 - JoyStick-Controller Example
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 | |
for I in *; do | |
mv $I `echo $I|tr [A-Z] [a-z]` | |
done |
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
#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 |
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
task helloFromGist() { | |
description "Say Hello! Code stored as gist at Github." | |
doLast { | |
println "Hello from gist!" | |
} | |
} |
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
zmodload zsh/complist | |
export ZLS_COLORS='' | |
#Saving history | |
HISTSIZE=200 | |
HISTFILE=~/.zsh_history | |
SAVEHIST=200 | |
function precmd { |
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 | |
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 ] |