My old Eric Cartman (developed in 2012) in Pure CSS3 (with animation).
A Pen by Luiz Felipe Tartarotti Fialho on CodePen.
// Create a socket instance | |
var socket = new WebSocket('ws://localhost:8080'); | |
// Open the socket | |
socket.onopen = function(event) { | |
// Send an initial message | |
socket.send('I am the client and I'm listening!'); | |
// Listen for messages |
My old Eric Cartman (developed in 2012) in Pure CSS3 (with animation).
A Pen by Luiz Felipe Tartarotti Fialho on CodePen.
if (a == b && a.equals(b)) | |
{ | |
printf("totes equal for realz"); | |
} |
$ git log -–pretty=oneline HEAD~5..HEAD |
#include<iostream> | |
#include<fstream> | |
#include<sstream> | |
using namespace std; | |
fstream plik; | |
void main() | |
string intToStr(int i) | |
{ | |
ostringstream ss; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<h1>The 1Colors Swatches</h1> | |
<div class="colors"> | |
<div> |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace RawList | |
{ | |
class List | |
{ | |
static void Main(string[] args) |
#include<iostream> | |
Using namespace std; | |
int main() | |
{ | |
public class ss | |
{ | |
cout<< "sad"; | |
return 0; | |
} | |
} |
#include<stdio.h> | |
#include<conio.h> | |
void main() | |
{ | |
printf("this is a gist test file"); | |
} |