I hereby claim:
- I am tedwardd on github.
- I am tedward (https://keybase.io/tedward) on keybase.
- I have a public key ASCMQX58zo92lLp0QK4PwSSA18SgtxRr_wuzsWe9EVxH3Ao
To claim this, I am signing this object:
| ############################################################# | |
| # # | |
| # Configuration file for Dire Wolf # | |
| # # | |
| # Linux version # | |
| # # | |
| ############################################################# | |
| # | |
| # Consult the User Guide for more details on configuration options. | |
| # |
| 2020/04/22 13:29:17 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility. | |
| Use TF_LOG=TRACE to see Terraform's internal logs. | |
| ---- | |
| 2020/04/22 13:29:17 [INFO] Terraform version: 0.12.24 | |
| 2020/04/22 13:29:17 [INFO] Go runtime version: go1.12.13 | |
| 2020/04/22 13:29:17 [INFO] CLI args: []string{"/usr/local/Cellar/tfenv/1.0.2/versions/0.12.24/terraform", "plan"} | |
| 2020/04/22 13:29:17 [DEBUG] Attempting to open CLI config file: /Users/xxxxx/.terraformrc | |
| 2020/04/22 13:29:17 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
| 2020/04/22 13:29:17 [DEBUG] checking for credentials in "/Users/xxxxx/.terraform.d/plugins" | |
| 2020/04/22 13:29:17 [INFO] CLI command args: []string{"plan"} |
I hereby claim:
To claim this, I am signing this object:
| [ 93%] Building C object src/gui/curses/CMakeFiles/weechat_gui_curses.dir/gui-curses-bar-window.o | |
| In file included from /usr/pkg/include/ncursesw/ncurses.h:1969, | |
| from /meta/e/elw/build/weechat-1.9.1/src/gui/curses/gui-curses.h:26, | |
| from /meta/e/elw/build/weechat-1.9.1/src/gui/curses/gui-curses-bar-window.c:42: | |
| /usr/pkg/include/ncurses/unctrl.h:60: error: conflicting types for ‘unctrl’ | |
| /usr/pkg/include/ncurses/unctrl.h:57: note: previous declaration of ‘unctrl’ was here | |
| make[2]: *** [src/gui/curses/CMakeFiles/weechat_gui_curses.dir/gui-curses-bar-window.o] Error 1 | |
| make[1]: *** [src/gui/curses/CMakeFiles/weechat_gui_curses.dir/all] Error 2 | |
| make: *** [all] Error 2 |
| $ pip install --verbose Twisted | |
| Collecting Twisted | |
| 1 location(s) to search for versions of Twisted: | |
| * https://pypi.python.org/simple/twisted/ | |
| Getting page https://pypi.python.org/simple/twisted/ | |
| Looking up "https://pypi.python.org/simple/twisted/" in the cache | |
| Current age based on date: 835 | |
| Freshness lifetime from max-age: 600 | |
| Freshness lifetime from request max-age: 600 | |
| The cached response is "stale" with no etag, purging |
| + pip install -r linux_macos.txt | |
| Processing /home/elw/git-work/lbry-app/lbryum | |
| Processing /home/elw/git-work/lbry-app/lbry | |
| Complete output from command python setup.py egg_info: | |
| Traceback (most recent call last): | |
| File "<string>", line 1, in <module> | |
| File "/tmp/pip-yjmm1575-build/setup.py", line 50, in <module> | |
| long_description = f.read().decode('utf-8') | |
| AttributeError: 'str' object has no attribute 'decode' | |
| adfadfadfadf |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int main() | |
| { | |
| int x; | |
| int *p; | |
| p = (int*)malloc(sizeof(x)); | |
| p = &x; |
| # Sidebar (if it's available) | |
| set sidebar_width=30 | |
| set sidebar_visible=yes | |
| set sidebar_delim='|' | |
| set sidebar_sort=yes | |
| color sidebar_new white red | |
| macro index,pager b '<enter-command>toggle sidebar_visible<enter>' | |
| bind index,pager \CN sidebar-next | |
| bind index,pager \CP sidebar-prev | |
| bind index,pager \CO sidebar-open |
| #include <stdio.h> | |
| int main(int argc, char *argv[]) | |
| { | |
| int i = 0; | |
| // go through each string in argv | |
| // why am I skipping argv[0]? | |
| for (i = 1; i < argc; i++) { |