-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from yunghog/beta-v0.3
Beta v0.3
- Loading branch information
Showing
11 changed files
with
76 additions
and
74 deletions.
There are no files selected for viewing
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +0,0 @@ | ||
# Copyright (c) 1993-2009 Microsoft Corp. | ||
# | ||
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows. | ||
# | ||
# This file contains the mappings of IP addresses to host names. Each | ||
# entry should be kept on an individual line. The IP address should | ||
# be placed in the first column followed by the corresponding host name. | ||
# The IP address and the host name should be separated by at least one | ||
# space. | ||
# | ||
# Additionally, comments (such as these) may be inserted on individual | ||
# lines or following the machine name denoted by a '#' symbol. | ||
# | ||
# For example: | ||
# | ||
# 102.54.94.97 rhino.acme.com # source server | ||
# 38.25.63.10 x.acme.com # x client host | ||
# localhost name resolution is handled within DNS itself. | ||
# 127.0.0.1 localhost | ||
# ::1 localhost | ||
127.0.0.1 www.r2rdownload.com | ||
127.0.0.1 www.elephantafiles.com | ||
127.0.0.1 localhost | ||
::1 localhost | ||
127.0.0.1 musico | ||
::1 musico | ||
127.0.0.1 sc | ||
::1 sc | ||
127.0.0.1 mixtape | ||
::1 mixtape | ||
127.0.0.1 yunghogbeats | ||
::1 yunghogbeats | ||
127.0.0.1 ekathvatheme | ||
::1 ekathvatheme | ||
127.0.0.1 kalasa | ||
::1 kalasa | ||
|
||
|
||
|
||
|
||
|
||
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +0,0 @@ | ||
operatingSystem|Windows | ||
hosts|C:\Windows\system32\drivers\etc\hosts | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#write log.ini | ||
#author : Samartha | ||
import datetime as dt | ||
def log(logDetails): | ||
logFile=open(r'data/log.ini','a+') | ||
now = dt.datetime.now() | ||
now = now.strftime("%Y-%m-%d_%H:%M:%S") | ||
logFile.write(now+'_'+logDetails+'\n') | ||
logFile.close() |
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