Skip to content

Instantly share code, notes, and snippets.

View TanjinAlam's full-sized avatar

Md Tanjin Alam TanjinAlam

View GitHub Profile
@TanjinAlam
TanjinAlam / Steezy Token
Created August 21, 2022 10:42
Steezy Token
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract Steezy is ERC20 {
using SafeMath for uint256;
address public owner;
mapping(address => bool) public whitelistedAddresses;
@TanjinAlam
TanjinAlam / install-ubuntu-docker-practice.sh
Last active June 21, 2022 08:02
hummingbot setup bash script
# 1) Update Ubuntu's database of software
sudo apt-get update
# 2) Install tmux
sudo apt-get install -y tmux
# 3) Install Docker
sudo apt install -y docker.io
# 4) Start and Automate Docker
sudo systemctl start docker && sudo systemctl enable docker
# 5) Change permissions for docker (optional)
# Allow docker commands without requiring sudo prefix
// Interface Class
package javaapplication1;
import java.util.ArrayList;
public interface In1 {
final static ArrayList<Integer> arrli = new ArrayList<Integer>();
}
//first class
#include<windows.h>
#include <GL/glut.h>
#include<math.h>
void init2D(float r, float g, float b)
{
glClearColor(r,g,b,0.0);
glMatrixMode (GL_PROJECTION);
gluOrtho2D (-500, 500.0, -500, 500.0);
}
[center][size=16pt]========Announcement========[/size][/center]
[center][size=12pt]Dear all,[/size][/center]
[center]Today is a big day for all of us as we are launching our official Bounty Program in order to reward our supporters with more WHN
tokens.
Thank you all for helping Windhan Energy to get where we are, it is amazing how our community grew with the support of
participants of the first Bounty Campaign!
Bounty Campaign -> https://bitcointalk.org/index.php?topic=[ourlink]
[quote author=arnobs007 link=topic=4873256.msg43900340#msg43900340 date=1534012953]
[center]
[img]https://i.imgur.com/omPgxKU.jpg[/img]
[size=14pt][url=https://www.oppopenwifi.com/]WEBSITE[/url] |[url=https://www.oppopenwifi.com/oppwhite20180627.pdf?t=v6] LITEPAPER[/url] | [url=https://www.oppopenwifi.com/opplight20180627.pdf?t=v6]WHITEPAPER[/url] | [url=https://bitcointalk.org/index.php?topic=4713287]ANN THREAD[/url] | [url=https://www.facebook.com/OPPopenWiFi]FACEBOOK[/url] | [url=https://twitter.com/OPPopenWiFi]TWITTER[/url] | [url=https://www.reddit.com/r/OPPOWiFi/]REDDIT[/url] | [url=https://medium.com/opp-open-wifi]MEDIUM[/url] | [url=https://github.com/oppopenwifi]GITHUB[/url] | [url=https://www.youtube.com/channel/UCQcPXBhjClQiiMvHJBlegXg]YOUTUBE[/url] | [url=https://t.me/oppopenwifi]TELEGRAM[/url][/size][/center]
[size=13pt][color=#0973AA]What is oppopenwifi and why sould you join the community ?[/color]
OPP OPEN WIFI is recruiting 25 million WiFi Hotspot Hosts with a view of becoming the largest
#include<stdio.h>
int main()
{
int x,y,n,a,z,s;
scanf("%d",&n);
printf("\n\n");
for(x=0; x<n; x++)
{
a=1;
for(s=0; s<(n-x); s++)
#include<stdio.h>
#include<string.h>
struct cl
{
int day, month, year;
};
struct cl date;
void input()
#include<stdio.h>
#include<stdlib.h>
int main ()
{
int i, n, max=0;
int *pData;
scanf("%d",&n);
pData = (int*)calloc(n, sizeof(int));
if(pData==NULL) exit(1);