Skip to content

Instantly share code, notes, and snippets.

View dagbrown's full-sized avatar

Dave Brown dagbrown

View GitHub Profile
Python 2.7.7 (default, Jul 19 2014, 21:44:39)
[GCC 4.8.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> [ 1, 2, 3 ] + "hi there"
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: can only concatenate list (not "str") to list
>>> x = [ 1,2,3 ];x += "hi there"; x
[1, 2, 3, 'h', 'i', ' ', 't', 'h', 'e', 'r', 'e']
>>>
### Keybase proof
I hereby claim:
* I am dagbrown on github.
* I am dagbrown (https://keybase.io/dagbrown) on keybase.
* I have a public key whose fingerprint is 95F0 71A2 AF40 FB7A 0377 EC5B 3E00 3B56 5A8C 22A6
To claim this, I am signing this object:
@dagbrown
dagbrown / gist:4b1f3b75817096434f7564ce98e8c193
Created March 18, 2020 10:15
Broken ISO build caused by ncurses bump
checking for wctomb... no
checking for mktime... no
checking definition to turn on extended curses functions... unknown
checking for unctrl.h... unctrl.h
checking for flushinp... no
checking for getattrs... no
checking for getbegx... no
checking for getbegy... no
checking for getbegyx... no
checking for getcurx... no