This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <algorithm> | |
std::reverse(str.begin(), str.end()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Detects browser and redirects to a different link for each browser. | |
*/ | |
$browser = $_SERVER['HTTP_USER_AGENT']; | |
$chrome = '/Chrome/'; | |
$firefox = '/Firefox/'; | |
$ie = '/MSIE/'; | |
if (preg_match($chrome, $browser)){ | |
//echo "chrome/opera"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"net" | |
"os" | |
) | |
func main() { | |
strEcho := "Halo" | |
servAddr := "localhost:6666" | |
tcpAddr, err := net.ResolveTCPAddr("tcp", servAddr) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Brute-force string generation | |
# Copyright (C) 2011 Radek Pazdera | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Oh My ZSH Configuration File | |
# Auhor: Deekshith Allamaneni | |
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/deekshitha/.oh-my-zsh | |
# Setting Default user name | |
# Replace 'deekshitha' with your user name. | |
# This removes displaying your username when you are | |
# logged in from your own machine. | |
DEFAULT_USER='deekshitha' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" My .vimrc | |
" Author: Deekshith Allamaneni | |
" Launch configurration | |
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
" Colors | |
syntax enable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# sample usage: checksites.py eriwen.com nixtutor.com yoursite.org | |
import pickle, os, sys, logging | |
from httplib import HTTPConnection, socket | |
from smtplib import SMTP | |
def email_alert(message, status): | |
fromaddr = '[email protected]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* Pseudo Random Password generator of given length*) | |
(* Get all \ | |
characters you would like to be a part of your password *) | |
letters[] := StringSplit[FromCharacterCode[Range[33, 126]], ""] | |
(* Pick up random characters from the list *) | |
GeneratePassword[n_] := StringJoin[RandomSample[letters[], n]] | |
(* Generate password*) | |
GeneratePassword[12] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* Function overloading in Mathematica *) | |
SumMultiply[x_?NumericQ, y_Real] := | |
Module[ | |
{sum, mul}, | |
sum = x + y; | |
mul = x y; | |
{sum, mul} | |
] | |
SumMultiply[x_Integer, y_Real] := | |
Module[ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* Gets JSON from a URL and extracts the data *) | |
(* Gets response in JSON format *) | |
apiResponse1 = Import["http://****shod.com/logdata/dessfaa/predictlocation", "JSON"]; | |
(* Check returns 0 if an error occurs and Quiet supresses displaying errors *) | |
Quiet@Check[apiResponse1, 0] | |
(* Get response from JSON hierarchically *) | |
"latitude" /. ("prediction" /. apiResponse1) | |
(* latitude and prediction are the data keys in the JSON *) |
OlderNewer