Skip to content

Instantly share code, notes, and snippets.

View ivssh's full-sized avatar
🏠
Working from home

Abhilash Bolla ivssh

🏠
Working from home
View GitHub Profile
@ivssh
ivssh / boto3_athena.py
Created October 11, 2018 09:42
Boto3 Athena connection python script
import time
import boto3
client = boto3.client(
'athena',
region_name='us-west-2',
aws_access_key_id="<your-access-id>",
aws_secret_access_key="<your-secret-access-key>"
)
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <string>
using namespace std;
char *reverse_string(char a[]){
int i=0;
int j=strlen(a)-1;
var Flickr = require('flickrapi')
var fs = require('fs');
var sys = require('sys');
flickrOptions = {
API_key:"7dc103b03c0ef32c52111dc2a281aa58",
secret:"7cb3e40aac4cd09c"
};
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<?php
include 'header.php';
?>
<body>
<div class="body_pattern">
<div class="index_page">
<div class="main">
<div class="header">
@ivssh
ivssh / lab1.c
Last active August 29, 2015 13:56
/*
============================================================================
Name : lab3.c
Author : Abhilash Bolla 11MT30001
Version :
Copyright : Your copyright notice
Description : Hello World in C, Ansi-style
============================================================================
*/