No Picture
Technology

Unlocking Brave browser with locked profile

December 29, 2023 Out of Work Poet 0

After an unexpected shutdown, Brave browser would not start reporting, [14454:14454:1229/090958.661814:ERROR:process_singleton_posix.cc(353)] The profile appears to be in use by another Brave process (5970) on another computer (localhost.localdomain). Brave has locked the profile so that it […]

No Picture
Miscellaneous

Biology Word List

July 17, 2023 Out of Work Poet 0

A large biology word list including over a thousand words related to the study of biology, mostly high school level. abiotic factorabscisic acidabscissionabsolute ageaccessory pigmentacclimationacetyl CoAacidacid precipitationacoelomateactivation energyactive siteactive transportadaptationadaptationadaptive radiationadenosine triphosphate (ATP)adhesionadventitious rootaerobic respirationaflatoxinagarage […]

No Picture
Technology

Importing CSV Data into MySQL

March 9, 2022 Out of Work Poet 0

Once you have created the table, from the mySQL command prompt use: LOAD DATA LOCAL INFILE ‘/path/to/csv/file.csv’ INTO TABLE table_name FIELDS TERMINATED BY ‘,’ OPTIONALLY ENCLOSED BY ‘\”‘ LINES TERMINATED BY ‘\r\n’ (col1,col2,…); Once imported, […]

R language
R

Installing and updating packages in R

February 19, 2020 Out of Work Poet 0

Single package installation can be performed with install.packages(“package_name”) For example, install.packages(“caret”) Usually, R will install package dependencies. For some larger packages with a long chain of dependencies, such as the caret package, install.packages(“caret”, dependencies=c(“Depends”, “Suggests”)) […]