Search Results For “Tag:howto” - # - rss
JR:
Using CSS to center text vertically and horizontally
- html
head
style
.divContainer {
display: table;
width: 100%;
height: 100%;
}
.divCenteredObject {
display: table-cell;
vertical-align: middle;
text-align: center;
}
/style
/head
body
div class=divContainer
div class=divCenteredObject
h1This text is c...
more>>
- Aug 12, 2014
- #css #howto
JR:
Interview with Chuck Palahniuk - Fiction Writing Advice
- (my blog post from Tuesday, November 19, 2002)
In the Onion:
"For each character, I try to identify a body of knowledge. What is it that that character knows so well that it colors how they see the rest of the world? So I'll do a bunch of researc...
more>>
- Jul 18, 2014
- #writing #author #howto
JR:
Garden tip for carrots and celery
- From the Shared Legacy Farms Facebook page:
Take the tops off your carrots when you get home, or they will get "floppy" as the greens suck the moisture out. We like to put them in water to keep them crisp like celery.
#home - #garden - #food - ...
more>>
- Jul 16, 2014
- #home #garden #food #howto
JR:
Brooklyn Brew Shop - Summer Wheat Instructions
- (Their website with instructions would not function on either tablet. Copied instructions here, so that we can access them via tablet in kitchen.)
- brewing instructions - pdf file
I. The Mash
Heat 2 quarts (1.9 liters) of water to 160F (71C)...
more>>
5 min read
- May 27, 2014
- #howto #beverage #beer #home #blog_jr
JR:
"How to be a great software developer"
- https://news.ycombinator.com/item?id=7627540
#programming - #howto
- Apr 22, 2014
JR:
Home beer brewing notes
- Yeast
https://www.wyeastlab.com
Recipes
Equipment for First Batch
7-gallon fermenting bucket
3-piece airlock
#recipe - #beverage - #beer - #howto
- Mar 21, 2014
JR:
Why take a Zingerman's baking class?
- Toledo Talk thread about malls, shopping, and gift ideas.
My suggestion
"Zingerman's baking classes make great gifts. Nothing to ship."
A user responded:
I'm afraid if I gave cooking classes of any kind it might be misinterpreted. Like the vac...
more>>
1 min read
- Mar 12, 2014
- #food #education #howto #blog_jr
JR:
CGOA Masters Program
- Crochet Guild of America
About the Masters Course
Masters Course
Ravelry Group
The program is divided into seven parts. All are to be completed and submitted at one time. Here is a quick look at what is covered.
Part One: Different methods of ...
more>>
1 min read
- Mar 06, 2014
- #crochet #howto #education
JR:
Using the Internet for fun and profit
- Sep 30, 2013 - Wired - Twitter Founder Reveals Secret Formula for Getting Rich Online
Excerpts:
Ev Williams has figured out the internet.
his message was clear: At a time when so many internet entrepreneurs are running around Silicon Valley try...
more>>
4 min read
- Mar 03, 2014
- #quote #web #business #howto #gtd #blog_jr
JR:
Another user's view on Medium.com
- Certainly different and a bit humorous.
Nov 25, 2013 - Im Already Tired of Medium - "I came here to write and think, not to be told what to do."
Though the sites tagline is attractive and reassuring (A better place to read and write), its unf...
more>>
1 min read
- Mar 03, 2014
- #medium #blogging #writing #howto #blog_jr
JR:
DD's baking class at Zingerman's
- Goin' Crackers
Wednesday, March 5, 2014,
5:30 pm to 9:30 pm
Some Reminders
Please wear clothes you don't mind getting flour on and closed-toe shoes. We here at the Bakehouse wear hats, you can wear one also if you like, but you don't have to. We...
more>>
2 min read
- Feb 11, 2014
- #event #food #recipe #howto
JR:
Scott Adams - How to Be Successful
- October 2013
WSJ article!
HN thread
Systems-oriented is preferred over goal-oriented.
Adams in the WSJ article:
Had I been goal-oriented instead of system-oriented, I imagine I would have given up after the first several failures. It would...
more>>
1 min read
- Jan 15, 2014
- #gtd #howto #blog_jr
JR:
Textile shortcuts
- Quick block modifiers
Header: hn.
Blockquote: bq.
Footnote: fnn.
Numeric list: #
Bulleted list: *
Quick phrase modifiers
emphasis
*strong*
citecitation/cite
deleted text
inserted text
superscript
subscript
span
bigger
smaller
code
To apply ...
more>>
- Dec 10, 2013
- #markup #textile #howto
JR:
Story ideas and other tips for authors
- August 2013
https://medium.com/editors-picks/60ad7174718d
"Joshua is also one half of Epic Magazine, a new publishing start-up that is collaborating with Medium. We asked him about his writing."
From Joshua:
A lot of the distribution platforms ...
more>>
1 min read
- Oct 08, 2013
- #writing #author #gtd #howto #blogging #blog_jr
JR:
Loop through a Perl array
- @myNames = ('Larry', 'Curly', 'Moe');
foreach (@myNames) {
print $_;
}
#programming - #perl - #howto
- Oct 02, 2013