Archive for the ‘Healing’ Category

TOOL BELT… TOOL BAR (MENU)

May 8, 2014
THE JAVA SCRIPTS TESTED BELOW … THIS IS THE WORDPRESS INSTRUCTIONS INCLUDED
CALL THIS POST A SANDBOX , for the moment. AFTER THESE INSTRUCTIONS I WILL MERGE WHAT CONTEXTS FIT THIS POST(IN edit…):
SEARCH THIS SITE BY SERACH LINK FROM WITHIN THE MASTER.COM.CONTENT
MASTER.COM CONT EDITED IN FOR SEARCHING TEXT AND ADDING OPTOIN FOR
SEARCH BY RELEVANCE or By DATE
TRY SEARCH LINKED HERE: http://oldship.wordpress.master.com/texis/master/search/
Title: Old Ole Ship | oLE_SHIP wORDpRESS BLOG | Page 2
Keywords: -None-
Description: oLE_SHIP wORDpRESS BLOG
Body: Economist’s View: The Mental Strain from Being PoorSeptember 21, 2013Economist’s View: The Mental Strain from Being Poor.

Posted in Uncategorized | Leave a Comment »

Recent posts from Strategists on Typepad | Typepad

September 21, 2013

Codex

Using Javascript

Contents

[hide]

JavaScript will work within WordPress. It can be used within WordPress template files in WordPress Themes or Child Themes. JavaScript cannot be added to post content without a special WordPress Plugin that removes the filters that prevent unwanted code within the post content area, for the protection of the user.

JavaScript in Template Files

The safe and recommended method of adding JavaScript to a WordPress generated page, and WordPress Theme or Plugin, is by using wp_enqueue_script(). This function includes the script if it hasn’t already been included, and safely handles dependencies.

To use JavaScript repeatedly within your site, you can either set the call for the JavaScript, or the script itself, in the head of your header.php template file, between the meta tags and the style sheet link, no differently than you would if you were using JavaScript in any HTML page. To “load” the JavaScript file into your site, in the head, add something like this:

<script type="text/javascript" src="/scripts/emailpage.js"></script>

If your custom JavaScript isn’t working after including the previous line of code in your header.php template file, use the following line of code.

<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/pathto/yourscript.js"></script>

Include the leading forward slash “/”, even if your file is located in the root of your theme.

Be sure that you define the type correctly, as your site will not validate without it.

In the spot where you wish to use the JavaScript, set the call for the JavaScript. For example, you are using a JavaScript that sets a link for users to “email this page” to a friend, and you want it to be under the post title. It might look like this:

<h3 class="storytitle">
 <a href="<?php the_permalink() ?>" rel="bookmark">
 <?php the_title(); ?></a>
</h3>
<div class="emailpage">
 <script type="text/javascript"><!--//--><![CDATA[//><!--
 emailpage();
 //--><!]]></script>
</div>

JavaScript in Posts

To use JavaScript inside of posts in WordPress, you need to take a few more steps. Odds are that this usage is for one or only a few instances, so adding the script to the header would be unnecessary.

For the occasional or one time use of JavaScript, you need to put the script into a JavaScript file, and then call it out from within the post. Make sure that each script is defined by its function name, such as:

function updatepage(){var m="Page updated "+document.lastMo.......}

To include Javascript inside a post, you need to combine the call to the script file with the call to the JavaScript itself.

<script type="text/javascript" src="/scripts/updatepage.js"></script>
<script type="text/javascript">
<!--
updatepage();
//--></script>

If the src attribute of your JavaScript tag is being stripped out, you need to turn off the rich editor (from the dashboard, go to Users > Your Profile > Personal Options). If you are using the rich editor, the JavaScript tag’s src attribute may be stripped out even when manually editing in the HTML popup window.

Creating a Multiple Script File

You might have a collection of scripts that you call from time to time, like a script that calculates time zones or distance, or maybe scripts that create some effect or accent on your page. For recurring JavaScript, consider grouping them together into one file.

For this example, name the group JavaScript file scriptfile.js (choose whatever you want) and say it contains the updatepage, emailpage, and caltimezone scripts. As you copy each JavaScript into the file, make sure it has a unique function name such as with this condensed version:

function updatepage() {var m="Page updated "+document.lastMo.......}
function emailpage() {mail_str = "mailto:?subject=....}
function caltimezone() {var timerID ; function tzone(tz, os, ds, cl) {this.ct =......} 

Place the script file of all the JavaScript in the head of the header.php template file between the meta tags and the style sheet link. It will just sit there, loaded into the browser’s memory, waiting for one of the scripts inside to be called.

<script type="text/javascript" src="/scripts/scriptfile.js"></script>

In the spot in your post where you would like to use the JavaScript, call it as follows:

<script type="text/javascript">
<!--
updatepage();
//--></script>

Using Multiple JavaScript Files Inside One Post or Page

When using functions laying in multiple JavaScript files, add all the JavaScript references in the header.php. If you really need to write the script reference in the body of the post or Page, ensure that the URL to the JavaScript file starts with the forward-slash (“/”), which is your webserver’s document root (the “htdocs” directory in the case of Apache webserver). This is called a fixed URL. If you do not specify the starting slash (“/”), it becomes a relative URL (“../../relative/path/to/javacripts/file.js”), and is calculated relative to the current location in the directory structure.

If you do this, you will almost surely need to maintain several versions of this reference because different parts of the displayed content are generated from different locations. For example, pages are created from .php template files in the WordPress root directory (note that this is not the webserver’s document root), while posts are created from .php template files in the chosen theme’s directory (“/path-to-wordpress-root/wp-content/themes/yourtheme/partofpost.php”). These are two different paths.

Troubleshooting Javascript

If you are having trouble with including JavaScript inside a post, use the Text Control Plugin, which allows you to control, on a global or per post basis, the ability to turn off WordPress’ automatic formatting features, which can quickly turn code into something readable instead of executable. Set the options on the post that you will be using the JavaScript on to have No Formatting or Markup or nl2br, and No Character Formatting. You may have to experiment to get it to work. As a reminder, when using the Text Control Plugin, you must first Save and Continue Editing the post in order to see the Text Control Plugin options.

If you choose No Formatting, your post’s text will run together, so you will have to add paragraph tags and other HTML tags in order to format your page, as WordPress normally does that for you.

If your JavaScript does not work, triple check that you have not made any errors during the cut and paste into a group or single file. Be sure you used a text editor, and not a word processing program, to create the JavaScript file. Check the name of the function in the script file, as well as on your site. Not all JavaScript may work, and could possibly conflict with your PHP commands, but this is very rare.

If you are having trouble with this, the WordPress Support Forum may be able to help.

Resources

JavaScript Popup Boxes


JavaScript has three kind of popup boxes: Alert box, Confirm box, and Prompt box.


Alert Box

An alert box is often used if you want to make sure information comes through to the user.

When an alert box pops up, the user will have to click “OK” to proceed.

Syntax

window.alert(“sometext“);

The window.alert method can be written without the window prefix.

Example

alert(“I am an alert box!”);

Try it Yourself »

 


Confirm Box

A confirm box is often used if you want the user to verify or accept something.

When a confirm box pops up, the user will have to click either “OK” or “Cancel” to proceed.

If the user clicks “OK”, the box returns true. If the user clicks “Cancel”, the box returns false.

Syntax

window.confirm(“sometext“);

The window.confirm() method can be written without the window prefix.

Example

var r=confirm(“Press a button”);
if (r==true)
{
x=”You pressed OK!”;
}
else
{
x=”You pressed Cancel!”;
}

Try it Yourself »

 


Prompt Box

A prompt box is often used if you want the user to input a value before entering a page.

When a prompt box pops up, the user will have to click either “OK” or “Cancel” to proceed after entering an input value.

If the user clicks “OK” the box returns the input value. If the user clicks “Cancel” the box returns null.

Syntax

window.prompt(“sometext“,”defaultText“);

The window.prompt() method can be written without the window prefix.

Example

var person=prompt(“Please enter your name”,”Harry Potter”);

if (person!=null)
{
x=”Hello ” + person + “! How are you today?”;
document.getElementById(“demo”).innerHTML=x;
}

Try it Yourself »

 


Line Breaks

To display line breaks inside a popup box, use a back-slash followed by the character n.

Example

alert(“Hello\nHow are you?”);

Try it Yourself »

<script type="text/javascript" src="http://services.webestools.com/menus-horizon/style-20.js?txt=Home%3Dhttp%253A%252F%252Fwww.webestools.com%252F%0AForum%3Dhttp%253A%252F%252Fwww.webestools.com%252Fforum-discussions.html%0AHelp%2520us%3Dhttp%253A%252F%252Fwww.webestools.com%252Fhelpus.html%0AContact%3Dhttp%253A%252F%252Fwww.webestools.com%252Fcontact.html%0A"></script>Code
  ,,,

1 2 3
4
5Sample for JavaScript menu bar
6
7 <styletype=”text/css”> 8 #menuBar {
9 margin: 0;
10 padding: 0;
11 display: table;
12 background-color: #333388;
13 }
14
15 #menuBar div {
16 margin: 0;
17 padding: 0;
18 list-style: none;
19 position: relative;
20 float: left;
21 border-right: 1px #AAAAAA solid;
22 }
23
24 #menuBar div a {
25 display: block;
26 margin: 0;
27 padding: 5px 15px;
28 color: #FFFFFA;
29 text-align: center;
30 text-decoration: none;
31 font-weight: bold;
32 }
33
34 #menuBar div a:hover {
35 background: #5555FF;
36 }
37
38 #menuBar span {
39 margin: 1px;
40 padding: 0;
41 position: absolute;
42 visibility: hidden;
43 white-space: nowrap;
44 display: table;
45 z-index: 3;
46 }
47
48 #menuBar span a {
49 margin: 0;
50 padding: 2px 10px;
51 background: #3333AA;
52 color: #FFFFFA;
53 font-size:90%;
54 text-align: left;
55 text-decoration: none;
56 font-weight: normal;
57 }
58
59 #menuBar span a:hover {
60 background: #5555FF;
61 }
62

63
64 <scripttype=”text/javascript”> 65 //<! [CDATA[ (non-xhtml? remove this line. xhtml? just remove the space between! and [) 66 104 //]]> (non-xhtml? remove this line) 105
106
107

108 109
110
111 <divid=”menuBar”> 112
113

114 <ahref=”http://alexapps.net&#8221; 115 onmouseover=”openMenu(‘menu1’)”onmouseout=”closeMenu()”>Home
116
117 <spanid=”menu1″onmouseover=”keepMenuOpen()”onmouseout=”closeMenu()”>
118
119

120
121

122 <ahref=”http://alexapps.net/Apple/iOS/Apps/MyApps&#8221; 123 onmouseover=”openMenu(‘menu2’)”onmouseout=”closeMenu()”>iPhone Apps
124
125 <spanid=”menu2″onmouseover=”keepMenuOpen()”onmouseout=”closeMenu()”>
126 <ahref=”http://alexapps.net/Apple/iOS/Apps/MyApps/BoxingiTimer”>Boxing iTimer
127


128 <ahref=”http://alexapps.net/Apple/iOS/Apps/MyApps/GPSAlarms”>GPSAlarms
129 <ahref=”http://alexapps.net/Apple/iOS/Apps/MyApps/GPSAlarmPlus”>GPSAlarm+
130
131

132
133

134 <ahref=”” 135 onmouseover=”openMenu(‘menu3’)”onmouseout=”closeMenu()”>Help
136
137 <spanid=”menu3″onmouseover=”keepMenuOpen()”onmouseout=”closeMenu()”>
138 <ahref=”http://alexapps.net”>About Us
139 <ahref=”http://alexapps.net/contact.xhtml”>Contact Us
140
141

142
143

144
145 <divstyle=”clear:both”>

146
147

Sample for JavaScript Menu Bar

148
149
150 <divid=”log”style=”font-size: xx-small”/> 151
152
153 http://alexapps.net/HowTo/JavaScript/MenuBar/index.xhtml

iCLOUD Favorite 1 of the 18 of 27

March 26, 2014

iCLOUD Favorite 1 of the 18 of 27(9 Negatives Developed Blank Clear)

March 1, 2014 New Moon in light or cloud or open view?
18 of 27 developed …; what happened to the 9 blank, as night sky darkened, alternating flash to no flash, a disposable camera and a machine developing process that probably has a more consistant viewability than what the human eye can detect… I judged not, … nore incline any, … nigh little mention to the majestic, or mysterious …
… I say nothing pointing to either, any failure other than to improve what  may have been my own error ,  nor any direct interpretations of the grand mistique of the process witnessed in the sky..
… however abundent,  and calm, beautiful, and powerful, and elaborately layered and intertwined..
… the joy and honor grow, and sustain sustanance beyond my own recognition and expectations, looking forward to the next appearance,  as memory fades from plain vision, some residual reminders may feed from what all may be encompassed here.

Looking forward, looking up, to see and praise in thanks here and then!

 

Adar is now in the finale days as a Month/Moon of phases.

Psalm 97:2 Clouds and thick darkness surround him; righteousness

Thick clouds are all around him; righteousness and justice are his throne’s foundation.
//biblehub.com/psalms/97-2.htm – 17k

 

Job 26:9 He covers the face of the full moon, spreading his clouds

He conceals the face of the full moon, shrouding it with his clouds.
He covers his throne by spreading his cloud over it.
//biblehub.com/job/26-9.htm – 16k

PHOTO CLOUD , iCLOUD SHARED PHOTOS (New Moon March 1st Sunset to March 2 Sunrise, 2014 .)

March 26, 2014

In 17 hours after passing the Sun in the Sky the Moon breaks for a New Phase appearance, a minimum distance to the Sun’s UV rays or maximum needed distance away, to be visable by the human eye.
The journey starts just after the Sun sets on through a half mile walk to a clearing for a final picture of Sunset March 1, 2014; and the Sunrise finale, March 2, 2014 ! The Calendar day starts after view(not viewed this date March 1, 2014?) Did March 3 start the Calendar Month of Adar?
R2-07652-023A
WORLD VISABILITY CHART FOR MARCH 1, 2014, New Moon (ADAR) WORLD VISABILITY CHART MARCH 1, 2014 FOR NEW MOON , Adar
R2-07652-022A

R2-07652-021A

R2-07652-020A

R2-07652-019A

R2-07652-018A

R2-07652-017A

R2-07652-016A

R2-07652-015A

R2-07652-014A

R2-07652-013A

R2-07652-012A

R2-07652-011A

R2-07652-010A

R2-07652-009A

R2-07652-000ASo here I am SHARING my iCLOUD Photos that I loaded by signing on icloud through internet explorer on a device that does not have iCLOUD installed.
When I figure out how to share them on a device I’m signed in on, then there, as here, so.
RANGE OF VIEW FOR NEW MOON SIGHTING ON MARCH 1, 2014

Something to Help You Believe that Prayer Works

September 9, 2013

THANK YOU and THANK YOU AGAIN !

I relay this first relating of scripture:

Before they call, I will answer. (Isaiah 65:24)


article exert –

‘Before they call, I will answer.’ (Isaiah 65:24)

When you receive this, say the prayer. That’s all I ask. No strings  attached. Just send it on to whomever you want – but do send it on. Prayer is one of the best free gifts we receive. There is no cost, but a  lot of rewards. Let’s continue praying for one another.  This awesome prayer takes less than a minute.

Heavenly Father, I ask you to bless my friends reading this. I ask You to minister to their spirit. Where there is pain, give them Your peace and  mercy. Where there is self doubting, release a renewed confidence to work through them; where there is tiredness or exhaustion, I ask You to give them understanding, guidance, and strength. Where there is fear, reveal  your love and release to them Your courage. Bless their finances, give them greater vision, and raise up leaders and friends to support and  encourage them.  I ask You to do these things in Jesus’ name. Amen

end article excert

Posting this story and YOUR PASSION in reflecting the long awaiting, patience, upon receiving this after some 599 other posts.
The relating aspect of a relationship is important, whether we are silent in wonder as it (a relationship) grows thoughts may come and go; belief may apply or not,…
.
..in fact truth or fantasy apply as much or not as witnessing does for belief; in all of our actions, there is some reflect our faith and relationship to/with something.

… I believe,

… in fact
, the 598th post may be a good example of scoffing, changing the subjects, confusing issues, and insincerity in action as much as mixing of topics that can cross a span of senses of reasoning.


OF BELIEF OR CONVERSION; CONVERSATION DOESN’T HAVE TO BE INTERPRETED AS ONE OF THE ABOVE TO BE RELATED; MAKING SENSE IS IMPORTANT FOR THE RELATING TO CONTINUE.

RELATING RELATIONSHIPS AND BELIEF OR DISBELIEF, IN THIS TRUE STORY, RELATING BY PRAYER HAPPENED.

I THANK YOU FOR RELATING.

PS,
A BELIEVER AS I STATED ABOVE, I THOUGHT TO SEARCH TO SEE IF THERE WAS A SPECIFIC ANSWER “”Something to Help You Believe that Prayer Works”” KEYWORDING A SEARCH ON A AN ONLINE CHRISTIAN BIBLE DATBASE.
SPECIFICALLY THE WORS “”TO BELIEVE IN PRAYER”” only located FOUR RESULTS,
“Isaiah 65:24″ I ADD, NOW KNOWING AND UNDERSTANDING; MORE AND LESS.

NOT TO CHANGE THE SUBJECT,

I Believe we are to “listen for/to God who The Lord is the same and of” as written as The Greatest Commandment NUMBER 1 as written that Jesus spoke in context where he had to mention that with the second most important.
In my context here, “”To know all there is to know is to much for man to know; to know the Love Of God is to have the understanding””, knowing and imagining a belief in that, may be important to know here on this post,l and that may relate to a Commandment if not directly BEING COMMANDMENT NUMBER THREE , or whatever the category or rank; in all as much as RELATING LOVE AND DISCERN to be WITH GODS GRACE TO WISDOM AND POWER in our CONVERSING,

RIGHT or TRUE (EITHER) of LOVE,…
…we often do not know what to ask as there may be many possibilities.

There may be a sphere we live on that all 360 degrees of possibilities could range a span in all directions.

ASTROLOGY I FIND VERY HELPFUL AND ADMIRE WISDOM PRESENT IN INTERPRETATIONS OF POSSIBILITIES,
THE Facts seem that we each have points of places we are, and a stride that is of our own comfort or
discern, and only so much ability to understand even what we think we know.

WHAT ASTROLOGY COULD APPLY TO THE OTHER FOUR SCRIPTURES WITH THE WORDS – TO, BELIEVE, IN, PRAYER -, OR ALL FIVE SCRIPTURES?

(INCLUDING Isaiah 65:24) is probably rhe same answer to all of them as astrology applies to any other subject; i.e. time, timing, age, circumstance, contexts, relativity, belief, interpretation, understanding, season, reason, sustenance, purpose, meaning, consideration, direction, motion.
I AM NOT SURE ABOUT ASTROLOGY being applicable to “momentum” and :”propensity” )both separate or together, though the two can be intertwined with “faith” and “fate” , astrology may not apply to either of those two other than how everything relates to creation here and in the cosmos of what we know and can imagine.

I believe Wisdom to be a separate relativity that was right there with God at creation and of ‘when’ “He saw that it was good”, i believe it means He had also seen something through.
What we discern probably should pare with wisdom and with what we can understand to be “in prayer”.

pss
The other four I found-

Mark 11:24 Therefore I tell you, whatever you ask for in prayer …
Therefore I tell you, whatever you ask for in prayer, believe
that you have received it, and it will be yours. …
//bible.cc/mark/11-24.htm – 18k

Matthew 21:22 If you believe, you will receive whatever you ask …
… You will receive whatever you ask for in prayer, if you believe.” … …
//bible.cc/matthew/21-22.htm – 17k

John 17:20 “My prayer is not for them alone. I pray also for those …
….. My prayer is not for them alone. I pray
also for those who will believe in me …
//bible.cc/john/17-20.htm – 17k

Acts 16:13 On the Sabbath we went outside the city gate to the …
… On the Sabbath we went beyond the city gate to the riverside, where we had reason
to believe that there was a place for prayer; and sitting down we talked with …

Sky Writer

For the past month,  I have been waiting and anticipating a landmark in Skywriter’s history–my 600th post. I had no idea what it would be, but hoped it would be something special.  This is it! Number 600! Thank you to all my readers–I have truly loved sharing with you these past few years.

 This came in the email this morning, when I was feeling pretty low. I hope it helps any of you out there that are feeling low, too.

THIS WILL TRULY LIFT  YOU UP SPIRITUALLY.

View original post 1,191 more words

The Healing Power of Colored Glass | Sky Writer

May 30, 2013

The Healing Power of Colored Glass | Sky Writer.

©4-22-2011 by Donna Cunningham, MSW

 

Skywriter is a mixed-purpose blog of which astrology and healing are only two of the aims, while memoir writing is another.

I’ve joined a creative writing group online now, and one of the writing prompts this week challenged us to describe cobalt blue or some other color of our choice.

 

Waiting For Moderation(Reply Approved) (Not Listed in Comments yet). A “no wonder” THIS POST AWAITS DELETION

May 29, 2013

That will have to be read only after my latest comment recieves approved by moderators;
in all, while now it is I whom awaits for my own.
Just in case, since its a good article, here is a link to the Post followed by my Reply(awaiting moderation) (WHEN AND IF APPROVED, I will promptlt delete or edit this post )
http://skywriter.wordpress.com/2010/01/23/neptune%E2%80%99s-in-your-career-house-it%E2%80%99s-not-a-transit-it%E2%80%99s-an-epoch/#comment-21429

OLDSHIP Reply:
An abundance of giftedness of understanding and knowledge and personal talents all combign in this nrw erra.
I would think future generations wonder of us as having some cosmic assistance from whatever residual endures this great agel that wonder not nuch of a mtstery, that is if I am correct to say we just moved into the material hemisphere of Capricorn from Aquarius,
To this constant, one that may continue with stresses that shift from awe and calm to blizzards of storms and sudden unexplained calms again, it is not just about a great philosophy and experiences of moral and virtueous tests; not of those as much, that it is untill we can mentally adapt to this system of astro changes.
For myself speccifically,
I Have to pull together several topicsl aspects, from an old post closed for reply titled “understanding the Sisquiquadrate; Natal Thors Hammers and Stelliums; the eclipse syphonically over the last few years culminating to this last une in May 2013; ; the constant meanings of each the Moon/Month(Ziv now) according to Hebrew/Jewish calendars; and for this post now, the add-on House systems here; and all that to what I really wonder about Cusps(which I believe . thowe on a speculative so level, are an additional 12 in Equal and in Parallel with Signs and Houses) ; and all that again without the mention of the “affect” crossing the Milky Way Ecliptic on December 21st, 2012 as we rise higher above that plain concidering the MC , IC, concider the Natal chart North.
I think there is some priority to what we have of importance by choice, in so much that I must note a previouse article just to catch up and relate this Sesquiqauhndrate i just found on my own chart.
Soif there is no order in this list
•i.e If Neptune(in the sky) is transiting a vocational sector of your chart—the 2nd, 6th, 10th, houses, forming an aspect to a planet(in your natal chart) in one of those houses, or aspecting your Midheaven—you’re probably hazy about your work life. You may be burned out and know you need a new direction.SkyWriter/DonnaCunningham
For me Neptune just entered my 7th house and Now squres the Sun in the Sky and Mars is coming right behind the Sun next. Neptune just Squared my MC a few months or so ago.
Thats where the Sesquiqauhndrate starts in my chart. 7th house back to Sun. Then it starts all over from the Natal Neptune from what I remember of it,
I quite helpful conciferation it has been for me to knowing the Year by Chinese Zodiac as standing for each persons :”generation”, the Month of each year for each Parent/parental animal Sign, the animal sign of the Day for each persons Self’s Sign, and the sign by the hour of birth representing “The children/Child in each of us.
Likewise , The Native American Zodiac having centered more on The Cusp to each sign and the more simple up/out and down/inward views.
Where should I start?
The Asendant should normally be the pragmatic , yet I have Natal Jupiter conjunct Desendant (and Neptune in Sky.
Reverse engineering molds that are broken on purpose is not as helpfull to me as a constant reinventing of the wheel; rogether with the existant possibility of either is a fresh new frontier, with natural gifts in season, readt to pioneer with the chalenges given in combination of a each days portion and character,
And when not, it seemed so,