- Blood Group List
- User Blood Request Message
- User FeedBack Message
- Registration
- Login
- Search(Current location)
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
| // Create a string | |
| // TODO: I have to fix later and study more on it | |
| var str = new String() | |
| // ! But Most of developers skip that and follow this convention | |
| var name = 'Jubayer'; | |
| console.log(typeof name); | |
| // Properties and methods of the String() object | |
| // concat(text) |
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
| // JavaScript OOP Concepts | |
| /* | |
| Concept-1:Object Literals | |
| Concept-2:Constructor & This | |
| Concept-3:Prototypes & Inheritence | |
| Concept-4:Classes and Subclasses | |
| */ | |
| // Concept-1:Object Literals | |
| const bookOne = { |
In this article we will learn how to use python list(built-in data structure) as Queues.
Python List as Queues(First-in, First-Out)
- import collections.deque
- To add an item, append()
- To remove an item, popleft()
In this article we will learn how to use python list as Stact.
Stacks (Last-In, First-Out)
- To add an item to the top of the stack, use append()
- To retrieve an item from the top of the stack, use pop() without an explicit index
stack = [2, 3, 4]IntelliJ IDEA is an integrated development environment (IDE) for Java development. It’s developed by JetBrains, the same company that developed PyCharm, the best IDE for Python. Like PyCharm.
- Community Edition (Free)
- Ultimate Edition (Paid version with extra features)
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-makebash ~/Downloads/Anaconda3-5.3.0-Linux-x86_64.sh