Skip to content

Instantly share code, notes, and snippets.

import React from "react";
import ReactDOM from "react-dom";
import { DragDropContext, Droppable, Draggable } from "react-beautiful-dnd";
const App = () => {
const items = ["one", "two", "three"];
return (
<DragDropContext onDragEnd={() => {}}>
<Droppable droppableId="root">
{(provided) => (
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQD7BDcwCzdwi45CI5S79jIB/Lz+XgBri/U4bPSwx1rFz+5gii0rUEaBmG3FP+dwRiYkHDsRuKX5w1ZbJbjHH/f7Qk0D1Q0i7zVJM4YUYzUaLIyLiRgzBWJZZ7bwsYymnurFDQpskLsBKZMbSDueCWubKQ5kRDoWI9sXcJqsXJES1L8eZTBOTmSgKWeW95KfOPtQr74ff6kMhSphLV9Ql+aJFLy9qtW7kjRX037euICN1e4w08heHKASaFrFWTOdRWINuuDHKh+fZ1CKfMTRicoxAPWtn8KTV3m3iW0iMeI0NGqmbSEaHtO/inOYrQMHkhz1wQdhAv1AvyalbYtfa4WJ root@shivam-ideapad
@shivamiitgoa
shivamiitgoa / GitHub_Credentials
Created August 13, 2019 06:54
How to Save GitHub Credentials in Ubuntu
[credential "https://github.com"]
username = your_GitHub_username
password = your_GitHub_password
@shivamiitgoa
shivamiitgoa / dns.c
Created March 4, 2018 05:46 — forked from fffaraz/dns.c
DNS Query Code in C with linux sockets
//DNS Query Program on Linux
//Author : Silver Moon (m00n.silv3r@gmail.com)
//Dated : 29/4/2009
//Header Files
#include<stdio.h> //printf
#include<string.h> //strlen
#include<stdlib.h> //malloc
#include<sys/socket.h> //you know what this is for
#include<arpa/inet.h> //inet_addr , inet_ntoa , ntohs etc