Skip to content

Commit e4483b5

Browse files
Merge pull request HarshCasper#4 from HarshCasper/master
lastest changes in harsh
2 parents 66d01f4 + 7944ad3 commit e4483b5

File tree

550 files changed

+4214
-2400
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

550 files changed

+4214
-2400
lines changed

.DS_Store

-6 KB
Binary file not shown.

.github/ISSUE_TEMPLATE.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@ Please include a summary of the issue.
44

55
## Language
66

7-
- [ ] Javascript
8-
- [ ] Python
97
- [ ] Bash
8+
- [ ] Go
9+
- [ ] Javascript
1010
- [ ] Powershell
11+
- [ ] Python
1112
- [ ] Other (Please specify)
1213

1314
## Type of issue
1415

15-
*Please delete options that are not relevant.*
16+
_Please delete options that are not relevant._
1617

1718
- [ ] Feature
1819
- [ ] Bug
@@ -21,9 +22,9 @@ Please include a summary of the issue.
2122

2223
- **For Feature**
2324

24-
|name|about|labels|assignees|
25-
|----|-----|------|---------|
26-
|Feature request|Details (Motivation behind) about your feature request|feature|self-assign if you want to work on this issue else leave blank|
25+
| name | about | labels | assignees |
26+
| --------------- | ------------------------------------------------------ | ------- | -------------------------------------------------------------- |
27+
| Feature request | Details (Motivation behind) about your feature request | feature | self-assign if you want to work on this issue else leave blank |
2728

2829
**Is your feature request related to a problem? Please describe.**: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
2930

@@ -33,14 +34,14 @@ Please include a summary of the issue.
3334

3435
- **For Bug**
3536

36-
|name|about|labels|assignees|
37-
|----|-----|------|---------|
38-
|Bug|Found a bug! File it using this template!|bug|self-assign if you want to work on this issue else leave blank|
37+
| name | about | labels | assignees |
38+
| ---- | ----------------------------------------- | ------ | -------------------------------------------------------------- |
39+
| Bug | Found a bug! File it using this template! | bug | self-assign if you want to work on this issue else leave blank |
3940

4041
**Steps to reproduce**: List out the steps to reproduce the steps
4142

4243
**Expected results**: What were the expected results
4344

4445
**Actual results**: What you got
4546

46-
**Additional context**: Add any other context or screenshots about the bug here.
47+
**Additional context**: Add any other context or screenshots about the bug here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,20 @@ Replace `issue_no` with the issue number which is fixed in this PR
88

99
## Type of change
1010

11-
*Please delete options that are not relevant.*
11+
_Please delete options that are not relevant._
1212

1313
- [ ] Bug fix (non-breaking change which fixes an issue)
1414
- [ ] New feature (non-breaking change which adds functionality)
1515
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
1616
- [ ] This change requires a documentation update
17+
- [ ] Documentation Update
1718

1819
# Checklist:
1920

2021
- [ ] My code follows the style guidelines(Clean Code) of this project
2122
- [ ] I have performed a self-review of my own code
2223
- [ ] I have commented my code, particularly in hard-to-understand areas
23-
- [ ] I have created a helpful and easy to undertand README
24+
- [ ] I have created a helpful and easy to understand `README.md`
2425
- [ ] I have made corresponding changes to the documentation
2526
- [ ] My changes generate no new warnings
26-
- [ ] I have added tests/screenshots(If any) that prove my fix is effective or that my feature works
27+
- [ ] I have added tests/screenshots(if any) that prove my fix is effective or that my feature works

.gitignore

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,73 @@
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
3+
# Created by https://www.toptal.com/developers/gitignore/api/windows,python,macos,linux,go,visualstudiocode
4+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,python,macos,linux,go,visualstudiocode
5+
6+
### Go ###
7+
# Binaries for programs and plugins
8+
*.exe
9+
*.exe~
10+
*.dll
11+
*.so
12+
*.dylib
13+
14+
# Test binary, built with `go test -c`
15+
*.test
16+
17+
# Output of the go coverage tool, specifically when used with LiteIDE
18+
*.out
19+
20+
# Dependency directories (remove the comment below to include it)
21+
# vendor/
22+
23+
### Go Patch ###
24+
/vendor/
25+
/Godeps/
26+
27+
### Linux ###
28+
*~
29+
30+
# temporary files which can be created if a process still has a handle open of a deleted file
31+
.fuse_hidden*
32+
33+
# KDE directory preferences
34+
.directory
35+
36+
# Linux trash folder which might appear on any partition or disk
37+
.Trash-*
38+
39+
# .nfs files are created when an open file is removed but is still being accessed
40+
.nfs*
41+
42+
### macOS ###
43+
# General
44+
.DS_Store
45+
.AppleDouble
46+
.LSOverride
47+
48+
# Icon must end with two \r
49+
Icon
50+
51+
# Thumbnails
52+
._*
53+
54+
# Files that might appear in the root of a volume
55+
.DocumentRevisions-V100
56+
.fseventsd
57+
.Spotlight-V100
58+
.TemporaryItems
59+
.Trashes
60+
.VolumeIcon.icns
61+
.com.apple.timemachine.donotpresent
62+
63+
# Directories potentially created on remote AFP share
64+
.AppleDB
65+
.AppleDesktop
66+
Network Trash Folder
67+
Temporary Items
68+
.apdisk
69+
70+
### Python ###
171
# Byte-compiled / optimized / DLL files
272
__pycache__/
373
*.py[cod]
@@ -50,6 +120,7 @@ coverage.xml
50120
*.py,cover
51121
.hypothesis/
52122
.pytest_cache/
123+
pytestdebug.log
53124

54125
# Translations
55126
*.mo
@@ -70,6 +141,7 @@ instance/
70141

71142
# Sphinx documentation
72143
docs/_build/
144+
doc/_build/
73145

74146
# PyBuilder
75147
target/
@@ -127,3 +199,48 @@ dmypy.json
127199

128200
# Pyre type checker
129201
.pyre/
202+
203+
# pytype static type analyzer
204+
.pytype/
205+
206+
### VisualStudioCode ###
207+
.vscode/*
208+
!.vscode/settings.json
209+
!.vscode/tasks.json
210+
!.vscode/launch.json
211+
!.vscode/extensions.json
212+
*.code-workspace
213+
214+
### VisualStudioCode Patch ###
215+
# Ignore all local history of files
216+
.history
217+
218+
### Windows ###
219+
# Windows thumbnail cache files
220+
Thumbs.db
221+
Thumbs.db:encryptable
222+
ehthumbs.db
223+
ehthumbs_vista.db
224+
225+
# Dump file
226+
*.stackdump
227+
228+
# Folder config file
229+
[Dd]esktop.ini
230+
231+
# Recycle Bin used on file shares
232+
$RECYCLE.BIN/
233+
234+
# Windows Installer files
235+
*.cab
236+
*.msi
237+
*.msix
238+
*.msm
239+
*.msp
240+
241+
# Windows shortcuts
242+
*.lnk
243+
244+
# End of https://www.toptal.com/developers/gitignore/api/windows,python,macos,linux,go,visualstudiocode
245+
246+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)

Audio-Converter/.DS_Store

-6 KB
Binary file not shown.

Brute_Force_Admin/package-lock.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

Codechef Contests/Readme.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

Create a Word Cloud/README.md

Lines changed: 0 additions & 55 deletions
This file was deleted.

Currency Converter/README.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

Download Mangas/README.md

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)