Skip to content

Commit dcb1a79

Browse files
committed
Update links in the project list
1 parent b75ec52 commit dcb1a79

File tree

1 file changed

+17
-194
lines changed

1 file changed

+17
-194
lines changed

README.md

Lines changed: 17 additions & 194 deletions
Original file line numberDiff line numberDiff line change
@@ -61,203 +61,26 @@ This will open a new jupyter notebook in your localhost where you can run all th
6161
#### Code of Conduct [See here](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/CODE_OF_CONDUCT.md)
6262

6363

64-
65-
* [Tic-Tac-Toe](https://github.com/prateekiiest/Code-Sleep-Python#tic-tac-toe)
66-
* [Hangman](https://github.com/prateekiiest/Code-Sleep-Python#hangman)
67-
* [Caesar-Cipher](https://github.com/prateekiiest/Code-Sleep-Python#caesar-cipher)
68-
* [Translations of Hamlet](https://github.com/prateekiiest/Code-Sleep-Python#translations-of-hamlet)
69-
* [Classification](https://github.com/prateekiiest/Code-Sleep-Python#classification)
70-
* [Whisky Classification](https://github.com/prateekiiest/Code-Sleep-Python#whisky-classification)
71-
72-
* [Bird Migration](https://github.com/prateekiiest/Code-Sleep-Python#bird-migration)
73-
* [Social Network Analysis](https://github.com/prateekiiest/Code-Sleep-Python#social-network-analysis)
74-
* [Prime](https://github.com/prateekiiest/Code-Sleep-Python#prime-number-finder)
75-
* [Website status check](https://github.com/prateekiiest/Code-Sleep-Python#website-status-check)
76-
* [Encryption-Techniques](#encryption-techniques)
77-
* [Inception Tic-Tac-Toe](https://github.com/prateekiiest/Code-Sleep-Python#inception-tic-tac-toe)
78-
* [Sprint](https://github.com/prateekiiest/Code-Sleep-Python#sprint)
79-
* [Floating Text](#floating-text)
80-
* [Koch Curve](https://github.com/prateekiiest/Code-Sleep-Python#koch-curve)
81-
* [Superellipse](https://github.com/prateekiiest/Code-Sleep-Python#superellipse)
82-
* [Cricket Notification](https://github.com/prateekiiest/Code-Sleep-Python#cricket-notification)
83-
8464
-----------------------------------
8565

66+
* [Tic-Tac-Toe](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/tic-tac-toe)
67+
* [Hangman](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Hangman)
68+
* [Caesar-Cipher](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Caesar-cipher)
69+
* [Translations of Hamlet](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/translation_hamlet)
70+
* [Classification](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Classification)
71+
* [Whisky Classification](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/whisky_classification)
72+
* [Bird Migration](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Bird_migration)
73+
* [Social Network Analysis](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/social_network)
74+
* [Prime](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Prime)
75+
* [Website status check](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/website_status_check)
76+
* [Encryption-Techniques](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Encryption-Techniques)
77+
* [Inception Tic-Tac-Toe](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Inception%20TicTacToe)
78+
* [Sprint](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Sprint)
79+
* [Floating Text](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/floating_text)
80+
* [Koch Curve](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Koch%20Curve)
81+
* [Superellipse](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Superellipse)
82+
* [Cricket Notification](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Cricket_Notification)
8683

87-
### Tic-Tac-Toe
88-
89-
Tic-Tac-Toe (or noughts and crosses) is a simple strategy game in which two players take turns placing a mark on a 3x3 board, attempting to make a row, column, or diagonal of three with their mark. In this homework, we will use the tools we've covered in the past two weeks to create a Tic-Tac-Toe simulator and evaluate basic winning strategies.
90-
91-
![](https://upload.wikimedia.org/wikipedia/commons/8/8e/TicTacToe-6549127nnXOp.gif)
92-
93-
Players soon discover that best play from both parties leads to a draw. Because of the simplicity of Tic-Tac-Toe, it is often used as a pedagogical tool for teaching the concepts of good sportsmanship and the branch of artificial intelligence that deals with the searching of game trees. It is straightforward to write a computer program to play Tic-Tac-Toe perfectly, to enumerate the 765 essentially different positions (the state space complexity), or the 26.830 possible games up to rotations and reflections (the game tree complexity) on this space.
94-
95-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/tic-tac-toe/code.py)**
96-
97-
------------------------------------
98-
99-
### Hangman
100-
101-
Hangman is a simple game where a player will guess a word letter by letter.
102-
103-
![](http://daramcq.github.io/img/hangman-game-5.png)
104-
105-
In this project, you will create a program that generates a random word that you must guess.
106-
107-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Hangman/code.py)**
108-
109-
---------------------------------------------
110-
111-
### Caesar-Cipher
112-
113-
![Caesar-Cipher](http://www.donatantonio.net/blog/wp-content/uploads/2010/10/cesare-570x355.png)
114-
115-
A cipher is a secret code for a language. In this study, we will explore a cipher that is reported by contemporary Greek historians to have been used by Julius Caesar to send secret messages to generals during times of war.
116-
117-
The Caesar cipher, also known as a shift cipher, is one of the simplest forms of encryption. It is a substitution cipher where each letter in the original message (called the plaintext) is replaced with a letter corresponding to a certain number of letters up or down in the alphabet.
118-
119-
120-
In this way, a message that initially was quite readable ends up in a form that can not be understood at a simple glance.
121-
122-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Caesar-cipher/code.py)**
123-
124-
-------------------------------------------------
125-
126-
### Translations of Hamlet
127-
128-
In this case study, we will find and plot the distribution of word frequencies for each translation of Hamlet. Perhaps the distribution of word frequencies of Hamlet depends on the translation.
129-
130-
![](http://www.aboutlanguageschools.com/images/language-translations.jpg)
131-
132-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/translation_hamlet/code.py)**
133-
134-
------------------------------------------------------
135-
136-
### Classification
137-
138-
In this case study, we will analyze a dataset consisting of an assortment of wines classified into "high quality" and "low quality", and will use k-Nearest Neighbors to predict whether or not other information about the wine helps us correctly guess whether a new wine will be of high quality.
139-
140-
![](http://homepages.inf.ed.ac.uk/rbf/HIPR2/classb.gif)
141-
142-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Classification/code.py)**
143-
144-
-----------------------------------------------
145-
146-
### Whisky Classification
147-
148-
In this case study, we have prepared step-by-step instructions for you on how to prepare plots in Bokeh, a library designed for simple and interactive plotting. We will demonstrate Bokeh by continuing the analysis of Scotch whiskies.You can go through the article - **[here](http://www.geeksforgeeks.org/project-scikit-learn-whisky-clustering/)**
149-
150-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/whisky_classification/code.py)**
151-
152-
----------------------------------------------
153-
154-
### Bird Migration
155-
156-
In this case study, we will continue taking a look at patterns of flight for each of the three birds in our dataset.Documentation of this project available - **[here](http://www.geeksforgeeks.org/tracking-bird-migration-using-python-3/)**
157-
158-
![](https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/BrantaLeucopsisMigration.jpg/300px-BrantaLeucopsisMigration.jpg)
159-
160-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Bird_migration/code.py)**
161-
162-
--------------------------------------------------
163-
164-
### Social Network Analysis
165-
166-
Homophily is a network characteristic. Homophily occurs when nodes that share an edge share a characteristic more often than nodes that do not share an edge. In this case study, we will investigate homophily of several characteristics of individuals connected in social networks in rural India.
167-
168-
![](https://images.pond5.com/social-media-animation-after-effect-046838541_iconm.jpeg)
169-
170-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/social_network/code.py)**
171-
172-
-----------------------------------------------------
173-
174-
175-
### Prime number finder
176-
177-
The implementation of Sieve of Eratosthenes is used to find prime numbers.
178-
179-
![](https://i.pinimg.com/564x/cc/c7/55/ccc7554b4ae9ee9781b752832224f3ef--sieve-of-eratosthenes-prime-factorization.jpg)
180-
181-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Prime/code.py)**
182-
183-
-----------------------------------------------------
184-
185-
### Website status check
186-
187-
A simple website crawler to check the return code of a website. It returns with a message indicating whether the website is online, redirected, or not found.
188-
189-
![](http://yootheme.com/media/docs/assets/images/warp/error_pages_404.jpg)
190-
191-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/website_status_check/website_status_check.py)**
192-
193-
194-
-----------------------------------------------------
195-
196-
### Encryption-Techniques
197-
198-
Encryption is an interesting piece of technology that works by scrambling data so it is unreadable by unintended parties. The technology comes in many forms, with key size and strength generally being the biggest differences in one variety from the next. This repo has implementations of different encryption techniques. More [here](https://en.wikipedia.org/wiki/Encryption).
199-
200-
![](http://img.bityard.net/blog/aes.png)
201-
202-
**[CODE](Encryption-Techniques/)**
203-
204-
-----------------------------------------------------
205-
206-
-----------------------------------------------------
207-
208-
### Inception Tic-Tac-Toe
209-
210-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Inception%20TicTacToe/inceptionTTT.py)**
211-
212-
-----------------------------------------------------
213-
214-
### Sprint
215-
216-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Sprint/sprint.py)**
217-
218-
-----------------------------------------------------
219-
220-
### Floating Text
221-
222-
Floating Text is a simple program which displays a given String as a floating string on the terminal.
223-
224-
![demo](/floating_text/floating_text.gif)
225-
226-
**[CODE](/floating_text/floating_text.py)**
227-
228-
-----------------------------------------------------
229-
230-
### Koch Curve
231-
232-
A Fractal is geometrical figure, each part of which has the same statistical character as the whole. Koch Curve (also known as the **Koch snowflake**) is a mathematical fractal curve constructed recursively using an equilateral triangle (See figure). The progression for the area of the snowflake converges to 1.6 times the area of the original triangle, while the progression for the snowflake's perimeter diverges to infinity. Consequently, the snowflake has a finite area bounded by an infinitely long line. **[more info](https://en.wikipedia.org/wiki/Koch_snowflake)**
233-
234-
This program traces out a 4 level Koch curve.
235-
236-
![](https://upload.wikimedia.org/wikipedia/commons/f/fd/Von_Koch_curve.gif)
237-
238-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Koch%20Curve/koch%20curve.py)**
239-
240-
----------------------------------------------------
241-
242-
### Superellipse
243-
244-
A superellipse, also known as a Lamé curve after Gabriel Lamé, is a closed curve resembling the ellipse, retaining the geometric features of semi-major axis and semi-minor axis, and symmetry about them, but a different overall shape.
245-
246-
**[more info](https://en.wikipedia.org/wiki/Superellipse)**
247-
248-
![](https://upload.wikimedia.org/wikipedia/en/2/24/Superellipse_anim.gif)
249-
250-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Superellipse/test.py)**
251-
252-
-----------------------------------------------------
253-
254-
### Cricket Notification
255-
256-
A simple program to get the score and match status if India is playing. This information is obtained from the terminal.
257-
258-
![](https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRgwxUvr7AfngMuzr4a8tc69jexGPoPeSdCTiDZhvlXqgZTH_wxgg)
259-
260-
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Code-Sleep-Python/Cricket_Notification/cricket_notification.py)**
26184

26285
-----------------------------------------------------
26386

0 commit comments

Comments
 (0)