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
def freed_from_desire(): | |
return "NANANANANANANANAN NAAAAAAAA NAAAA NAAAA NAAA" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
+(/opt/homebrew/bin/pyenv:23): enable -f /opt/homebrew/bin/../libexec/pyenv-realpath.dylib realpath | |
+(/opt/homebrew/bin/pyenv:30): '[' -z '' ']' | |
++(/opt/homebrew/bin/pyenv:32): type -P readlink | |
+(/opt/homebrew/bin/pyenv:32): READLINK=/usr/bin/readlink | |
+(/opt/homebrew/bin/pyenv:33): '[' -n /usr/bin/readlink ']' | |
+(/opt/homebrew/bin/pyenv:58): '[' -z /Users/julien/.pyenv ']' | |
+(/opt/homebrew/bin/pyenv:61): PYENV_ROOT=/Users/julien/.pyenv | |
+(/opt/homebrew/bin/pyenv:63): export PYENV_ROOT | |
+(/opt/homebrew/bin/pyenv:65): '[' -z '' ']' | |
+(/opt/homebrew/bin/pyenv:66): PYENV_DIR=/opt/homebrew/lib/pkgconfig |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
import openstudio | |
import pytest | |
def test_remove_connections(): | |
m = openstudio.model.Model() | |
p = openstudio.model.PlantLoop(m) | |
c = openstudio.model.CoilCoolingWater(m) | |
n_ori = len(m.getObjectsByType("OS:Connection")) | |
assert n_ori == 12 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
[alias] | |
fixup = "!f() { \ | |
git diff --cached --quiet && echo \"Nothing is staged\" && exit 1; \ | |
fixup_commit=$(git log --oneline | fzf --height=40% --layout=reverse --prompt='git log>' --with-nth='2..' --preview='git show --color=always {1}'); \ | |
echo \"Amending commit: $fixup_commit\"; \ | |
fixup_commit_sha=$(echo $fixup_commit | awk '{print $1}'); \ | |
git commit --fixup=$fixup_commit_sha; \ | |
git rebase --update-refs --autosquash -i $fixup_commit_sha^1; |
NewerOlder