Skip to content

Commit 3f7a84a

Browse files
2 parents eba7d66 + 1715db1 commit 3f7a84a

5 files changed

Lines changed: 72 additions & 2 deletions

File tree

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 devsonket
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

data/draft/js-date-object

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"title": "ডেট অবজেক্ট",
3+
"items": [
4+
{
5+
"definition": "চার ডিজিটের বছরের সংখ্যা পাওয়া(2001, 2002, ...)",
6+
"code": "getFullYear()"
7+
},
8+
{
9+
"definition": "বর্তমান স্থানীয় সময় আনুসারে তারিখ (১-৩১) পাওয়া",
10+
"code": "getDate()"
11+
},
12+
{
13+
"definition": "বর্তমান স্থানীয় সময় আনুসারে সাপ্তাহিক(০-৬) দিন পাওয়া",
14+
"code": "getDay()"
15+
},
16+
{
17+
"definition": "বর্তমান স্থানীয় সময় আনুসারে ঘণ্টা(০-২৩) দেখতে পাওয়া",
18+
"code": "getHours()"
19+
},
20+
{
21+
"definition": "বর্তমান স্থানীয় সময় আনুসারে মাস (০-১১) পাওয়া",
22+
"code": "getMonth()"
23+
}
24+
]
25+
}

data/linux-command-line.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@
153153
}, {
154154
"definition": "USB ডিভাইস দেখা",
155155
"code": "lsusb -tv"
156+
}, {
157+
"definition": "Hard Drive ডিভাইস দেখা",
158+
"code": "lsblk"
156159
}
157160
]
158161
}

data/python3-cheat-sheet.json

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,27 @@
5050
"code": "set উদাহরন: {1, 2, 'y'}"
5151
}
5252
]
53+
},
54+
{
55+
"title": "ভ্যারিয়েবল এসাইনমেন্ট (Variable Assginment)",
56+
"items": [
57+
{
58+
"code": "x = 1.2 + 8 + sin(0)",
59+
"definition": "এখানে x হলো ভ্যারিয়েবল এবং সমান চিহ্নের ডান পাশে রয়েছে কম্পিউটেড এক্সপ্রেশন অথবা ভ্যালু"
60+
},
61+
{
62+
"code": "y, z, r = 9.2, -7.6, 'bad'" ,
63+
"definition": "একাধিক ভ্যারিয়েবল এসাইনমেন্টঃ ডানপাশে ভ্যারিয়েবন সমূহ এবং বাম পাশে কমা দ্বারা বিভক্ত এদের ভ্যালু সমহু ক্রমান্বয়ে সজ্জিত"
64+
},
65+
{
66+
"code": "x += 3 (or x = x + 3)",
67+
"definition": "Increment: ইনক্রিমেন্ট"
68+
},
69+
{
70+
"code": "x -= 3 (or x = x + 3)",
71+
"definition": "Decrement: ডিক্রিমেন্ট"
72+
}
73+
]
5374
}
5475
]
55-
}
76+
}

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name="theme-color" content="#464646"><meta property="og:title" content="ডেভেলপার চিটশিট - বাংলা চিটশিটের ভান্ডার"><meta property="og:description" content="ডেভেলপারদের জন্যে প্রয়োজনীয় সব চিটশিট একসাথে এবং সম্পূর্ণ বাংলা ভাষায়। নিজের মাতৃভাষায় চিটশিটের ভান্ডার সমৃদ্ধ করতে আপনিও যোগ দিন"><meta property="og:image" content="https://with.zonayed.me/wp-content/uploads/2018/11/devsonket.png"><link rel="manifest" href="/manifest.json"><link rel="shortcut icon" href="/favicon.ico"><title>ডেভেলপার চিটশিট - বাংলা চিটশিটের ভান্ডার</title><link href="/static/css/main.7aa99bbf.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script type="text/javascript" src="/static/js/main.91f85001.js"></script></body></html>
1+
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name="theme-color" content="#464646"><meta property="og:title" content="ডেভেলপার চিটশিট - বাংলা চিটশিটের ভান্ডার"><meta property="og:description" content="ডেভেলপারদের জন্যে প্রয়োজনীয় সব চিটশিট একসাথে এবং সম্পূর্ণ বাংলা ভাষায়। নিজের মাতৃভাষায় চিটশিটের ভান্ডার সমৃদ্ধ করতে আপনিও যোগ দিন"><meta property="og:image" content="https://with.zonayed.me/wp-content/uploads/2018/11/devsonket.png"><link rel="manifest" href="/manifest.json"><link rel="shortcut icon" href="/favicon.ico"><title>ডেভেলপার চিটশিট - বাংলা চিটশিটের ভান্ডার</title><link href="/static/css/main.7aa99bbf.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script type="text/javascript" src="/static/js/main.91f85001.js"></script></body></html>

0 commit comments

Comments
 (0)