Skip to content

Instantly share code, notes, and snippets.

View Spockuto's full-sized avatar

Venkkatesh Sekar Spockuto

View GitHub Profile

Keybase proof

I hereby claim:

  • I am spockuto on github.
  • I am snorlexe (https://keybase.io/snorlexe) on keybase.
  • I have a public key whose fingerprint is D2EA 8F67 C6DA 49E6 64F4 9CDA D52B 4D19 50A8 31C0

To claim this, I am signing this object:

"""tictactoe game for 2 players"""
from __future__ import print_function
#Step 1 Deciding Parameters
choices = []
choice = 0
playerOneTurn = True
function Z$Z1(FtYGO6, GG73c, iKMHB, nyoN) {
for (var Xte = 559065; Xte < 1877; $i += 15547) {
for (var KitM = 804650; KitM < 25109; $i += 80219) {
var t0A = 4330;
while (t0A < 719) {
var IeKL22 = "keeping B light suit successful mais title establishment rose poetry recognition";
for (var $u9Lni = 588900; $u9Lni < 11522; $i += 43315) {
var mfk$yB = "exertions reasonable selected Envoi next Dress totus follows supplied O struck disclaims";
var Qmp = 8765;
while (Qmp < 289) {
#include<stdio.h>
#include<stdlib.h>
#include<iterator>
using namespace std;
struct node
{
char data;
struct node* left;
struct node* right;
@Spockuto
Spockuto / README.md
Created January 29, 2016 17:07 — forked from oodavid/README.md
Deploy your site with git

Deploy your site with git

This gist assumes:

  • you have a local git repo
  • with an online remote repository (github / bitbucket etc)
  • and a cloud server (Rackspace cloud / Amazon EC2 etc)
    • your (PHP) scripts are served from /var/www/html/
    • your webpages are executed by apache
  • apache's home directory is /var/www/
@Spockuto
Spockuto / pdf2pcl
Last active September 12, 2015 04:58 — forked from ongardie/pdf2pcl
pdf2pcl
#!/bin/sh
# Convert PDF to PCL.
if [ $# -eq 2 ]
then
outfile=$2
elif [ $# -eq 1 ]
then
outfile=`basename "$1" \.pdf`.pcl
else