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 |
This file contains hidden or 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
@echo off | |
for /r %cd% %%a in (*.xml) do type "%%a" >> "all.xml" |
This file contains hidden or 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
[ | |
{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'}, |
This file contains hidden or 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
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(); |
This file contains hidden or 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
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); |
This file contains hidden or 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
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("/"); |
This file contains hidden or 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 { | |
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 |
This file contains hidden or 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
set nocompatible | |
source $VIMRUNTIME/vimrc_example.vim | |
source $VIMRUNTIME/mswin.vim | |
behave mswin | |
"grvgl starts" | |
" Vim-Plug Plugins | |
call plug#begin('~/.vim/plugged') |
NewerOlder