All kinds of contributions are welcome ๐! The most basic way to show your support is to star ๐ the project, or to raise issues ๐ฌ You can also support this project by becoming a sponsor on GitHub ๐ or by making a [Payp
๐ป
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <sys/socket.h> | |
#include <sys/types.h> | |
#include <string.h> | |
#include <netdb.h> | |
#include <netinet/in.h> | |
#include <arpa/inet.h> | |
#include <signal.h> |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <netdb.h> | |
#include <string.h> | |
#include <netinet/in.h> | |
#include <arpa/inet.h> | |
#include <signal.h> |
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
char *timestamp() | |
{ | |
struct tm *local; | |
time_t t = time(NULL); | |
char *str; | |
/* Get the localtime */ | |
local = localtime(&t); | |
str = asctime(local); |
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
/* This function establish a server on the first available address | |
args: char* port | |
int backlog value | |
return: update the server_IP : server IP adress on which it has bind | |
*/ | |
int establish_server( char *port, int backlog, char *server_IP) | |
{ | |
int yes = 1; | |
struct addrinfo server_addr, *results, *p; |
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
#!bin/sh | |
git filter-branch --env-filter ' | |
OLD_EMAIL="[email protected]" | |
CORRECT_NAME="Dipankar Pal" | |
CORRECT_EMAIL="[email protected]" | |
if [ "$GIT_COMMITER_EMAIL" = "$OLD_EMAIL" ] | |
then | |
export GIT_COMMITER_NAME="$CORRECT_NAME" | |
export GIT_COMMITER_EMAIL="$CORRECT_EMAIL" |
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
cloc ./ --quiet --hide-rate --unix --timeout=10 --by-file-by-lang --md --vcs=git --git --ignored=ignored.txt --by-percent=cmb |
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
https://www.prothomalo.com/topic/%E0%A6%97%E0%A6%B2%E0%A7%8D%E0%A6%AA | |
https://www.kishoralo.com/golpo/%E0%A6%B6%E0%A6%BF%E0%A6%95%E0%A7%8D%E0%A6%B7%E0%A6%BE%E0%A6%B8%E0%A6%AB%E0%A6%B0-%E0%A6%AC%E0%A6%9F%E0%A7%87 | |
https://www.w3newspapers.com/bangladesh/ | |
https://www.prothomalo.com/onnoalo/stories/ | |
https://www.jugantor.com/literature/355847/%E0%A6%9B%E0%A7%8B%E0%A6%9F-%E0%A6%97%E0%A6%B2%E0%A7%8D%E0%A6%AA-%E0%A6%AA%E0%A6%BE%E0%A6%B9%E0%A6%BE%E0%A6%A1%E0%A6%BC%E0%A6%BF-%E0%A6%B0%E0%A6%B6%E0%A7%81 |
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
name: Issue Greeting | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
greet_user: | |
runs-on: ubuntu-latest | |
steps: |