Tag Archives: EXACTLY

PRAYER REQUEST FOR RESTITUTIONS

Dear Lord:

Restitution in my life Lord. Everything the enemies have taken returned. I am 1000% sure we would have been just fine.~!! Lord. I even pray for a marriage for myself that is exceedingly better than what had. Expose them Lord, the liars and robbers- .YOU know EXACTLY who they are Lord, their names!! This summer Lord has not been proceeding as I have been praying. I have not found income close to my youngest, I pray if that be YOUR best will, then one of the employers I contacted around there CALLS!!! What is YOUR best will for me for the rest of the summer and in the fall and winter semesters!!I pray I will graduate SOON! Where do I live then, it is far to drive from my apt. Lots of gas money if YOU want me to drive back and forth once a week. Do I move or keep the apt??All my promises are safe with YOU LORD! I will have a home of my own.

I HAVE HAD ENOUGH LORD, EVERYTHING THE ENEMY HAS TAKEN RETURNED, I WANT RESTITUTION FOR ME AND YOUNGEST SON. YOU KNOW WHY LORD!! I WANT TO LAUGH AGAIN WITH ALL OF MY CHILDREN!!!!! You have heard my personal requests LORD!

…read more

Source: Worthy Christian Forums

Bash Scripting

By OmgHaxor

Use and complete the template provided. The entire template must be completed. If you don’t, your post may be deleted!

1. The problem statement, all variables and given/known data:
Try running ‘phone4 xyz’ and see what happens.

Modify your program so that if no matching name is found, an appropriate
message is displayed: “Name ‘xyz’ not in directory”.

You could use an ‘if’ statement to check the value of $? to see if the grep
command was successful (remember, ‘0’ indicates success). If the grep is
NOT successful, then echo the message (which includes the value of $name).
Give it a try.

Make sure this works with both command line arguments and with a name read
in from the user, and make sure you use the message EXACTLY as shown.

2. Relevant commands, code, scripts, algorithms:

3. The attempts at a solution (include all code and scripts):

#!/bin/bash
name=$1
if [ “$name” = “” ]
then echo -n “Name ‘xyz’ not in directory”
read name
fi
grep -i cheryl ~uli101/uli101/phonebook
grep -i $name ~uli101/uli101/phonebook

4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):

Seneca@York toronto,ontario, Canada, Joseph Hughes, ULI 101

Note: Without school/professor/course information, you will be banned if you post here! You must complete the entire template (not just parts of it).

…read more

Source: FULL ARTICLE at The UNIX and Linux Forums

Can't submit a form. you my last hope

By tip78

hello
my script is submitting POST-data to a site
(its not my first script, i’ve done these before many times (include parsing scripts) but this one is tough)

so the problem is i’m submitting a form with firefox
and in firebug i see WHAT exactly i’m submitting
then
when i do EXACTLY the same with my script
it’s simply not working
so i have the question to pro’s:
WHYYYYYYYYYYYY :confused:

there is one thing.. the data have about 20 parameters and some of them:

Code:

__EVENTARGUMENT
__EVENTTARGET
__EVENTVALIDATION
__LASTFOCUS
__VIEWSTATE
>datahere<


can change their position in the block of post-data
they can be like:

Code:

__LASTFOCUS
>datahere<
__EVENTARGUMENT
__EVENTTARGET
__EVENTVALIDATION
__VIEWSTATE


or:

Code:

__LASTFOCUS
__EVENTARGUMENT
__EVENTTARGET
__VIEWSTATE
>datahere<
__EVENTVALIDATION


or somewhere else

and i think maybe javascript doing this somehow but dunno if this can be a problem
the whole site looks like writting by a monkey. rly. have bugs in JS and in HTML also.
there’s also the key which is changing when loading this page but i’m catching it

PS plx don’t put this topic to “web-programming” last answer there was a week ago 😮

…read more
Source: FULL ARTICLE at The UNIX and Linux Forums

Can't submit a form.

By tip78

hello
my script is submitting POST-data to a site
(its not my first script, i’ve done these before many times (include parsing scripts) but this one is tough)

so the problem is i’m submitting a form with firefox
and in firebug i see WHAT exactly i’m submitting
then
when i do EXACTLY the same with my script
it’s simply not working
so i have the question to pro’s:
WHYYYYYYYYYYYY :confused:

there is one thing.. the data have about 20 parameters and some of them:

Code:

__EVENTARGUMENT
__EVENTTARGET
__EVENTVALIDATION
__LASTFOCUS
__VIEWSTATE
>datahere<


can change their position in the block of post-data
they can be like:

Code:

__LASTFOCUS
>datahere<
__EVENTARGUMENT
__EVENTTARGET
__EVENTVALIDATION
__VIEWSTATE


or:

Code:

__LASTFOCUS
__EVENTARGUMENT
__EVENTTARGET
__VIEWSTATE
>datahere<
__EVENTVALIDATION


or somewhere else

and i think maybe javascript doing this somehow but dunno if this can be a problem
the whole site looks like writting by a monkey. rly. have bugs in JS and in HTML also.
there’s also the key which is changing when loading this page but i’m catching it

PS plx don’t put this topic to “web-programming” last answer there was a week ago 😮

Moderator’s Comments:
edit by bakunin: please keep the thread titles as concise as possible. We’ll gladly help even we are not “your last hope”. Coming across desperate will gain you nothing here. Thank you.

…read more
Source: FULL ARTICLE at The UNIX and Linux Forums