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
#include <Arduino.h> | |
#include <TimeLib.h> | |
#include <SD.h> | |
char FileName[100]; | |
void newFilename(char* FileName1); | |
void newFile(char* FileName1); | |
File myFile; | |
void setup() { |
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
# Testing methods for inserting data from a file into a SQLite DB | |
library(DBI) | |
db<-dbConnect(RSQLite::SQLite(),dbname=":memory") | |
dbExecute(db, | |
"CREATE TABLE TABLE1( | |
MARKS INTEGER, | |
ROLLNUM INTEGER, |
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
#!/usr/bin/env r | |
# Script to get REDICS data for Kalina | |
library(amstools) | |
library(tidyverse) | |
con <- conNOSAMS() | |
data <- getRecSR(c(148044, 148045, 148043, 144633, 159579)) | |
write_csv(data, "REDICS_stds.csv") | |
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
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
cinst neovim | |
cinst poshgit | |
cinst visualstudiocode | |
cinst googlechrome |