Skip to content

Instantly share code, notes, and snippets.

View bdjunayed's full-sized avatar
🏠
Work for mankind

Junayed M Chowdhury bdjunayed

🏠
Work for mankind
View GitHub Profile
@bdjunayed
bdjunayed / index.html
Created October 5, 2016 06:17
A page of beauty
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
@bdjunayed
bdjunayed / flightplan-html.md
Created March 28, 2017 11:45 — forked from learncodeacademy/flightplan-html.md
Deploy HTML site with Flightplan

###Prerequesites

Install flightplan globally

npm install -g flightplan

Install flightplan in your project folder

https://unix.stackexchange.com/questions/390246/extracting-ip-addresses-from-a-log-file-and-list-them-in-another-file
How to retrieve IP addresses of possible ssh attackers?
https://gist.github.com/rietta/2761988
@bdjunayed
bdjunayed / README.md
Last active September 6, 2020 13:46 — forked from zenorocha/README.md
A template for Github READMEs (Markdown) + Sublime Snippet

Project Name

TODO: Write a project description

Installation

TODO: Describe the installation process

asdfasfd sdfsdf 
sdfsdf
@bdjunayed
bdjunayed / 1.java
Created November 15, 2023 13:28
Basic Java examples
public class Test1 {
public static void main(String[] args) {
// Array iteration
int[][] b;
b = new int[3][2];
// Value assigne
b[0][0] = 56;
b[0][1] = 56;