.comment-link {margin-left:.6em;}

Sunday, December 30, 2007

 

john and his pocket knife

John is getting threatning with his pocket knife in the downtown corpus christi burger king.. Not only does he do the usual bit of showing his knife all around the kitchen area he has started making threats about hurting me. I was mentioning this at waterburger that it isn't worth getting stabbed by john plus you have profit sharing.

I am looking at superedit and it appears it isn't very portable .. http://www.wolosoft.com/cgi-bin/mb/mb.pl?BoardID=6 seems like a little work would make it second to none.. there is a portable install instruction that I am going to look at..

Thursday, December 27, 2007

 

using superedit with bcx basic

unautorised bcx basic manual

NOTE THIS IS JUST THE FIRST EDIT OF THIS PAGE AND WILL CONTAIN ERRORS



To use superedit with bcx basic you will want to create two new directories. You will want a bcx basic directory in both the clips and another one for clips directory.



Syntax File



After looking in super edit it doesn't appear to be portable so everyone who would want to use it would have to set it up from scratch but it maybe in the future it will be less of a pain the url is link



If there are any questions they can be directed here Board

Labels:


Saturday, December 22, 2007

 

compiling a bcx basic file to an exe

bcx basic manual home


To compile a bcx basic file to an exe you would start with the bc command as described in the updated manual on yahoo groups then use pcal from the command line to compile a pelles console program. I haven't tested this but it was mentioned that if you are trying to compile a windows program with a gui you would need to use the pw.bat file instead.. If you are using a different c compiler you would need to check what is in the bcxolr data base or if you are using bcxdevsuite or another ide you would need to check thier docs.

Labels:


Wednesday, December 19, 2007

 

vars in bcx basic

bcx basic manual home



types of variables

$ .. string variable ex a$
% .. numeric example a%
! .. numeric example a!
# .. numeric pounds I think example a#

example dim x as dword. The variable is then &x (apparently anyway). GLOBAL can also be used

dword :Double word
LPWORD : long pointer word?
LDOUBLE : long double
integer :integer
DOUBLE :double
string :string
ULONG
STRARRAY :string array
handle :this is a windows handle
LPSTR :32 bit string POINTER variable
COORD :x,y coordinates
WIN32_FIND_DATA
SYSTEMTIME :System Time
OSVERSIONINFO :Operating version info

QWERTY :querty keyboard
example

GLOBAL h AS QWERTY
h.a = 3

HWND :Windows handle
MSG
WNDCLASSEX
RECT :rectangle (I would guess)

FARPROC : far procedure??
HMODULE

dim A$

declares A$ to be global usualy is declared at the top of a program

GLOBAL h AS QWERTY

this does pretty much the same thing as dim

Local X!

Declares X! To be loace to the function or subroutine

TYPE is used to create a custom data type. It works a lot like many versions of pascal.

TYPE Zzz
DIM x
DIM y
DIM z
DIM p AS RECT
END TYPE

You can now use the TYPE just like any other basic var..

LOCAL cb AS Zzz

You would then access the various members by using the type name and then a period followed by the name of the variable such as the simple example below

cb.x = 1

DIM SHARED i, j, a$, Stak$[41]

I am not realy sure of the purpose of the shared keyword it appears that you can use it like the global keyword and then use it also in the subroutines


DATA

This is traditionally at the end of the program in basic..

example

Dim i


While data$ [i] <> "EndOfData"
Print data$ [i]
Incr i
Wend


DATA "111","222","333","444"
DATA "555","666","777","888"
DATA "999","EndOfData"

set ... end set.. this looks a little like a combination of the DATA keyword and type

SET A[] AS DOUBLE
1,5,9,3,10,4 ' Small Set Of Sample Data
END SET

DIM DYNAMIC
DIM STATIC
DIM RAW

you can define your variables as static or dynamic

redim probily works simular to other basic languages i.e. No docs

redim preserve a$[20]
redim a$[20]

 

misc windows and system

bcx basic manual home



MsgBox

example

i = MsgBox ( "This is a message", "BCX Demo", 3+64) ' 3=YNC, 64=Info Icon

usage options (after the parentieses)

OK 0 Display OK button only.
OKCancel 1 Display OK and Cancel buttons.
AbortRetryIgnore 2 Display Abort, Retry, and Ignore buttons.
YesNoCancel 3 Display Yes, No, and Cancel buttons.
YesNo 4 Display Yes and No buttons.
RetryCancel 5 Display Retry and Cancel buttons.
Critical 16 Display Critical Message icon.
Question 32 Display Warning Query icon.
Exclamation 48 Display Warning Message icon.
Information 64 Display Information Message icon.
DefaultButton1 0 First button is default.
DefaultButton2 256 Second button is default.
DefaultButton3 512 Third button is default.

Panel

example

Panel X1,Y1,X2,Y2,Fg,Bg,32,1

SYSTEM INFORMATION


GetEnvironmentVariable

example

GetEnvironmentVariable (A$,Result$,255)

possible values for A$ are


"COMSPEC"
"PROMPT”
"TEMP"
"winbootdir"
"windir"
"PATH"

GetDriveType

example

k = GetDriveType(a$)

possible values for A$ are

DRIVE_REMOVABLE
DRIVE_FIXED
DRIVE_REMOTE
DRIVE_CDROM
DRIVE_RAMDISK

SetFileAttributes

example

SetFileAttributes(t$,a)

possible values for a are

FILE_ATTRIBUTE_ARCHIVE -- The file is an archive file
FILE_ATTRIBUTE_HIDDEN -- The file is hidden
FILE_ATTRIBUTE_NORMAL -- The file has no other attributes set
FILE_ATTRIBUTE_OFFLINE -- The data of the file is not immediately available
FILE_ATTRIBUTE_READONLY -- The file is read-only
FILE_ATTRIBUTE_SYSTEM -- The file is part of the operating system
FILE_ATTRIBUTE_TEMPORARY -- The file is being used for temporary storage

ExitWindowsEx ( EWX_LOGOFF, 0 )

possible arguments for ExitWindowsEx are

EWX_FORCE Forces processes to terminate. When this flag is set,
Windows doesn't send WM_QUERYENDSESSION and WM_ENDSESSION messages to
running applications in the system. This can cause the applications to
lose data. Therefore, you should only use this flag in an emergency.

EWX_LOGOFF Shuts down all processes running in the security context of the
process that called the ExitWindowsEx function and logs the user off.

EWX_POWEROFF Shuts down the system and turns off the power, if supported.

EWX_REBOOT Shuts down the system and then restarts the system.

EWX_SHUTDOWN Shuts down the system to a point at which it is safe to
turn off the power. All file buffers have been flushed to disk, and
all running processes have stopped

 

strings

bcx basic manual home



STRINGS

right$(string$,number)

example

a$ = right$(a$,5) 'takes the five left most charecters

left$ 'this is the same concept as right$

mid$ 'this works the same as right$ only is the middle of the string

chr$

example

a$ = chr$(65) + chr$(66) 'adds the ascii char in the postion to end of the string

command$, argv$[a] (argv is dos c and not for windows) COMMAND$(i) (newer version for windows and console)

example

a$ = "The Command Line =" & Command$

********* example 2

i = 1

cmd$ = COMMAND$(i)

WHILE cmd$ <> ""
PRINT "Argument", i, " is [", cmd$, "]"
i++
cmd$ = COMMAND$(i)
WEND

Replace$

reverse$

example

Print Reverse$ ( "Hello There" )

FORMAT

Replace (main$ , match$ , change$)

examples

A$ = Replace$( "1234567890", "456", "-ABC-" )
REPLACE "Here" With "There" In a$

ucase$, lcase$ : upper case string, lower case string

example

v$ = ucase$(s$)

date$ : returns the date as a string

example

a$ = date$

time$ : returns the time as a string

example

a$ = time$

space$ : returns a number of spaces as a string

example

a$ = space$(6) : the number of spaces is in the parenthesis

repeat$

example

a$ = repeat$(10,"Hello ")

FindFirst$, FindNext$

example

A$ = FindFirst$("*.*")
A$ = FindNext$

curdir$,sysdir$, tempdir$ :current, system and temp directory

example

a$ = curdir$

instr$ : in string (is this in the string)

example

Sep = Instr(A$ , ",")
' if sep is > 0 then it is in the string otherwise it is not..

REMOVE$ 'removes a string from another string

example

REMOVE "abc" FROM Q$ ' Also legal in BCX-> Q$ = Remove$(Q$,"abc")

USING$

example

CLS
DIM A$

A$ = USING$ ("###,###,###.##" , -123456789.123456) : PRINT A$
A$ = USING$ ("$###,###,###.###" , -123456789.123456) : PRINT A$
A$ = USING$ ("$###,###,###.####" , 123456789.123456) : PRINT A$
A$ = USING$ ("$###,###,###.#####" , 123456789.123456) : PRINT A$
A$ = USING$ ("$###,###,###.#######" , 123456789.123456) : PRINT A$
A$ = USING$ (" ###,###,###.##" , 123456789.123456) : PRINT A$
A$ = USING$ (" $###,###,###.##" , 123456789.123456) : PRINT A$

 

program control

bcx basic manual home



PROGRAM CONTROL

if ... then ... else ... end if
example
if a% > b! then
function = a%
else
function = b!
end if

$IF/$ELSE/$ELSEIF/$ENDIF metastatements

***************************************************************************' Conditional compilation using: $IF/$ELSE/$ELSEIF/$ENDIF metastatements
***************************************************************************
By un-commenting one of the following CONST statements, the resulting
executable code changes as well. Only the code that is associated
with the true condition is compiled, the rest is disregarded.
***************************************************************************
CONST ENGLISH
CONST SPANISH
CONST GERMAN

$IF ENGLISH
? "Good Day"
? "What's happening?"
$ELSEIF SPANISH
? "Buenas Dias"
? "Como va?"
$ELSEIF GERMAN
? "Guten Tag"
? "Was ist los?"
$ELSE
? "Greetings Earthling"
? "Where is the cafeteria?"
$ENDIF
for to..step... next
example
for k = 0 to 14 (step -1 or 6 or whatever here)
color k
next

While ... Wend
example
while len(a$[counter%]) < 79
a$[counter% = a$[counter%] & *)
Wend

goto ... label:
example
goto here
a$ = "test" 'this command gets skipped
here:

do ... loop
example
do
a++
if a>45 then
exit loop
end if
? a
loop

Function .. End Function
the keyword OPTIONAL can be used before the arguments if they are not required

a$ = there$("hello")
Function There$ (C$)
Function = Ucase(C$) & " There "
End Function


sub ... end sub

SUBS can be invoked with or without using the CALL keyword but
remember that the parenthesis and the correct parameters must be used
the keyword OPTIONAL can be used before the arguments if they are not required

CALL Greeting ("Hello from the World of Programming!")

Greeting ("Hello from the World of Programming!")

sub Greeting(a$)
print a$
end sub

'another way to define subroutines is by using the gosub

label: ... return

example

GOSUB qwerty 'this calls the qwerty sub

QwErTy: ' BCX Subroutine Labels are NOT case sensitive

PRINT " This is instance >>", j, " << of the subroutine call."

RETURN ' Return from subroutine back to main program

Select Case ... End Select
example
Select Case Ucase$(a$)

Case "GoodBye"
? "GoodBye"

Case "12345"
? "12345"

Case "HELLO"
? "It passed the Case string test!"

Case "bombed"
? "bombed"

Case Else

? “case test not found”

End Select

********** example 2

Dim A, B$

Input "Enter A Number ", A


Select Case A

Case >1 And <10
Print ">1 And <10 "

Case >10 And <20
Print ">10 And <20"

Case 31,32,33
Print "31,32,33"

Case Else
Print "No special case found"

End Select


PRINT

input "Type one, two, qwerty, or other ", B$

select case B$

case "one","two"
Print "one, two"

case "qwerty"
Print "qwerty"

end select

 

command listing

bcx basic manual home




$comment ... :Compiler directive to ignore everything between a $comment set
asc .... (character) : returns the ascii value of a charecter
atn .... (variable) : arc tangent
cls ... : clear screen
dim ... variable : intializes a variable
color ... color, unknown : text color
end ..... : ends the program
FILLARRAY .... : see example in s148
exists ... (string) : returns boolian if a file exists or not
GetCurrentDirectory (string, number) :returns the directory in the string
GetSystemDirectory (string, number) : returns the directory in the string
GetComputerName(string,variable :returns the name of the computer (may need dword)
GetSystemInfo (&si) :get system info see example s70
GlobalMemoryStatus (&ms) :global memory see example s70
GetShortPathName .. (COMMAND$ , ShortName$ , 256) : returns short version of name
INCR .. var :increments the var example is DIM RAW
input ... text or number, string : prints out string or vaiable and then puts user input in a string
instat :boolean returns true when a key is pressed
KILL ...filename$ :erases the file specified as filename$
lapse .... : amount of time that has lapsed on timer
like (string1, string2) :Need to do more research does return an integer
Len ... string$ : length of string ex. len($a)
LOF .... (string) : returns the length of a file
malloc :memory allocation
memcpy :standard c function
memset ( A$, 65, TenMillion ) : memset is a lowercase "C" stdlib func
MsgBox .. : windows message box
locate ... x,y, unknown : goto spot on text screen
panel .... x1,y1,x2,y2,foreground,background,color1?, color2? : creates a window
PlayWav (string) : plays the wave file indicated in string
print ... string : prints text to screen can also use ? instead of print
QSORT .... A!, 9, ASCENDING :last one is ascending or descending second is number to sort
SetConsoleTitle ... console title : sets a title to the screen
RANDOMIZE (TIMER) : randomizes rnd
remove string from string : removes the string in first instance from the string in the second
rnd :random function returns value between 0 and 1 ex.. r = rnd
Shell filename :brings up the program indicated in filename
sleep ..................... (number) : an instruction that pauses for an amount of time
split .......................(A$, B$, ",;+", 2) : splits a string (need more info on usage)
swap .... string1$ string2$ : swaps the values between two variables.
timer .... : times an operation
WriteConsoleOutputCharacterA :see example 90
WriteConsoleOutputAttribute :see example 90 for usage
val .... (string) : returns the numeric value of a number in a string

 

consule example listings

bcx basic manual home


example s00 hello world type example
example s01 goto label example
example s02 if then else example
example s03 simple example of a function
example s04 creating and storeing 1000 strings
example s05 chr$
example s06 looks like an example to get the command line
example s07 do loop example
example s08 print example
example s09 looks like an example to load a file (need to double check that skip for now)
example s10 create a test file (I skipped this for now)
example s11 a hello world example
example s12 true false example using if..then
example s13 an example using input
example s14 example of instr (I need to look this up and add it below"
example s15 left$
example s16 for..next loop
example s17 mid$ example
example s18 message box example
example s19 calculating pi example
example s20 replace$ example
example s21 right$ example
example s22 function example
example s23 while example
example s24 calculating pi example
example s25 input example
example s26 subroutine example
example s27 ucase$, lcase$ example (lower case, upper case)
example s28 val example
example s29 while, endif example
example s30 date$ example
example s31 date$ , time$ example
example s32 example of space$
example s33 asc example
example s34 repeat$
example s35 SetConsoleTitle example
example s36 select case example
example s37 factoral example
example s38 colon seperated example
example s39 replace all spaces with underscores example
example s40 timing 100 million loops example
example s41 sample window example
example s42 send example (check this to see if it is working corectly and add to docs)
example s43 GetCurrentDirectory example
example s44 exists example
example s45 sleep example
example s46 constant example
example s47 end example
example s48 show directory example (! befour the subroutine lines unsure what that means)
example s49 GetEnvironmentVariable example
example s50 c macros (! is possibly c code mixed or whatever)
example s51 minimize all windows example (didn't add to text)
example s52 example of a local variable
example s53 get drivetype example
example s54 buffer example
example s55 left$, right$ , mid$ example
example s56 Euclid's Method example
example s57 get current directory example
example s58 get system directory example
example s59 instat example
example s60 get computer name example
example s61 example capitalize first letter, lower case for the rest called proper
example s62 mid$ example
example s63 reverse$ example
example s64 convert a number to a roman numeral
example s65 set file attribute
example s66 example that links with a c library (while file is being used??)
example s67 FindFirst$, FindNext$ example
example s68 PlayWav example
example s69 curdir$,sysdir$, tempdir$ example
example s70 system info example
example s71 command line example of copying a file to the clipboard (clipboard functions not added yet to text)
example s72 example that returns the file handle of the file being executed
example s73 find file in directory tree example (also #include in example )
example s74 returns the last time a file was written
example s75 keypress example
example s76 subroutine example
example s77 reads a file into a buffer
example s78 date and time example
example s79 simple windows example using winmain
example s80 querty and type example
example s81 case..else example
example s82 opening a printer example
example s83 copying a file using pointer arithmetic
example s84 string parsing example
example s85 toggle full screen mode example (windows)
example s86 data statement example
example s87 example of parsing a string
example s88 show/hide desktop icons example
example s89 string copy example
example s90 get text, put text example
example s91 example of c command line parameters (argv not for windows)
example s92 display winsock info
example s93 remove string example
example s94 example of notepad being used as a console program
example s95 randomize example
example s96 returns “short” version of a filename
example s97 swap command example
example s98 change the wallpaper example (sysparemeters)
example s99 sample showing off multi-dimensional user-defined types
example s100 The Ascii Macarena Dance example
example s101 operating system version demo.
example s102 input example
example s103 writes a html file that links to other files in the directory.
Example s104 for .. next example
example s105 subroutine example
example s106 replace example
example s107 sort example
example s108 remove and replace example
example s109 like function
example s110 check to see if it is a valid credit card number
example s111 A Shell-Metzner Integer Sort Example
example s112 example of the comment statement
example s113 create a binary file
example s114 ExitWindowsEx example
example s115 creates a very large file and then save to disk
example s116 read and write ini files
example s117 example of how to modify arrays that are passed to functions
example s118 iterate example (not like python is this usefull???)
example s119 oldsyle windows demo..
example s120 example of the color keyword
example s121 $IF/$ELSE/$ELSEIF/$ENDIF metastatements example
example s122 splitpath example
example s123 remove whitespace example
example s124 example of constants
example s125 Standard Deviation Function example
example s126 directory tree example
example s127 case example
example s128 retrieve files from a server
example s129 qsort example
example s130 Demonstrates OPTIONAL ARGUMENTS in User Defined FUNCTIONS/SUBS
example s131 function overloading
example s132 chr$ example
example s133 calculating pi example
example s134 goto...gosub example
example s135 THE BINARY OBLONG RANDOM NUMBER (BORN-49) GENERATOR
example s136 using$ example
example s137 download example (may add to text later if I understand it)
example s138 pass arrays and integers to subs
example s139 array of 10 integers
example s140 ascii example
example s141 command line example for console and gui (windows)
example s142 time$ example
example s143 upper bound on strings and numerics
example s144 parse example
example s145 dynamic memory example
example s146 count the lines in an example
example s147 string array example
example s148 fill array example
example s149 multi-select files using Windows common dialog box
example s150 FUNCTION and SUB pointers
example s151 redim and redim preserve example
example s152 example using airplanes and flight scedules
example s153 linked list example
example s154 Semi-OOP implementation example
example s155 long double example

 

unauthorised bcx basic manual

This is the unauthorised bcx basic manual. Bcx basic is a bcx basic to c language converter and compiler. This is released in the hope that it will be helpfull (and the hope that there is some traffic).. The information in the manual is mostly from the examples and may be (probily is) not complete and may not always be acurate.


Libtcob for bcx basic

Compiling to an exe file

console example listing

Usin SuperEdit with bcx basic

CR editor with bcx basic and python

BCX basic gcc compile tool"

Program Control

String commands

misc windows and system commands

bcx variables


Helpfull links

bcx devolopment suite

bcx yahoo groups


 

unauthorised bcx basic manual

This is the unauthorised bcx basic manual. Bcx basic is listed in free country as a bcx basic to c language converter. This is released in the hope that it will be helpfull (and the hope that thier is some traffic).. The information in the manual is mostly from the examples and may be (probily is) not complete.

 

unauthorised bcx basic manual

This is the unauthorised bcx basic manual. Bcx basic is listed in free country as a bcx basic to c language converter. This is released in the hope that it will be helpfull (and the hope that thier is some traffic).. The information in the manual is mostly from the examples and may be (probily is) not complete.

Monday, December 17, 2007

 

bcx basic manual (beta)

I am not realy sure there is much interest in such things and it is possible there is a manual somewhere that I should use instead... this is just a couple of pages that I have started, maybe I will do more looks like there is a pretty good example of what I have been wanting to do. There does not appear to be a complete manual anywhere..

example s00 hello world type example
example s01 goto label example
example s02 if then else example
example s03 simple example of a function
example s04 creating and storeing 1000 strings
example s05 chr$
example s06 looks like an example to get the command line
example s07 do loop example
example s08 print example
example s09 looks like an example to load a file (need to double check that skip for now)
example s10 create a test file (I skipped this for now)
example s11 a hello world example
example s12 true false example using if..then
example s13 an example using input
example s14 example of instr (I need to look this up and add it below"
example s15 left$
example s16 for..next loop

cls ... : clear screen
dim ... variable : intializes a variable
color ... color, unknown : text color
input ... text or number, string : prints out string or vaiable and then puts user input in a string
Len ... string$ : length of string ex. len($a)
locate ... x,y, unknown : goto spot on text screen
print ... string : prints text to screen can also use ? instead of print

PROGRAM CONTROL

if ... then ... else ... end if
example
if a% > b! then
function = a%
else
function = b!
end if

for ... next
example
for k = 0 to 14
color k
next

While ... Wend
example
while len(a$[counter%]) < 79
a$[counter% = a$[counter%] & *)
Wend

goto ... label:
example
goto here
a$ = "test" 'this command gets skipped
here:

do ... loop
example
do
a++
if a>45 then
exit loop
end if
? a
loop

Function .. End Function

a$ = there$("hello")
Function There$ (C$)
Function = Ucase(C$) & " There "
End Function

STRINGS

right$(string$,number)

example

a$ = right$(a$,5) 'takes the five left most charecters

left$ 'this is the same concept as right$

chr$

example

a$ = chr$(65) + chr$(66) 'adds the ascii char in the postion to end of the string

command$

example

a$ = "The Command Line =" & Command$

types of variables
$ .. string variable ex a$
% .. numeric example a%
! .. numeric example a!
# .. numeric pounds I think example a#

Thursday, December 13, 2007

 

2415 coleman street ( corpus christi )

I was looking at 2415 coleman street in corpus christi texas ( tx ).. This is two units offered by island reality (This is from memory so adress and realitor may be slightly different).. The house next door (the one closer to 18th street) has an agressive dog that is pregnant, It is possible (because I have delt with this breed befour near the county library downtown) that the dog won't back off and bite someone when she has her pups.. As far as owner ocupied it looks like someone who walks may have a problem and I even heard the comment he is likely to get shot.. I went through era and they realy didn't seem that helpfull and he said he was there exactly on time and I had went there and didn't see him three minutes befour the apointment at 10:00 am and decided to back off... There would be no way I would owner occupy (as a white person) in a anti-white mexican neiborhood (at least enough so where I would have more problems with people than usual).. They don't realy suggest anything such as owner finance or a management agreement (it would have to be managed by someone to be feasable))... Island reality has also made some errors in how they listed it.. they listed one unit when they calculated square footage and didn't mention the number of units in the mls.. It should have also been listed as multi-family and that suggests circumstansly that there may be an effort to manipulate the price or play devils advocate.. the dog also suggests it could be happening (not that it is but someone could do that to manipulate the price). There is circumstansial stuff at play that may be worth looking into.. the property itself looks like it might be insurable.. At least the roof looks good enough on first glance to get the insurance.. the neiborhood suggests that alot of people will be late and not pay thier rent.. Alot of 40's style mobile home looking strictures on piers...

Saturday, December 08, 2007

 

4514 evelyn street

( 4514 evelyn street corpus christi texas tx )This is listed with dick myers.. The remax people say it is not thier remax it is a remax out of portland and they would know more about the shape that it is in and that she is friends with his wife... (didn't get the name).... Dick says there is problems with the title and that a title company will not insure it the first agent says it is listed as cash only.. dick says that it was done through an atourny.. he also says the foundation is cracked and that the roof needs repaired..

This has bad news written all over it you want me to give you 20k and then not have title insurance... I will give the agent and the seller the benifit of the dout and not say it is fraudulent but this is the sort of thing that can screw you and I don't understand why it is listed, It's is kinda a waste of everyones time..

Thursday, December 06, 2007

 

codwell banker

Something happened where the adress's stopped coming up on coldwell bankers website followed by coldwell banker losing it's search engine ranking for "corpus christi" + "real estate"... They seem to have more listings than some of the free ones... There is yahoo and a few others... The bad think about it is you can't look up an adress such as 133 edwards street in corpus christi and then find the inspection report like you could a few weeks ago or find out that the price as listed on craigs minus the 10% suggested as a usual down payment came out to 666 plus some zero's.. The sellers agent is a different company though.. pyscopaths will leave clues sometimes so something that may seem or maybe it is coincidental is worth a closer look... hopefully it is nothing.. I take that back the adress's for multi-family are up there but the adress's for single family are not... doesn't seem that usefull except for a small number of people. (revised and extended)

Monday, December 03, 2007

 

bank of america rates

One of the major banks bank of america has just dropped it's rates for credit cards.. looks like there should be another drop next month... Should give card holders a delayed rate cut and some balance dropping stuff...

This page is powered by Blogger. Isn't yours?