Skip to content

Instantly share code, notes, and snippets.

View grvgl's full-sized avatar

Gaurav Goel grvgl

View GitHub Profile
@grvgl
grvgl / darshan.md
Last active October 21, 2023 06:33
Darshan Common Aspect Atma (Individual Soul) Brahman (Universal Consciousness)
Nyaya Emphasis on logical reasoning Recognizes Atma as a conscious entity Considers Brahman as the ultimate cause of reality
Vaisheshika Analysis of the material universe Sees Atma as a distinct entity Views Brahman as the material cause of the world
Sankhya Distinction between Purusha and Prakriti Identifies Atma as pure consciousness Sees Brahman as the transcendent reality
Yoga Emphasis on spiritual practices Aims to unite Atma with the Divine Views Brahman as the ultimate reality to be united with
Mimamsa Study of sacred scriptures Explores Atma's connection through rituals Considers Brahman as the supreme essence
Vedanta Focus on Upanishadic teachings Realizes non-dual identity with Brahman Considers Atma and Brahman to be essentially one
@echo off
for /r %cd% %%a in (*.xml) do type "%%a" >> "all.xml"
[
{name: 'Afghanistan', code: 'AF'},
{name: 'Åland Islands', code: 'AX'},
{name: 'Albania', code: 'AL'},
{name: 'Algeria', code: 'DZ'},
{name: 'American Samoa', code: 'AS'},
{name: 'AndorrA', code: 'AD'},
{name: 'Angola', code: 'AO'},
{name: 'Anguilla', code: 'AI'},
{name: 'Antarctica', code: 'AQ'},
var txt:TextField = new TextField();
txt.width=600;
txt.height=600;
txt.multiline = true;
txt.embedFonts = true;
txt.htmlText="<font face='Arial' size='24'>I have just been <font face='Arial Bold' size='24'>bolded.</font></font>\n<font face='Arial' size='24'>And a line break </font><font face='Arial Italic' size='24'>was added.</font>";
txt.htmlText+="<font face='Arial' size='24'>This is subscript</font><font face='GG Subscript' size='24'>0123456789qwertyuioplkjhgfdsazxcvbnm</font>";
txt.htmlText+="<font face='Arial' size='24'>This is superscript</font><font face='GG Superscript' size='24'>0123456789qwertyuioplkjhgfdsazxcvbnm</font>";
this.addChild(txt);
stop();
var JavaScriptSuperClass = function(count){
this.count = count;
};
JavaScriptSuperClass.prototype.increase = function(){
this.count++;
};
var JavaScriptSubClass = function(count){
JavaScriptSuperClass.call(this, count);
};
JavaScriptSubClass.prototype = Object.create(JavaScriptSuperClass.prototype);
@grvgl
grvgl / Batch_Publisher.jsfl
Created June 4, 2015 10:36
JSFL file to publish multiple Flash files with single JSFL command
var tempDoc=undefined;
var searchSubDir="true"
if(fl.documents.length==0){
tempDoc=fl.createDocument();
}
var folder = getFolderURIFromUser();
exportlist=new Array();
if(folder){
if(folder.substr(0,8)!="file:///"){
folder="file:///"+folder.split(":").join("|").split("\\").join("/");
@grvgl
grvgl / BoldItalicSubSuperscript.as
Last active August 29, 2015 14:19
<b> <i> Superscript Subscript in Actionscript
package {
import flash.display.MovieClip;
import flash.text.TextField;
import flash.text.Font;
public class BoldItalicSubSuperscript extends MovieClip {
// Free Subscript and Superscript fonts are available at
// https://storage.googleapis.com/ggshow/files/fonts/GGSUBSCR.TTF
@grvgl
grvgl / _vimrc
Last active December 30, 2017 10:51
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
"grvgl starts"
" Vim-Plug Plugins
call plug#begin('~/.vim/plugged')