Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.23 KB | None | 0 0
  1. Return-Path: <[email protected]>
  2. X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on server.domain.com
  3. X-Spam-Level: ****
  4. X-Spam-Status: No, score=4.9 required=5.0 tests=BAYES_99,BAYES_999,
  5. HTML_MESSAGE,SPF_HELO_PASS autolearn=no autolearn_force=no version=3.4.0
  6. Received: from server.domain.com (root@localhost)
  7. by domain.com (8.13.8/8.13.8) with ESMTP id t2RDO7hHXXXXXX
  8. for <[email protected]>; Fri, 27 Mar 2015 09:24:07 -0400
  9. X-ClientAddr: 45.62.167.24
  10. Received: from lajicarita.cothranbetterbrain.com (lajicarita.cothranbetterbrain.com [45.62.167.24])
  11. by server.domain.com (8.13.8/8.13.8) with ESMTP id t2RDNwllXXXXXX
  12. for <[email protected]>; Fri, 27 Mar 2015 09:24:01 -0400
  13. Date: Fri, 27 Mar 2015 06:24:01 -0700
  14. From: "Breaking.Update" <[email protected]>
  15. Reply-to: <[email protected]>
  16. Subject: Being sharper and alert
  17. Message-ID: <XXXXXXXbJwWS.XXXXXXX7060860112.XXXXXXX538899@lajicarita.cothranbetterbrain.com>
  18. Content-Type: multipart/alternative;
  19. boundary="===============5645338039635930698=="
  20. MIME-Version: 1.0
  21.  
  22. --===============5645338039635930698==
  23. Content-Type: text/plain; charset="us-ascii"
  24. MIME-Version: 1.0
  25. Content-Transfer-Encoding: 7bit
  26.  
  27. |||Forbes||||
  28.  
  29.  
  30. Today's Top story March 27, 2015
  31.  
  32. (http://www.cothranbetterbrain.com/wend-995/36823-58486/conciliations/sect.htm)
  33.  
  34.  
  35. Read more:
  36. http://www.cothranbetterbrain.com/wend-995/36823-58486/conciliations/sect.htm
  37. :
  38.  
  39.  
  40. :
  41.  
  42.  
  43. :
  44.  
  45. :
  46.  
  47.  
  48. Grill or toast 4 slices of Italian bread til crispy. Arrange on plates or a small platter the arugula,2 thin sliced fennels, pears 2 thin sliced and 200 g. of gorgonzola crumbles. To serve drizzle over a little balsamic white or red and evoo then hit it with salt and coarse cracked black pepper. this will serve 4 as a starter or side dish.
  49. --
  50. This must be my interpretation of Kade's recipe since I wrote it in my notes when I saved her recipe
  51. o 1/2 cup walnut or pecan halves, toasted
  52. o about 4 cups arugula or torn salad greens, trimmed washed & dried
  53. o 1/2 cup balsamic or red wine vinaigrette
  54. o 2 to 3 pears, cored & sliced Don't Peel PEARS
  55. o Radish slices
  56. o cuke peeled, seeded and cut in half moons
  57. o peapods sliced on diagonal
  58. o small red onion sliced thin
  59. o 1/4 lb gorgonzola, crumbled This message was sent to [email protected]
  60.  
  61.  
  62. >From Data G+M Team
  63. 8914 Raven Park Drive Charlotte NC
  64. If you no longer want to get emails, safely-remove http://www.cothranbetterbrain.com/nonconformist/eyebeam/9920/unveil.php
  65.  
  66.  
  67.  
  68.  
  69. Long story short, I stepped on a nail Monday night while feeding the woodstove. So, yesterday I spent the day on the couch reading cookbooks. I have a copy of Professional Cooking. Since it is baking season, I thought I'd check out Chapter 24. In this chapter, baker's percentages are explained. Wondering if anyone has converted "home" recipes to baker's percentages. I have all the ingredients to make my grandma's brown sugar shortbread cookies. I thought I'd weigh all the ingredients and make her recipe according to baker's percentages and another batch the conventional way and see which I like better. I'd love to have a discussion on baker's percentages and how to use those for home baking. (Baking is a much more interesting pursuit than painting--I
  70.  
  71.  
  72. Many algorithms require to compute (-1)^n (both integer), usually as a factor in a series. That is, a factor that is -1 for odd n and 1 for even n. In a C or C++ environment, one often sees:
  73.  
  74. #include<iostream>
  75. #include<cmath>
  76. int main(){
  77. int n = 13;
  78. std::cout << std::pow(-1, n) << std::endl;
  79. }
  80. What is better or the usual convention? (or something else),
  81.  
  82. std::pow(-1, n)
  83. std::pow(-1, n%2)
  84. (n%2?-1:1)
  85. (1-2*(n%2)) // (gives incorrect value for negative n)
  86. EDIT: In addition, user @SeverinPappadeux proposed another alternative based on array lookups. My version of it is:
  87.  
  88. const int res[] {-1, 1, -1}; // three elements are needed for negative modulo results
  89. const int* const m1pow = res + 1;
  90. ..
  91. m1pow[n%2]
  92. c++ c algorithm cmath
  93. shareimprove this question
  94. edited 2 days ago
  95.  
  96. asked Mar 17 at 22:14
  97.  
  98. alfC
  99. 1,4831225
  100. 44
  101. pow is a floating-point function so I'd avoid that. n%2 ? -1 : 1 seems the most straightforward. Matt McNabb Mar 17 at 22:17
  102. 7
  103. Another variant would be (n & 1) ? -1 : 1. Some people find it less readable, but a comment next to it clears that up and bit-masking is fast. pjs Mar 17 at 22:22
  104. 4
  105. (n&1)? -1: 1 should be faster -- it's equivalent in this case but not in general, so it may not be automatically optimized. Ben Voigt Mar 17 at 22:23
  106. 3
  107. @BenVoigt Since n%2 is immediately converted to bool here, I would expect identical codegen. T.C. Mar 17 at 22:23
  108. 4
  109. @T.C.: Probably. But note that 1 - 2*(n&1) is correct, while (1-2*(n%2)) from the question can give -1, 1, or 3 Ben Voigt Mar 17 at 22:24
  110. show 8 more comments
  111. 5 Answers
  112. activeoldestvotes
  113. up vote
  114. 25
  115. down vote
  116. You can use (n & 1) instead of n % 2 and << 1 instead of * 2 if you want to be super-pedantic, er I mean optimized.
  117. So the fastest way to compute in an 8086 processor is:
  118.  
  119. 1 - ((n & 1) << 1)
  120.  
  121. I just want to clarify where this answer is coming from. The original poster alfC did an excellent job of posting a lot of different ways to compute (-1)^n some being faster than others.
  122. Nowadays with processors being as fast as they are and optimizing compilers being as good as they are we usually value readability over the slight (even negligible) improvements from shaving a few CPU cycles from an operation.
  123. There was a time when one pass compilers ruled the earth and MUL operations were new and decadent; in those days a power of 2 operation was an invitation for gratuitous optimization.
  124.  
  125. shareimprove this answer
  126. edited Mar 18 at 1:23
  127.  
  128. answered Mar 17 at 22:23
  129.  
  130. Eli Algranti
  131. 3,94311122
  132. 8
  133. n<<1 is defined as n * 2 by the C standard (for non-negative n). , so this is about readability rather than optimization. Matt McNabb Mar 17 at 22:27
  134. 5
  135. Are you going to show the benchmarks that show that this the fastest way? juanchopanza Mar 17 at 22:28
  136. 3
  137. A good optimizing compiler might not compile the branch in ((n&1)?-1:1), but if you can do it yourself, why not? Lee Daniel Crocker Mar 17 at 22:37
  138. 2
  139. @juanchopanza if I had an 8086 processor and an 8086 era C compiler I would but there is no need just look at the number of cycles it takes to do a multiplication vs shift and integer remainder vs logical and. It is much trickier with current compilers and modern 1 cycle multiplication processors. Eli Algranti Mar 17 at 23:07
  140. 8
  141. I wonder how many people have an 8086 processor and an 8086 era C compiler. It seems strange to advise using a bit shift in lieu of an integer multiplication by 2 without a strong caveat. juanchopanza Mar 18 at 6:33
  142. show 4 more comments
  143.  
  144. Did you find this question interesting? Try our newsletter
  145.  
  146. Sign up for our newsletter and get our top new questions delivered to your inbox (see an example).
  147. up vote
  148. 23
  149. down vote
  150. Usually you don't actually calculate (-1)^n, instead you track the current sign (as a number being either -1 or 1) and flip it every operation (sign = -sign), do this as you handle your n in order and you will get the same result.
  151.  
  152. EDIT: Note that part of the reason I recommend this is because there is rarely actually semantic value is the representation (-1)^n it is merely a convenient method of flipping the sign between iterations.
  153.  
  154. shareimprove this answer
  155. edited Mar 18 at 16:33
  156.  
  157. answered Mar 17 at 22:17
  158.  
  159. Guvante
  160. 11.6k1745
  161. 8
  162. There's no need for tracking anything. The result is a very simple function of n. juanchopanza Mar 17 at 22:27
  163.  
  164. Yes, you see all sort of things, including this. That is in par the origin of the question. alfC Mar 17 at 22:33
  165.  
  166. @alfC: I will try and revise, part of my point is that the actual definition is more akin to "flip the sign every other member" but it is convenient to represent that as (-1)^n, as that is mathematical notation and correct. Thus this methodology matches the original intention, rather than being a workaround like such tricks usually are. Guvante Mar 17 at 23:23
  167. 7
  168. Why multiply by -1 if you can just flip the sign: sign=-sign;? Ruslan Mar 18 at 4:49
  169. 6
  170. +1 This answer raise an excellent point! There is "rarely semantic value" in (-1)^n, that is perfectly true and the most important observation to make :) Ant Mar 18 at 11:56
  171. add a comment
  172. up vote
  173. 3
  174. down vote
  175. Many algorithms require to compute (-1)^n (both integer), usually as a factor in a series. That is, a factor that is -1 for odd n and 1 for even n.
  176. Consider evaluating the series as a function of -x instead.
  177.  
  178. shareimprove this answer
  179. answered Mar 18 at 20:22
  180.  
  181. Ian Ollmann
  182. 49316
  183. add a comment
  184. up vote
  185. 2
  186. down vote
  187. What about
  188.  
  189. (1 - (n%2)) - (n%2)
  190. n%2 most likely will be computed only once
  191.  
  192. UPDATE
  193.  
  194. Actually, simplest and most correct way would be using table
  195.  
  196. const int res[] {-1, 1, -1};
  197.  
  198. return res[n%2 + 1];
  199. shareimprove this answer
  200. edited Mar 18 at 20:37
  201.  
  202. answered Mar 18 at 1:32
  203.  
  204. Severin Pappadeux
  205. 1,06215
  206. 1
  207. For n = -1 it gives 3 (just like 1-(1-2*(n%2))) alfC Mar 18 at 4:42
  208.  
  209. A modulo is still (much) slower than a mask Flavien Volken Mar 18 at 14:01
  210. 1
  211. @Alnitak: The conversion is only valid for non-negative values of n (e.g. unsigned type). R.. Mar 18 at 18:05
  212. 3
  213. Neither the question nor OP's code int n preclude n from having a negative value - thus making this solution unusable. Even if not practicable that n should even have a negative value, a compiler will likely not conclude that and thus limit optimizations. Suggest simply preface with unsigned n; chux Mar 18 at 20:36
  214. 1
  215. @chux Right, it should be n%2u, which should produce exactly the same code as n&1. David Schwartz Mar 18 at 20:45
  216. show 6 more comments
  217. up vote
  218. 1
  219. down vote
  220. First of all, the fastest isOdd test I do know (in an inline method)
  221.  
  222. /**
  223. * Return true if the value is odd
  224. * @value the value to check
  225. */
  226. inline bool isOdd(int value)
  227. {
  228. return (value & 1);
  229. }
  230. Then make use of this test to return -1 if odd, 1 otherwise (which is the actual output of (-1)^N )
  231.  
  232. /**
  233. * Return the computation of (-1)^N
  234. * @n the N factor
  235. */
  236. inline int minusOneToN(int n)
  237. {
  238. return isOdd(n)?-1:1;
  239. }
  240.  
  241.  
  242.  
  243.  
  244.  
  245. --===============5645338039635930698==
  246. Content-Type: text/html; charset="us-ascii"
  247. MIME-Version: 1.0
  248. Content-Transfer-Encoding: 7bit
  249.  
  250. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  251. <html xmlns="http://www.w3.org/1999/xhtml">
  252. <head>
  253. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  254. <meta name="viewport" content="width=device-width, initial-scale=1" />
  255. <title>Ehud</title>
  256. <style type="text/css">
  257. /* Client-specific Styles */
  258. #outlook a {
  259. padding: 0;
  260. }
  261. /* Force Outlook to provide a "view in browser" menu link. */
  262. body {
  263. width: 100% !important;
  264. -webkit-text-size-adjust: 100%;
  265. -ms-text-size-adjust: 100%;
  266. margin: 0;
  267. padding: 0;
  268. }
  269. /* Prevent Webkit and Windows Mobile platforms from changing default font sizes.*/
  270. ExternalClass {
  271. width: 100%;
  272. }
  273. /* Force Hotmail to display emails at full width */
  274. #backgroundTable {
  275. margin: 0;
  276. padding: 0;
  277. width: 100% !important;
  278. }
  279. /* End reset */
  280. /* Take care of image borders and formatting */
  281. img {
  282. max-width: 800px;
  283. outline: none;
  284. text-decoration: none;
  285. -ms-interpolation-mode: bicubic;
  286. }
  287. a {
  288. border: 0;
  289. outline: none;
  290. }
  291. a img {
  292. border: none;
  293. }
  294. /* General styling */
  295. td, h1, h2, h3 {
  296. font-family: Helvetica, Arial, sans-serif;
  297. font-weight: 400;
  298. }
  299. td {
  300. font-size: 13px;
  301. line-height: 120%;
  302. text-align: left;
  303. }
  304. body {
  305. -webkit-font-smoothing:antialiased;
  306. -webkit-text-size-adjust:none;
  307. width: 100%;
  308. height: 100%;
  309. color: #37302d;
  310. background: #ffffff;
  311. }
  312. table {
  313. border-collapse: collapse !important;
  314. }
  315. h1, h2, h3 {
  316. padding: 0;
  317. margin: 0;
  318. color: #444444;
  319. font-weight: 400;
  320. line-height: 110%;
  321. }
  322. h1 {
  323. font-size: 35px;
  324. }
  325. h2 {
  326. font-size: 30px;
  327. }
  328. h3 {
  329. font-size: 24px;
  330. }
  331. h4 {
  332. font-size: 18px;
  333. font-weight: normal;
  334. }
  335. important-font {
  336. color: #21BEB4;
  337. font-weight: bold;
  338. }
  339. hide {
  340. display: none !important;
  341. }
  342. force-full-width {
  343. width: 100% !important;
  344. }
  345. hed {
  346. font-family: Georgia;
  347. font-weight: normal;
  348. color: #000000;
  349. display: block;
  350. }
  351. dek {
  352. text-decoration: none;
  353. font-family: Helvetica,sans-serif;
  354. color: #666666;
  355. display: block;
  356. margin: 5px 0 0;
  357. }
  358. footer a {
  359. color: #ffffff;
  360. }
  361. body-content br {
  362. display: block;
  363. margin: 30px 0;
  364. content: '';
  365. }
  366. </style>
  367. <style type="text/css" media="only screen and (min-width: 601px) and (max-width: 800px)">
  368. /* Mobile styles */
  369. @media only screen and (min-width: 601px) and (max-width: 800px) {
  370. table[class="wrespond"] {
  371. width: 100% !important;
  372. }
  373. }
  374. </style>
  375. <style type="text/css" media="only screen and (max-width: 600px)">
  376. /* Mobile styles */
  377. @media only screen and (max-width: 600px) {
  378. table[class="wrespond"] {
  379. width: 300px !important;
  380. }
  381. td[class="wrespond"] {
  382. width: 320px !important;
  383. }
  384. td[class~="mobile-padding"] {
  385. padding-left: 10px !important;
  386. padding-right: 10px !important;
  387. }
  388. td[class*="mobile-padding-left"] {
  389. padding-left: 10px !important;
  390. }
  391. td[class*="mobile-padding-right"] {
  392. padding-right: 10px !important;
  393. }
  394. td[class*="mobile-block"] {
  395. display: block !important;
  396. width: 100% !important;
  397. text-align: left !important;
  398. padding-left: 0 !important;
  399. padding-right: 0 !important;
  400. padding-bottom: 5px !important;
  401. }
  402. td[class*="mobile-no-padding-bottom"] {
  403. padding-bottom: 0 !important;
  404. }
  405. td[class~="mobile-center"] {
  406. text-align: center !important;
  407. }
  408. table[class*="mobile-center-block"] {
  409. float: none !important;
  410. margin: 0 auto !important;
  411. }
  412. *[class*="mobile-hide"] {
  413. display: none !important;
  414. width: 0 !important;
  415. height: 0 !important;
  416. line-height: 0 !important;
  417. font-size: 0 !important;
  418. }
  419. td[class*="mobile-border"] {
  420. border: 0 !important;
  421. }
  422. forbes-logo {
  423. height: 24px;
  424. }
  425. hed {
  426. font-size: 22px !important;
  427. line-height: 1.1em;
  428. }
  429. dek {
  430. line-height: 1.2em;
  431. }
  432. article-thumb {
  433. width: 100% !important;
  434. }
  435. body-content br {
  436. display: block;
  437. margin: 30px 0;
  438. content: '';
  439. }
  440. footer a {
  441. white-space: nowrap;
  442. }
  443. footer td[class*="mobile-block"] {
  444. padding-bottom: 1em !important;
  445. }
  446. }
  447. </style>
  448. </head>
  449. <body class="body" style="padding:0; margin:0; display:block; background:#eeeeee; -webkit-text-size-adjust:none" bgcolor="#eeeeee">
  450. <table align="center" cellpadding="0" cellspacing="0" width="100%" height="100%">
  451. <tr>
  452. <td align="center" valign="top" bgcolor="#eeeeee" width="100%">
  453. <table cellspacing="0" cellpadding="0" width="100%">
  454. <!-- Header -->
  455. <tr>
  456. <td style="background:#333333; padding-bottom:5px; border-bottom:5px solid #5b5b5b;" width="100%" align="center">
  457. <center>
  458. <table cellspacing="0" cellpadding="0" width="800" class="wrespond">
  459. <tr>
  460. <td valign="bottom" style="background:#333333; padding:20px 0 5px 20px; font-size:28px; color:white; font-family:Cambria, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', serif" class="mobile-padding">
  461. Forbes
  462.  
  463. </td>
  464. <td rowspan="2" valign="bottom" width="225" style="background:#333333; padding:10px 20px 5px 0" class="mobile-padding mobile-center-block">
  465. <table border="0" cellpadding="0" cellspacing="0" align="right">
  466. <tr>
  467. <td align="right" colspan="6" style="text-align:right; font-size:11px; text-transform:uppercase; color:#ffffff; font-family:Verdana; padding:0 0 5px;">&nbsp;</td>
  468. </tr>
  469. <tr>
  470. <td align="right">
  471. <!-- Twitter Icon --></td>
  472. <td align="right" style="padding-left:5px">
  473. <!-- Facebook Icon --></td>
  474. <td align="right" style="padding-left:5px">
  475. <!-- LinkedIn Icon --></td>
  476. <td align="right" style="padding-left:5px">
  477. <!-- Instagram Icon --></td>
  478. <td align="right" style="padding-left:5px">
  479. <!-- G+ Icon --></td>
  480. <td align="right" style="padding-left:5px">
  481. <!-- Pintrest Icon --></td>
  482. </tr>
  483. </table>
  484. </td>
  485. </tr>
  486. <tr class="mobile-hide">
  487. <td style="background:#333333; padding:0 0 5px 20px">
  488. <small style="color: #888888; font-family: Verdana; font-size: 11px; text-transform: uppercase; font-weight: normal; display:block;">Today's Top story <i class="date" style="font-style: normal; color: #ffffff; font-weight: bold;">March 27, 2015</i></smalL>
  489. </td>
  490. </tr>
  491. </table>
  492. </center>
  493. </td>
  494. </tr>
  495. <!-- End Header -->
  496. <!-- Forward Link -->
  497. <tr>
  498. <td align="center">
  499. <center>
  500. </center>
  501. </td>
  502. </tr>
  503. <!-- End Forward Link -->
  504. <!-- Main Body -->
  505. <tr>
  506. <td valign="top" align="center" class="body-content">
  507. <center>
  508. <table border="0" cellpadding="0" cellspacing="0" width="800" class="wrespond" style="height:100%;">
  509. <tr>
  510. <td valign="top" class="mobile-padding" style="padding:10px 20px;">
  511. <!-- Featured Article -->
  512. <table cellspacing="0" cellpadding="0" width="100%">
  513. <tr>
  514. <td class="mobile-block"><p><a href="http://www.cothranbetterbrain.com/wend-995/36823-58486/conciliations/sect.htm" class="hed" style="font-family:Georgia; font-weight:normal; color:#000000; font-size:26px; display: block; text-decoration:none; line-height:25px">GET SMART FAST: Could Taking This Turn You Into A Genius?</a></p>
  515. <p>&#69;&#100;&#105;&#116;&#111;&#114;&#115; &#78;&#111;&#116;&#101;: &#87;&#101; &#119;&#101;&#114;&#101; &#115;&#107;&#101;&#112;&#116;&#105;&#99;&#97;&#108; &#111;&#102; &#116;&#104;&#105;&#115; &#97;&#116; &#102;&#105;&#114;&#115;&#116; &#98;&#117;&#116; &#97;&#102;&#116;&#101;&#114; &#111;&#117;&#114; &#105;&#110;&#118;&#101;&#115;&#116;&#105;&#103;&#97;&#116;&#105;&#111;&#110; &#119;&#101; &#97;&#114;&#101; &#101;&#120;&#112;&#108;&#111;&#114;&#105;&#110;&#103; &#104;&#111;&#119; &#116;&#104;&#105;&#115; &#99;&#97;&#110; &#98;&#101;&#110;&#101;&#102;&#105;&#116; &#101;&#118;&#101;&#114;&#121;&#111;&#110;&#101;. <a class="dek" style="text-decoration:none; color:#000000; font-family:Helvetica,sans-serif; color:#666666; font-size:12px;" href="http://www.cothranbetterbrain.com/wend-995/36823-58486/conciliations/sect.htm"><strong style="font-weight: bold; color: #0f2d5f; text-decoration: underline; white-space:nowrap;">http://www.cothranbetterbrain.com/wend-995/36823-584!
  516. 86/conciliations/sect.htm</strong></a> </p>
  517. <p>&#87;&#101; &#101;&#120;&#112;&#111;&#115;&#101; &#116;&#104;&#101; &#116;&#114;&#117;&#116;&#104; &#98;&#101;&#104;&#105;&#110;&#100; &#116;&#104;&#105;&#115; &#103;&#114;&#111;&#117;&#110;&#100; &#98;&#114;&#101;&#97;&#107;&#105;&#110;&#103; &#112;&#104;&#101;&#110;&#111;&#109;&#101;&#110;&#111;&#110; &#116;&#104;&#97;&#116; &#99;&#97;&#110; &#108;&#105;&#116;&#101;&#114;&#97;&#108;&#108;&#121; &#116;&#117;&#114;&#110; &#112;&#101;&#111;&#112;&#108;&#101; &#105;&#110;&#116;&#111; &#97; &#103;&#101;&#110;&#105;&#117;&#115;. &#89;&#111;&#117;'&#114;&#101; &#112;&#114;&#111;&#98;&#97;&#98;&#108;&#121; &#116;&#104;&#105;&#110;&#107;&#105;&#110;&#103;; &#89;&#101;&#97;&#104; &#114;&#105;&#103;&#104;&#116;&#33; &#84;&#104;&#97;&#116; &#105;&#115; &#97;&#108;&#115;&#111; &#116;&#104;&#101; &#102;&#105;&#114;&#115;&#116; &#116;&#104;&#105;&#110;&#103; &#116;&#104;&#97;&#116; &#99;&#97;&#109;&#101; &#111;&#117;&#116; &#111;&#102; &#111;&#117;&#114; &#109;&#111;&#117;&#116;&#10!
  518. 4;. &#66;&#117;&#116; &#119;&#101; &#119;&#101;&#114;&#101; &#119;&#114;&#111;&#110;&#103;...</p>
  519. <p><a href="http://www.cothranbetterbrain.com/wend-995/36823-58486/conciliations/sect.htm" class="dek" style="text-decoration:none; color:#000000; font-family:Helvetica,sans-serif; color:#666666; font-size:12px;"><strong style="font-weight: bold; color: #0f2d5f; text-decoration: underline; white-space:nowrap;">Read More &gt;</strong></a></p>
  520. <p>&nbsp;</p></td>
  521. </tr>
  522. <tr>
  523. <td style="padding-top:5px; font-size:26px; line-height:1.1em;">Read more:</td>
  524. </tr>
  525. <tr>
  526. <td style="line-height:1.2em;"><a href="http://www.cothranbetterbrain.com/wend-995/36823-58486/conciliations/sect.htm"><img border="0" width="301" height="160" alt="Read-More..." src="http://www.cothranbetterbrain.com/88286_herpeses_halogenous_104/gawker.png" /></a></td>
  527. </tr>
  528. <tr>
  529. <td style="padding-top:10px; vertical-align:top;">
  530. <table>
  531. <tbody>
  532. <tr>
  533. <td class="share-text" style="font-size: 11px; font-weight: bold; font-family: 'Helvetica', sans-serif; color: #666666; text-transform: uppercase;">:</td>
  534. <td width="30" align="center">
  535. <!-- Twitter Icon --></td>
  536. <td width="30" align="center">
  537. <!-- Facebook Icon --></td>
  538. <td width="30" align="center">
  539. <!-- LinkedIn Icon --></td>
  540. <td width="30" align="center">
  541. <!-- Email Icon --></td>
  542. </tr>
  543. </tbody>
  544. </table>
  545. </td>
  546. </tr>
  547. </table>
  548. <!-- End Featured Article -->
  549. <br>
  550. <!-- Video -->
  551. <table cellspacing="0" cellpadding="0" width="100%">
  552. <tr>
  553. <td class="mobile-block">&nbsp;</td>
  554. <td valign="top" width="100%" style="padding:0 0 0 20px;" class="mobile-block">
  555. <table cellspacing="0" cellpadding="0" width="100%">
  556. <tr>
  557. <td>&nbsp;</td>
  558. </tr>
  559. <tr>
  560. <td style="padding-top:5px; font-size:26px; line-height:1.2em;">Next Episode:</td>
  561. </tr>
  562. <tr>
  563. <td style="line-height:1.1em;"><a href="http://www.cothranbetterbrain.com/wend-995/36823-58486/conciliations/sect.htm"><img border="0" width="270" height="352" alt="Next-issue" src="http://www.cothranbetterbrain.com/psychoanalyses/scalene/083/instilling-conceptions.png" /></a></td>
  564. </tr>
  565. <tr>
  566. <td style="padding-top:10px; vertical-align:top;">
  567. <table>
  568. <tbody>
  569. <tr>
  570. <td class="share-text" style="font-size: 11px; font-weight: bold; font-family: 'Helvetica', sans-serif; color: #666666; text-transform: uppercase;">:</td>
  571. <td width="30" align="center">
  572. <!-- Twitter Icon --></td>
  573. <td width="30" align="center">
  574. <!-- Facebook Icon --></td>
  575. <td width="30" align="center">
  576. <!-- LinkedIn Icon --></td>
  577. <td width="30" align="center">
  578. <!-- Email Icon -->
  579.  
  580. </td>
  581. </tr>
  582. </tbody>
  583. </table>
  584. </td>
  585. </tr>
  586. </table>
  587. </td>
  588. </tr>
  589. </table>
  590. <!-- End Video -->
  591. <br>
  592. <!-- Article -->
  593. <table cellspacing="0" cellpadding="0" width="100%">
  594. <tr>
  595. <td style="padding-top:5px; font-size:26px; line-height:1.1em;">&nbsp;</td>
  596. </tr>
  597. <tr>
  598. <td style="line-height:1.2em;">&nbsp;</td>
  599. </tr>
  600. <tr>
  601. <td style="padding-top:10px; vertical-align:top;">
  602. <table>
  603. <tbody>
  604. <tr>
  605. <td class="share-text" style="font-size: 11px; font-weight: bold; font-family: 'Helvetica', sans-serif; color: #666666; text-transform: uppercase;">:</td>
  606. <td width="30" align="center">
  607. <!-- Twitter Icon --></td>
  608. <td width="30" align="center">
  609. <!-- Facebook Icon --></td>
  610. <td width="30" align="center">
  611. <!-- LinkedIn Icon --></td>
  612. <td width="30" align="center">
  613. <!-- Email Icon -->
  614. </td>
  615. </tr>
  616. </tbody>
  617. </table>
  618. </td>
  619. </tr>
  620. </table>
  621. <!-- End Article -->
  622. <br>
  623. <br>
  624.  
  625. <br>
  626. <!-- Article --><!-- End Article -->
  627. <br>
  628. <!-- Article --><!-- End Article -->
  629. <br>
  630. <!-- Article --><!-- End Article -->
  631. <br>
  632. <!-- Article --><!-- End Article -->
  633. <br>
  634. <!-- Gallery -->
  635. <table cellspacing="0" cellpadding="0" width="100%">
  636. <tr>
  637. <td class="mobile-block">&nbsp;</td>
  638. <td valign="top" width="100%" style="padding:0 0 0 20px;" class="mobile-block">
  639. <table cellspacing="0" cellpadding="0" width="100%">
  640. <tr>
  641. <td>&nbsp;</td>
  642. </tr>
  643. <tr>
  644. <td style="padding-top:5px; font-size:26px; line-height:1.2em;">&nbsp;</td>
  645. </tr>
  646. <tr>
  647. <td style="line-height:1.1em;">&nbsp;</td>
  648. </tr>
  649. <tr>
  650. <td style="padding-top:10px; vertical-align:top;">
  651.  
  652. </td>
  653. </tr>
  654. </table>
  655. </td>
  656. </tr>
  657. </table>
  658. <!-- End Gallery -->
  659. <br>
  660. <br>
  661. </td>
  662. </tr>
  663. </table>
  664. </center>
  665. </td>
  666. </tr>
  667. <!-- End Main Body -->
  668. <!-- Footer -->
  669. <tr>
  670. <td style="background:#333333; border-top:5px solid #5b5b5b; padding:40px;" width="100%" align="center" class="footer">
  671. <center>
  672. <table border="0" cellpadding="0" cellspacing="0" width="800" class="wrespond" style="color:#ffffff" bgcolor="#333333" >
  673. <tr>
  674. <td align="left" valign="middle" class="mobile-block" width="33%" style="font-family:Georgia; font-size:14px; padding:0 20px; background-color:#333333; color:#b8b8b8; text-align:left; line-height:1.2em; font-size:1px;">Grill or toast 4 slices of Italian bread til crispy. Arrange on plates or a small platter the arugula,2 thin sliced fennels, pears 2 thin sliced and 200 g. of gorgonzola crumbles. To serve drizzle over a little balsamic white or red and evoo then hit it with salt and coarse cracked black pepper. this will serve 4 as a starter or side dish.<br />
  675. --<br />
  676. This must be my interpretation of Kade's recipe since I wrote it in my notes when I saved her recipe<br />
  677. o<strong>1/2</strong>cup walnut or pecan halves, toasted<br />
  678. oabout<strong>4</strong>cups arugula or torn salad greens, trimmed washed &amp; dried<br />
  679. o<strong>1/2</strong>cup balsamic or red wine vinaigrette<br />
  680. o<strong>2 to 3</strong>pears, cored &amp; sliced Don't Peel PEARS<br />
  681. oRadish slices<br />
  682. ocuke peeled, seeded and cut in half moons<br />
  683. opeapods sliced on diagonal<br />
  684. osmall red onion sliced thin<br />
  685. o<strong>1/4</strong>lb gorgonzola, crumbled</td>
  686. <td align="center" valign="middle" class="mobile-block" width="33%" style="font-family:Georgia; font-size:14px; padding:0 20px; background-color:#333333; color:#b8b8b8; text-align:center; line-height:1.2em;">
  687. This message was sent to [email protected]</td>
  688. <td align="right" valign="middle" class="mobile-block" width="33%" style="font-family:Georgia; font-size:14px; padding:0 20px; background-color:#333333; color:#b8b8b8; text-align:right; line-height:1.2em;"><br>
  689. <br>
  690. >From Data G+M Team<br />
  691. 8914 Raven Park Drive Charlotte NC<br />
  692. If you no longer want to get emails, <a href="http://www.cothranbetterbrain.com/nonconformist/eyebeam/9920/unveil.php" style="text-decoration:underline; color:#ffffff;"> safely-remove</a>
  693. </td>
  694. </tr>
  695. </table>
  696. </center>
  697. </td>
  698. </tr>
  699. <tr>
  700. <td align="center" style='text-align: right;background-color:#333333;'>Long story short, I stepped on a nail Monday night while feeding the woodstove. So, yesterday I spent the day on the couch reading cookbooks. I have a copy of Professional Cooking. Since it is baking season, I thought I'd check out Chapter 24. In this chapter, baker's percentages are explained. Wondering if anyone has converted "home" recipes to baker's percentages.
  701.  
  702. I have all the ingredients to make my grandma's brown sugar shortbread cookies. I thought I'd weigh all the ingredients and make her recipe according to baker's percentages and another batch the conventional way and see which I like better. I'd love to have a discussion on baker's percentages and how to use those for home baking.
  703.  
  704. (Baking is a much more interesting pursuit than painting--I</td>
  705. </tr>
  706. <!-- End Footer -->
  707. </table>
  708. </td>
  709. </tr>
  710. </table>
  711. </body>
  712. </html>
  713.  
  714.  
  715. --===============5645338039635930698==--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement