Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
'''__author__ = "Shubham Dokania" | |
# This script will keep on opening the cd player | |
# of a linux pc in every 5 seconds in an infinite loop | |
import os, time | |
time.sleep(5) | |
while 1: | |
try: | |
os.system("eject cdrom") |
This file contains 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
<polymer-element name="mark-down-editor"> | |
<template> | |
<style> | |
#markup, #markdown { | |
width: 50%; | |
float: left; | |
} | |
#editor { | |
width: 80%; | |
height: 250px; |