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
| // Available variables which can be used inside of strings. | |
| // ${workspaceRoot}: the root folder of the team | |
| // ${file}: the current opened file | |
| // ${fileBasename}: the current opened file's basename | |
| // ${fileDirname}: the current opened file's dirname | |
| // ${fileExtname}: the current opened file's extension | |
| // ${cwd}: the current working directory of the spawned process | |
| { | |
| "version": "0.1.0", |
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
| Stretch Name | Start Year | End Year | |
|---|---|---|---|
| The Universe | -14500000000 | ||
| Sun as Main Sequence Star | -4500000000 | 5500000000 | |
| Earth as a Physical Planet | -4400000000 | 5500000000 | |
| Earth with Liquid Water | -4400000000 | 1000000000 | |
| Prokaryotes | -4000000000 | ||
| Photosynthesis | -3500000000 | ||
| O2 Rich Atmosphere | -2300000000 | ||
| Eukaryotes | -2200000000 | ||
| Multicellular Life | -1500000000 |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Table</title> | |
| </head> | |
| <body> | |
| <div id="myDivTable"></div> |
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
| # Make directory if it doesn't exist | |
| directory = 'media/csvs/' | |
| if not os.path.exists(directory): | |
| os.makedirs(directory) | |
| path = directory + 'student_data.csv' | |
| csvFile = open(path, 'w') | |
| csvFile.write('Name,Contact Number,email\n') | |
| # Iterate through queryset or list and do the following for each iteration |
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
| # http://technet.microsoft.com/en-us/library/ee692685.aspx | |
| # F7 = history | |
| # Alt+F7 = history -c | |
| # F8 = Ctrl+R | |
| Set-Location C: | |
| # Easier navigation | |
| Set-Alias o start | |
| function oo {start .} |