-
Posts
2668 -
Joined
-
Last visited
Content Type
Profiles
Forums
Gallery
Everything posted by Blue88Comanche
-
Leaking Fuel Injectors
Blue88Comanche replied to daltonmcgill7's topic in MJ Tech: Modification and Repairs
You can pull them from a junk yard for cheap, they may just five them too you if you end up getting something else. Auto stores in general should have them -
Msd Multi Spark And Coil
Blue88Comanche replied to skidoo_j's topic in MJ Tech: Modification and Repairs
is his camero fuel injected or carb? edit, just re read your post, the MSD was more for pre computer controlled ignition systems -
Leaking Fuel Injectors
Blue88Comanche replied to daltonmcgill7's topic in MJ Tech: Modification and Repairs
more info http://comancheclub.com/topic/36854-leaking-fuel-injectors/ -
Msd Multi Spark And Coil
Blue88Comanche replied to skidoo_j's topic in MJ Tech: Modification and Repairs
There was a post about this sometime last year, I think people where saying not to get it, because the 4.0 is fuel injected and there would not much if any noticeable change. -
yesterday i finally swapped front axles on my MJ. and i was finally able to hook up the front drive shaft as well as put it into full-time 4wd. and it makes a odd clanking sound whenever i turn... last year sometime my stock BA-10 /w 231 died (the TC was fine) I replaced the old transmission and TC with an AX-15 / 242, i drove it home with the stock axles (D30 with CAD locked and D35 with 3.07 gears) it had the same strange sounds. I locked the cad to the open position and the sounds stopped. so i replaced the front and rear axles to a non cad D30 and a D44 with 3.55 gears. and hooked up the 4wd and it makes the same sounds. before i put the new D30 on i checked the gears for cracks and broken teeth, it was good. if i go straight there are not any strange sounds only when i turn.
- 10 replies
-
Swapped the front axle on my MJ, and replaced a u-joint on the front drive shaft. My Comanche is a 4wd MJ again! I set the 242 to 4wd Full time. I still need to get the shifter handle hooked up, after I make a ax-15 linkage mount...
-
My sister is in Auburn, AL for college. one of her professors let the class out early so they could play in the snow....
-
its doable, check the DIY section. you will need to add transmission cooler lines, trans cooler, shifter cable, and so on. the list in the DIY is for a 4.0 but the same general idea applys, just look for the 2.5 equivalent.
-
Leaking Fuel Injectors
Blue88Comanche replied to Blue88Comanche's topic in MJ Tech: Modification and Repairs
Thank you! This is what I was asking for, hopefully this weekend I will be able to replace the o rings -
http://jeepsticker.com/
-
I don't use a mac so i can't really speak for its text editor, but... with windows while i can use the built in notepad to make and edit python programs or scripts, its just a text editor.. where as Notepad++ shows the line number and will automatically color code conditions or comments and what not. Notepad++ also support tabs like "firefox" so yoy can have several files open and only use the one window.
-
I will look into those, currently I am using tortoiseSVN's local repository feature, Have you used Visual FoxPro 9 Professional? My uncle is a programmer and gave me use his extra copy. After I learn more python I was going to start on FoxPro, or maybe Russian lol
-
so its a good thing i posted the code for my program here, cause i broke the version i was working on. I started using TortoiseSVN to manage the older versions
-
That's because the more beer everyone downed the more fluent in drunkinese everyone becomes, once you sober up you lose it.
-
That was another reason I chose python, my servers are running Linux and my raspberry Pi also runs a version of Linux
-
Leaking Fuel Injectors
Blue88Comanche replied to Blue88Comanche's topic in MJ Tech: Modification and Repairs
how do i clip the injectors to the fuel rail? does the rail need to be removed? i need to know how to, not just you need to... -
I would actually like to learn Russian,
-
i overlooked the "code" button lol, thanks for reminding me! Python is best described at their web page www.python.org I chose python because it was free and easy to learn... that and my cousin knows python and helps me out with it.
-
thanks Alexia, that is much better
-
Last week i decided it was time i tough myself another language. I have been learning it rather quickly too. I am teaching myself, Python here is a program i wrote for our business: print "membership Calculator v0.5" #membership rates and fees #edit the number fields to change rates. single_per = 35 extra_per = 20 startup_1 = 15 startup_extra = 5 discount = 0.9 #but don't change after this point tanning = 0 anytime_health = 0 no_fee = 0 #questions print "How long is the membership (In months)" months = input () print "Is this a single membership or family? 1 = Single / 2 = Family" memberanswer = input () #single if memberanswer is 1: print "does this membership get a 10% discount? 1 = yes / 2 = no" discount_ans = input () if discount_ans is 1: single_per = single_per * discount print "Is there a Start up fee? 1 = yes / 2 = no" single_fee_ans = input () if single_fee_ans is 1: single_contract_fee = single_per * months + startup_1 single_contract = single_per * months down_pay = single_per + startup_1 bal = single_contract_fee - down_pay print "Does this membership get discount? 1 = yes / 2 = no" print "Single membership rate is %s dollars per month" % (single_per) print "plus a %s dollar start up fee" % (startup_1) print "Total year Membership cost %s dollars" % (single_contract_fee) print print #Contract fillout cheat sheet print "Contract Cheat sheet" print print "Membership --------- %s" % (single_contract) print "Tanning ------------ %s" % (tanning) print "Processing Fee ----- %s" % (startup_1) print "Anytime Health ----- %s" % (anytime_health) print "Total -------------- %s" % (single_contract_fee) print "Downpaymnt --------- %s" % (down_pay) print "Remaining Balance -- %s" % (bal) months_bal = months - 1 print "%s remainting payments" % (months_bal) print "at %s dollars per month" % (single_per) if single_fee_ans is 2: print "Single membership rate is %s dollars per month" % (single_per) single_contract = single_per * months down_pay = single_per bal = single_contract - down_pay print "Total year membership cost %s dollars" % (single_contract) print print #Contract fillout cheat sheet print "Contract Fill-out Cheat sheet" print print "Membership --------- %s" % (single_contract) print "Tanning ------------ %s" % (tanning) print "Processing Fee ----- %s" % (no_fee) print "Anytime Health ----- %s" % (anytime_health) print "Total -------------- %s" % (single_contract) print "Downpaymnt --------- %s" % (down_pay) print "Remaining Balance -- %s" % (bal) months_bal = months - 1 print "%s remainting payments" % (months_bal) print "at %s dollars per month" % (single_per) #secondary members if memberanswer is 2: print "How many Secondary Members?" secondary = input () membership_per = secondary * extra_per + single_per print "does this membership get a 10% discount? 1 = yes / 2 = no" discount_ans = input () if discount_ans is 1: membership_per = membership_per * discount print "Is there a start up fee? 1 = yes / 2 = no?" extra_fee_ans = input () if extra_fee_ans is 1: multi_fee = secondary * startup_extra + startup_1 multi_contract_fee = membership_per * months + multi_fee multi_contract = membership_per * months down_pay = membership_per + multi_fee bal = multi_contract_fee - down_pay print "Membership rate is %s per month" % (membership_per) print "plus a %s start up fee" % (multi_fee) print "Total Membership cost %s dollars with %s secondary member(s)" % (multi_contract_fee,secondary) print print #Contract fillout cheat sheet print "Contract Fill-out Cheat sheet" print print "Membership --------- %s" % (multi_contract) print "Tanning ------------ %s" % (tanning) print "Processing Fee ----- %s" % (multi_fee) print "Anytime Health ----- %s" % (anytime_health) print "Total -------------- %s" % (multi_contract_fee) print "Downpaymnt --------- %s" % (down_pay) print "Remaining Balance -- %s" % (bal) months_bal = months - 1 print "%s remainting payments" % (months_bal) print "at %s dollars per month" % (membership_per) if extra_fee_ans is 2: print "Family membership rate is %s per month" % (membership_per) multi_contract = membership_per * months down_pay = membership_per bal = multi_contract - down_pay print "Total membership cost %s dollars with %s secondary member(s)" % (multi_contract,secondary) print print #Contract fillout cheat sheet print "Contract Fill-out Cheat sheet" print print "Membership --------- %s" % (membership_per) print "Tanning ------------ %s" % (tanning) print "Processing Fee ----- %s" % (no_fee) print "Anytime Health ----- %s" % (anytime_health) print "Total -------------- %s" % (multi_contract) print "Downpaymnt --------- %s" % (down_pay) print "Remaining Balance -- %s" % (bal) months_bal = months -1 print "%s remainting payments" % (months_bal) print "at %s dollars per month" % (membership_per) raw_input ("press Enter to close window") sorry about posting all the code!
-
This morning I went out to jump start dads mj, while the hood was up I saw that 2 of the injectors and the ports for them was oil free, and noticed that the clips had come undone. After I started the jeep and moved it closer to the shed I checked it again and they where leaking fuel where the injector connects to the fuel rail. How do I reconnect these clips, or should I replace all the injectors? If I replace them what should I get? Thanks
-
Novak Shift Cable On Np-242
Blue88Comanche replied to flint54's topic in MJ Tech: DIY Projects and Write-Ups
Novak sells 2 shifter kits, a cable based kit (like on this thread), and a linkage based kit. -
I don't know if Mom passed along the club info to the owner of this jeep. but if you "the owner" find this post Welcome to the club! Mom spoke with the owner of this Comanche, he bought it from a guy who had it sitting in a garage. it only has 88K miles on it and is in near mint condition.... I wish I went over to her club for lunch today, could have handed out another club card.
-
External Clutch Slave?
Blue88Comanche replied to Walkenvol's topic in MJ Tech: Modification and Repairs
I have not swapped to external slave yet but plan to. I say if you can find the parts then grab them.. unless you just like removing your transmission every time the internal slave bites the dust :fs2: -
sounds interesting, post any findings! :wrench: have any pre-HHO MPG figures?
