Skip to content

Instantly share code, notes, and snippets.

View michellescripts's full-sized avatar

Michelle Bergquist michellescripts

  • Denver, CO
View GitHub Profile
In project:
1. Double check that package.json has a start script
In command line, in PROJECT folder - add Heroku:
2. which heroku
3. heroku create herokuSiteName
4. git remote -v (shows you the heroku remote)
In command line, in PROJECT folder - add DB to Heroku:
5. heroku addons:create heroku-postgresql

Keybase proof

I hereby claim:

  • I am michellescripts on github.
  • I am mbergquist (https://keybase.io/mbergquist) on keybase.
  • I have a public key ASA1Ju1e5gQ3z4auHp3cb6nEXJTjaGZx6bAJf1bFhLoSBwo

To claim this, I am signing this object:

```
$ brew services stop postgres
$ cd /usr/local/var
$ ls _(you should see a postgres file)_
$ mv postgres **secondpostgres** _(new name for old data)_
$ ls _(your old postgres should now be renamed)_
Krisp:
Download KRISP here
IntelliJ Config
Remove ';' warnings from java code style
`Editor > Code Style > Javascript`
Use single quotes in JavaScrip code style
set 'show param name hints appearance' to false/off
`Editor > General > Code Completion`
brew install openjdk@11
brew link openjdk@11 --force
@michellescripts
michellescripts / git-together
Last active August 8, 2019 19:43
git it together
git-together: https://github.com/kejadlen/git-together
Run `brew install pivotal/tap/git-together`
Add `alias git=git-together` to `~/.bash_profile` and source it
Make a new file in ~ called `.git-together`
Run `git config --global --add include.path ~/.git-together` to set the global file
- Will need to be run in ALL repos using that file^^^
Run `git config --file .git-together --add git-together.domain pivotal.io` to set the global domain
@michellescripts
michellescripts / gradle&kotlin pretty print tests
Created July 29, 2020 19:10
add to your build.gradle.kts to print your test results in a readable way!
tasks.withType<Test> {
systemProperty("junit.jupiter.execution.parallel.enabled", true)
testLogging {
// set options for log level LIFECYCLE
events(
TestLogEvent.FAILED,
TestLogEvent.PASSED,
TestLogEvent.SKIPPED,
@michellescripts
michellescripts / bin_ane
Created July 29, 2020 19:13
ane script
#!/usr/bin/env bash
git commit --amend --no-edit
@michellescripts
michellescripts / bin_ane-r-u-ok
Created July 29, 2020 19:13
ane-r-u-ok script
#!/usr/bin/env bash
ane && push