Short URL: https://git.io/vPNcb
- Set of exclusive rights granted to the author of a creative work
- Limited period of time
- Form of intellectual property, a category of virtual "property" that also includes:
| L = [x*x*x for x in range(10)] | |
| for i in L: | |
| print L |
Short URL: https://git.io/vPNcb
| /** | |
| * Adapted from "Heathens" by Twenty One Pilots | |
| * (C) Warner/Chappell Music, Inc. | |
| * | |
| * All original modifications are (C) Aidan Fitzgerald and licensed under the | |
| * Creative Commons Attribution 4.0 International License. | |
| * https://creativecommons.org/licenses/by/4.0 | |
| */ | |
| function you() { | |
| friends.forEach(function(friend) { |
| #!/bin/sh | |
| # 1. Add the Spotify repository signing key to be able to verify downloaded packages | |
| sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886 | |
| # 2. Add the Spotify repository | |
| echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list | |
| # 3. Update list of available packages | |
| sudo apt-get update |
| *~ | |
| *.o | |
| a.out |
| #!/bin/sh | |
| for i in `seq 1 15`; | |
| do | |
| wget "https://s3.amazonaws.com/iq-cache/A9X6594/gallery/1000349181/1200/05003423($i).jpg" -O $i.jpg | |
| done |