Skip to content

Instantly share code, notes, and snippets.

View vkosuri's full-sized avatar
:octocat:
I may be slow to respond.

Mallikarjunarao Kosuri vkosuri

:octocat:
I may be slow to respond.
View GitHub Profile
@vkosuri
vkosuri / eval_dict.robot
Last active May 24, 2016 06:29
Running Robotframework from within python
*** Settings ***
Documentation This example evaluate a JSON data
*** Test Cases ***
EvalDict
${post_dict}= Evaluate {u'name': 'uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu', u'enabled': True}
@vkosuri
vkosuri / tcl_basic_cmds_usage.tcl
Created May 23, 2016 12:54
TCL commands usage
# set, a built-in command, reads and writes variables.
set a 10
# Desc: puts - Write to a channel
# Syntax: puts ?-nonewline? ?channelId? string
# channelId stdin, stdout, stderr
set abc [puts "test"]
puts stdout $tcl_version nonewline
@nextrevision
nextrevision / extract_iso.sh
Created March 19, 2015 16:02
Uses isoinfo to extract all contents of an ISO to the given output directory
#!/bin/bash
# Description:
# Extracts all contents of an ISO to the given output directory
# Requires:
# Packages: genisoimage
ISO=$1
OUTDIR=${2:-"./out"}
usage() {
@rxaviers
rxaviers / gist:7360908
Last active July 22, 2024 11:10
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@c0ldlimit
c0ldlimit / git_newrepo
Created November 16, 2012 17:14
Git: Push a new or existing repo to Github
# Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/c0ldlimit/vimcolors.git
git push -u origin master
# Push an existing repository from the command line