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
;;; copilot-helper --- Just helping run copilot safely. | |
;;; Commentary: | |
;; Reworking of https://github.com/zerolfx/copilot.el and | |
;; https://robert.kra.hn/posts/2023-02-22-copilot-emacs-setup/ | |
;;; Code: | |
(use-package copilot | |
:straight (:host github :repo "zerolfx/copilot.el" :files ("dist" "*.el")) |
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
from adafruit_ble import BLERadio | |
# from adafruit_ble.advertising import Advertisement | |
# from adafruit_ble.advertising.standard import ProvideServicesAdvertisement | |
found = set() | |
scan_responses = set() | |
running = True | |
count = 0 |
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
# Install brew from https://brew.sh/ then install dfu-util | |
brew install dfu-util | |
# OR install dfu-util from http://dfu-util.sourceforge.net/ | |
# | |
# then plug in and power on your device holding the D and Down buttons | |
# now find your device | |
dfu-util -l | |
# Verify that alt=0 is name="@Internal Flash..." | |
dfu-util -a 0 -D Midicommander_line6HX3x_V5.dfu | |
# Wait for it to finish...you should be good... |
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
library("ggplot2") | |
dataUrl <- "https://covidtracking.com/api/states/daily.csv" | |
c <- read.csv(dataUrl) | |
c$date <- as.Date(as.character(c$date), format = "%Y%m%d") | |
c_tmp <- c[order(c[c$date == max(c$date), ]$total, decreasing = TRUE), ] | |
states <- c_tmp[c_tmp$date == max(c_tmp$date), ]$state[1:10] | |
c[is.na(c$pending), ]$pending <- 0 | |
c$ratio <- (c$positive / (c$total - c$pending)) | |
c <- c[c$state %in% states, ] | |
g <- ggplot(c, aes(x = date, y = ratio)) |
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
from bluepy import btle | |
import struct | |
class LumeCube: | |
def __init__(self, mac): | |
self.mac = mac | |
self.SERVICE_UUID = "33826A4C-486A-11E4-A545-022807469BF0" | |
self.LIGHT_CHARACTERISTIC = "33826A4D-486A-11E4-A545-022807469BF0" | |
self.LIGHT_ON = struct.pack('>L', 0xFCA16400) |
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
## From: https://tensorflow.rstudio.com/keras/ | |
library(keras) | |
mnist <- dataset_mnist() | |
x_train <- mnist$train$x | |
y_train <- mnist$train$y | |
x_test <- mnist$test$x | |
y_test <- mnist$test$y | |
## reshape |
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
alias happendToFile='hdfs dfs -appendToFile' | |
alias hcat='hdfs dfs -cat' | |
alias hchecksum='hdfs dfs -checksum' | |
alias hchgrp='hdfs dfs -chgrp' | |
alias hchmod='hdfs dfs -chmod' | |
alias hchown='hdfs dfs -chown' | |
alias hcopyFromLocal='hdfs dfs -copyFromLocal' | |
alias hcopyToLocal='hdfs dfs -copyToLocal' | |
alias hcount='hdfs dfs -count' | |
alias hcp='hdfs dfs -cp' |
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
# Tutorial from: http://bit.ly/2olREnv | |
import numpy | |
from keras.datasets import cifar10 | |
from matplotlib import pyplot | |
from scipy.misc import toimage | |
from keras.models import Sequential | |
from keras.layers import Dense | |
from keras.layers import Dropout | |
from keras.layers import Flatten | |
from keras.constraints import maxnorm |
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 [[ $# -lt 2 ]] ; then | |
echo 'USAGE: ./getit.sh domain.com http://www.domain.com/path' | |
exit 1 | |
fi | |
wget \ | |
--recursive \ | |
--no-clobber \ | |
--page-requisites \ | |
--html-extension \ |
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 | |
## zip=94114 | |
zip="ASI|SG|SN---|SINGAPORE" | |
if [ -n "$1" ]; then | |
zip="$1" | |
fi | |
ip=`ip addr show scope global | grep inet | cut -d' ' -f6 | cut -d/ -f1 | tr "\n" " "` | |
oip=`wget -q -O - http://icanhazip.com/ | tail` |
NewerOlder