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
| gsettings set org.gnome.shell.clock show-date true |
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
| (function() { | |
| var x = ''; | |
| function myFunction() { | |
| console.log('Hello: ' + x); | |
| } | |
| x = 'Bob'; | |
| myFunction(); |
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
| # a generator that yields items instead of returning a list | |
| def firstn(n): | |
| num = 0 | |
| while num < n: | |
| yield num | |
| num += 1 | |
| sum_of_first_n = sum(firstn(1000000)) |
OlderNewer