Video Link: Apache Kafka Crash Course | What is Kafka?
- Knowledge
- Node.JS Intermediate level
- Experience with designing distributed systems
- Tools
- Node.js: Download Node.JS
- Docker: Download Docker
- VsCode: Download VSCode
Video Link: Apache Kafka Crash Course | What is Kafka?
<?php | |
namespace App\Console\Commands; | |
use Illuminate\Console\Command; | |
use Illuminate\Support\Composer; | |
use Symfony\Component\Finder\Finder; | |
use Illuminate\Filesystem\Filesystem; | |
use Symfony\Component\Console\Input\InputArgument; |
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Tue, 06 Dec 2016 17:06:46 GMT till Wed, 06 Dec 2017 17:06:46 GMT.
Only first 1000 GitHub users according to the count of followers are taken. This is because of limitations of GitHub search. Sorting algo in pseudocode:
githubUsers
.filter(user => user.followers > 1000)
#include <stdio.h> | |
void scanArray2D(int arr2D[][5],int ROW,int COL); | |
void printArray2D(int arr2D[][5],int ROW,int COL); | |
int maxMin2D(int arr2D[][5],int ROW,int COL); | |
int main(void) | |
{ | |
#include <stdio.h> | |
void scanArray2D(int arr2D[][5],int ROW,int COL); | |
void printArray2D(int arr2D[][5],int ROW,int COL); | |
int searchItem2D(int arr2D[][5],int ROW,int COL,int item); | |
int main(void) | |
{ | |
int x,y,a[5][5],item; | |
printf("Enter Row and Column: \n"); |
#include <stdio.h> | |
void scanArray2D(int arr2D[][5], int ROW,int COL); | |
void printArray2D(int arr2D[][5], int ROW,int COL); | |
int main(void) | |
{ | |
int r,c,a[5][5]; | |
printf("Enter Row and Column: \n"); | |
scanf("%d%d",&r,&c); |
import socks | |
import urllib2 | |
import requests | |
from Queue import Queue | |
from threading import Thread | |
import httplib | |
class SocksiPyConnection(httplib.HTTPConnection): | |
def __init__(self, proxytype, proxyaddr, proxyport = None, rdns = True, username = None, password = None, *args, **kwargs): |
#include <stdio.h> | |
int main() | |
{ | |
int i, n, fact = 1; | |
printf("Enter The Number\n"); | |
scanf("%d", &n); | |
for (i = 1; i <= n; i++) |