With over 100 Git working copies, I wanted something to let me know what I had forgotten to commit or push. This is a basic approach.
The APIs are so powerful, finding the simple approach took time.
With over 100 Git working copies, I wanted something to let me know what I had forgotten to commit or push. This is a basic approach.
The APIs are so powerful, finding the simple approach took time.
The only blog on Jess that I’ve found.
Here is a template that I have found successful in minimizing the hassle for a motorcycle seller and maximizing the information summary for a motorcycle buyer. Credit is due to those who helped me with this; foul is due to me for any mistakes. It follows:
Hello,
Regarding your motorcycle for sale, I put together the following questions to make it pleasant both for you as a seller and me as a buyer:
In case I want to set up an appointment to test-ride and purchase the bike, at what phone number(s) are you reachable throughout the day?
My cell phone number is ###-###-####.
Why are you selling it?
Do you have the title?
Is the title in your name?
Is there a lien against the title?
Does the VIN on the bike match the VIN on the title?
Has this bike been rebuilt?
Did you follow the standard maintenance schedule for the motorcycle?
Are service records available?
If so for how long?
When is the last time that the the brake pads, hoses, or any of the fluids were changed (and which ones)?
When is the next service due?
What year is it?
How many miles does it have?
Has it ever been tipped over?
Does it come with any after-market items:
* Body (seat, fender extension, foot pegs, levers, tip over bars, handlebar risers, passenger backrest, heated grips, throttle lock, tank bra)?
* Braking(lines, pads, rebuilds, rotors)?
* Electrical(battery, horn, power outlet for heated gear)?
* Engine/Transmission(air filter, seals, cooling, spark plugs, exhaust)?
* Fuel System(fuel tank quick release, carbs, jet kit, filter)?
* General(vendor owners manual, Clymer manual, cover, wheel lock (any method))?
* Hardware(stainless screws)?
* Lighting(mounts, light kits, dual-headlight, tail lights)?
* Luggage(top case mount, top case (Givi etcetera), tankbag?
* Suspension(shocks, fork brace, )?
* Windshield(Givi, Rifle, lip add-on)?
Do you allow a test-ride before purchasing the bike?
Do you accept a cashiers check?
How much are you asking?
Is that negotiable?
Best wishes,
firstname lastname
IntelliJ Idea is best Java development environment out there. It can be an IDE or a text editor—configure it however you wish because whatever you do it will be simple. At its simplest you only need 4 settings to make it better out of the box:
git checkout --orphan NEWBRANCH git rm -rf . touch .gitignore git commit -a -m ""
Via bitflop.
Addendum: 2014-02-28:
Create an orhan branch git checkout --orphan lp git rm -rf . touch .gitignore git add .gitignore git diff --cached git commit -m "Initial import." Create a remote branch git push -u origin lp Obtain a remote branch git checkout -b lp Delete a branch Remote: git push origin :lp Local: git branch -D lp
Use 7-Zip to rename the folder. Via superuser.
Not sure whether I blogged about this or not already, but I sure could not find it so here goes.
A while back my buddy Bruce needed some randomly generated images in a particular format for a project. The specs were more of a “I’ll know it when I see it” kind of thing so I volunteered to help out and have some fun with Racket in the process.
The nifty part is that during development and also use you may preview the images directly inside of DrRacket. This feature made the work so, so fun (other editors do this, too).
Here is a copy of the code. Try running manual.scm and the image will show up in the REPL. If you run automatic.scm it will dump the image in /tmp.
As a Subversion master-user I was hoping for a lot from \_Pro Git and was rewarded greatly. The author gives Git a fair shake without throwing Subversion under the bus. He does a great job teaching not just the tools, but the culture and “how to think” the Git way. The latter is devoid in literally every tutorial I’ve seen online, and I’m not sure it is even possible to sum it up in anything less than the entirety of this book. The length is just fine, chapter are brief, terse, light, and information packed. The multitude of tools and approaches revealed in the book make it worth reading, and buying, too. Although the book is free online, the author should be rewarded with a purchase. Before reading this I spent 5 months using Git with the typical docs: man pages, stackoverflow.com, and random posts. This book pulled everything together, it was kind of like sitting with a hacker who really groks it all (as you will see in the last chapter), and that alone is priceless. 5/5
Addendum: the formatting and graphics in the Kindle version look excellent (forgot to mention this key point as not all Kindle books look this great).