Skip to content

Commit

Permalink
Update slogan.
Browse files Browse the repository at this point in the history
  • Loading branch information
gruns committed Aug 31, 2020
1 parent 7a26fd7 commit ee849b8
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 13 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</p>


### IceCream is a little library for sweet and creamy debugging.
### IceCream -- Never use print() to debug again

Do you ever use `print()` or `log()` to debug your code? Of course you
do. IceCream, or `ic` for short, makes print debugging a little sweeter.
Expand All @@ -30,7 +30,6 @@ print(foo('123'))

or the more thorough


```python
print("foo('123')", foo('123'))
```
Expand Down
2 changes: 1 addition & 1 deletion icecream/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

#
# IceCream - A little library for sweet and creamy print debugging.
# IceCream - Never use print() to debug again
#
# Ansgar Grunseid
# grunseid.com
Expand Down
6 changes: 3 additions & 3 deletions icecream/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

#
# IceCream - A little library for sweet and creamy print debugging.
# IceCream - Never use print() to debug again
#
# Ansgar Grunseid
# grunseid.com
Expand All @@ -17,5 +17,5 @@
__contact__ = 'grunseid@gmail.com'
__url__ = 'https://github.com/gruns/icecream'
__description__ = (
'Inspect variables, expressions, and program execution with a '
'single, simple function call.')
'Never use print() to debug again; inspect variables, expressions, and '
'program execution with a single, simple function call.')
2 changes: 1 addition & 1 deletion icecream/builtins.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

#
# IceCream - A little library for sweet and creamy print debugging.
# IceCream - Never use print() to debug again
#
# Ansgar Grunseid
# grunseid.com
Expand Down
2 changes: 1 addition & 1 deletion icecream/coloring.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

#
# IceCream - A little library for sweet and creamy print debugging.
# IceCream - Never use print() to debug again
#
# Ansgar Grunseid
# grunseid.com
Expand Down
2 changes: 1 addition & 1 deletion icecream/icecream.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

#
# IceCream - A little library for sweet and creamy print debugging.
# IceCream - Never use print() to debug again
#
# Ansgar Grunseid
# grunseid.com
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

#
# IceCream - A little library for sweet and creamy print debugging.
# IceCream - Never use print() to debug again
#
# Ansgar Grunseid
# grunseid.com
Expand Down
2 changes: 1 addition & 1 deletion tests/install_test_import.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

#
# IceCream - A little library for sweet and creamy print debugging.
# IceCream - Never use print() to debug again
#
# Ansgar Grunseid
# grunseid.com
Expand Down
2 changes: 1 addition & 1 deletion tests/test_icecream.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

#
# IceCream - A little library for sweet and creamy print debugging.
# IceCream - Never use print() to debug again
#
# Ansgar Grunseid
# grunseid.com
Expand Down
2 changes: 1 addition & 1 deletion tests/test_install.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

#
# IceCream - A little library for sweet and creamy print debugging.
# IceCream - Never use print() to debug again
#
# Ansgar Grunseid
# grunseid.com
Expand Down

3 comments on commit ee849b8

@alexmojaki
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gruns
Copy link
Owner Author

@gruns gruns commented on ee849b8 Sep 13, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Huh. Didn't know about this; thank you for the link. I'll be releasing IceCream.js soon and went with Never use console.log() to debug again. Then pre-unified this slogan.

Does an even better, stronger slogan for IceCream come to mind? I'm not immediately opposed to the (very) similar slogan. But I'll think about it.

@alexmojaki
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know. I like both the old and new slogans. The clash is not a big deal. I just thought it was amusing because I've made major contributions to both packages and made my own package with a combination of the features (https://github.com/alexmojaki/snoop). I have many debugging tools in my arsenal, but I still use print() very often. I think cool-RR probably does too, I know he doesn't use PySnooper that often. How often do you use icecream?

Please sign in to comment.