Skip to content

Instantly share code, notes, and snippets.

View Suchana34's full-sized avatar
💭
forgot my password again

Suchana Chakrabarti Suchana34

💭
forgot my password again
View GitHub Profile
@depsimon
depsimon / profile.vue
Created March 5, 2019 10:56
Vuetify Profile Page
<template>
<v-container fluid>
<v-layout column>
<v-card>
<v-card-text>
<v-flex class="mb-4">
<v-avatar size="96" class="mr-4">
<img :src="'/avatars/avatar_' + (form.avatar.toLowerCase()) + '.png'" alt="Avatar">
</v-avatar>
<v-btn @click="openAvatarPicker">Change Avatar</v-btn>
@depsimon
depsimon / AvatarPicker.vue
Created March 5, 2019 10:41
Avatar Picker with Vuetify in a Profile Form
<template>
<v-dialog :fullscreen="$vuetify.breakpoint.xs" width="500" transition="dialog-bottom-transition" v-model="show">
<v-card>
<v-toolbar dark color="primary">
<v-btn icon dark @click="show = false">
<v-icon>close</v-icon>
</v-btn>
<v-toolbar-title>Select an Avatar</v-toolbar-title>
<v-spacer></v-spacer>
</v-toolbar>
@fedickinson
fedickinson / Scraping_The_Partisan_Divide.ipynb
Created June 18, 2018 13:53
Scraping the Partisan Divide: Sentiment, Text, & Network Analysis of an online political discussion forum.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Abhey
Abhey / @Multiple Client Chat Description
Last active March 6, 2024 13:36
Multiple client chat system in C
It is an simple implementation of simple client server chat system where once client are connected to server,
then they can communicate with each other.
The client first needs to connect with the server and can then issue two commands -
1. GET - This command fetches the list of client's that are currently connected to server.
2. SEND (client number) (message) - SEND followed by client number which can be be used to send the meassage
to particular to that particular client number.
(please issue the complete send command in one go).
To run these program first run ChatServer.c and then run multiple instatnces of ChatServer.c .
@devinhyden
devinhyden / vuetifyjs-login.html
Last active March 26, 2021 08:14
Vuetifyjs Login Form
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet">
<link href="https://unpkg.com/vuetify/dist/vuetify.min.css" rel="stylesheet">
</head>
<style>
#app {
@sananth12
sananth12 / FastIO
Created July 21, 2014 10:38
Very fast IO C++
#include <cstdio>
#include <iostream>
using std::string;
static struct IO {
char tmp[1 << 10];
// fast input routines
char cur;