- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
- Ultimate Code Generator - https://webcode.tools/
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
| [user] | |
| name = Jimmy Briggs | |
| email = [email protected] | |
| signingKey = FFD4D9440BA44BE99337C17292832E9C1B139DB6 | |
| [core] | |
| editor = code --wait --new-window | |
| longpaths = true | |
| attributesFile = ~/.config/git/.gitattributes | |
| excludesFile = ~/.config/git/.gitignore |
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
| # ------------------------------------------------------------------------ | |
| # | |
| # Title : R Configuration / Setup Script | |
| # By : Jimmy Briggs | |
| # Date : 2019-12-20 | |
| # | |
| # ------------------------------------------------------------------------ | |
| # NOTE: This script should be run in RStudio as an Admin... |
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
| cache_list <- function() { | |
| list.files( | |
| cache_path(), | |
| pattern = ".qs", | |
| ignore.case = TRUE, | |
| recursive = TRUE, | |
| full.names = TRUE | |
| ) | |
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
| gistr |
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
| # NOTE: This workflow is overkill for most R packages | |
| # check-standard.yaml is likely a better choice | |
| # usethis::use_github_action("check-standard") will install it. | |
| # | |
| # For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag. | |
| # https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions | |
| on: | |
| push: | |
| branches: | |
| - master |
- If you fix a bug or create a new feature – do it in a separate branch!
git clone git://github.com/jimbrig/repo.git
cd repo
git checkout -b bugfix_branch
Before merging or starting a PR, consider creating a patch!
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
| :: Thanks to blak3r for creating the part to check for admin rights | |
| :: https://stackoverflow.com/questions/4051883/batch-script-how-to-check-for-admin-rights | |
| echo OFF | |
| NET SESSION >nul 2>&1 | |
| IF %ERRORLEVEL% EQU 0 ( | |
| ECHO Administrator PRIVILEGES Detected! | |
| ) ELSE ( | |
| echo ######## ######## ######## ####### ######## | |
| echo ## ## ## ## ## ## ## ## ## |
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
| msys2 vs msys vs msysgit | |
| MinGW doesn't provide a linux-like environment, that is MSYS(2) and/or Cygwin | |
| Cygwin is an attempt to create a complete UNIX/POSIX environment on Windows. | |
| MinGW is a C/C++ compiler suite which allows you to create Windows executables - you only | |
| need the normal MSVC runtimes, which are part of any normal Microsoft Windows installation. | |
| MinGW provides headers and libraries so that GCC (a compiler suite, | |
| not just a "unix/linux compiler") can be built and used against the Windows C runtime. |