|
p**********s 发帖数: 115 | 2 double mySqrt(int num) {
if(num < 0) {
return -1;
}
double precise = 0.0001;
double low = 0;
double high = num;
double mid = (low+high)/2;
while(abs(mid*mid - num) > precise) {
if(mid*mid > num) {
high = mid;
} else {
low = mid;
}
mid = (low+high)/2;
}
return mid;
} |
|
y*****a 发帖数: 580 | 3 【 以下文字转载自 Working 讨论区 】
发信人: hou77063 (dh), 信区: Working
标 题: Software Developers Needed
发信站: BBS 未名空间站 (Fri Oct 22 10:22:37 2010, 美东)
Precision Reservoir Modeling, Inc, a Houston based company, has immediate
position openings for software developers to develop, test and support
petroleum reservoir numerical simulation software. Preferred candidates will
have a Master or higher degree in mechanical engineering, petroleum
engineering, computer science or other background; Good numerical analysis
... 阅读全帖 |
|
i*****e 发帖数: 230 | 4 我们公司有下面一个opening,如果有兴趣,请将您的简历email给我: hebeli@gmail.
com
我可以直接转发给hire manager, 谢谢。
Title: Test Engineer / Lab Manager
Job Description:
This is an opening for a test engineering and lab management position in the
semiconductor modeling group. The modeling group performs high-precision
RF/Microwave measurements of wafers, die, and fixtured parts at frequencies
ranging from 10 MHz to 50 GHz – much of the measurement is performed in an
on-wafer/on-die environment. The position does not require any... 阅读全帖 |
|
u***q 发帖数: 21 | 5 If the required precision is not high (I don't think infinite precision has
any practical meaning and usage), we can keep a timer fired each second to
setup the decrease timer. Maintain a temp value, each click event add 1 to
temp (and total count). When the per second timer fires, if temp is 0, do
nothing. Otherwise copy temp to decrease timer (by parameter or another
storage variable) and clear temp to 0. So max 60 decrease timers are needed. |
|
i**********e 发帖数: 1145 | 6 Assume you can use extra memory, you can use a bitmap.
Depend on the precision you need, the memory used might be big. If you need
double's precision to be 8, then slots needed is 10^8. Put its ID into the
bitmap using the multiplied value (x10^8) as index.
At the end, traverse the bitmap in order and copy back to the array of ID
and values.
一些常见面试题的答案与总结 -
http://www.ihas1337code.com |
|
h******3 发帖数: 7 | 7 Precision Reservoir Modeling, Inc, a Houston based company, has immediate
position openings for software developers/engineers to develop, test and
support
petroleum reservoir numerical simulation software. Preferred candidates will
have a Master or higher degree in computer science, engineering, math, etc.
Good numerical analysis and programming skill/interest. Experience with C++/
Windows development is desired. Interested applicants please send resume to
c*****[email protected] |
|
h******3 发帖数: 7 | 8 Precision Reservoir Modeling, Inc, a Houston based company, has immediate
position openings for software developers/engineers to develop, test and
support petroleum reservoir numerical simulation software. Preferred
candidates will have a Master or higher degree in computer science,
engineering, math, etc.
Good numerical analysis and programming skill/interest. Experience with C++/
Windows development is desired. Interested applicants please send resume to
c*****[email protected] |
|
z*******g 发帖数: 106 | 9 我们公司急需找software developers.
有兴趣的同学直接跟HR联系.
公司是EVERIFY的,可以办OPT延期.
以下是公司和职位介绍
Precision Reservoir Modeling, Inc, a Houston based company, wants to add one
or more software developers to its team to develop and maintain its
petroleum reservoir numerical simulation software, Radial-X. The new hires
are expected to contribute in one of the following areas: numerical grid
generation, 3D graphic visualization, numerical solutions and parallel
computing. Preferred candidates will have a Master or higher... 阅读全帖 |
|
Q**Q 发帖数: 781 | 10 Position summary:
Responsible for building and aligning precision opto-mechanical and
electro-mechanical assemblies of varying complexity.
Perform optical alignment and testing of opto-mechanical assemblies
consisting of mirror, lenses,beam splitters and various other optical
components.
Operational knowledge of visible and invisible Laser sources and
associated safety knowledge is required.
Perform electrical tuning and trouble shooting on complex electro-
me... 阅读全帖 |
|
a*********n 发帖数: 44 | 11 记得之前版上有前辈报过offer,12万+18万股票+3万签字费
Responsibilities
Work closely with a product engineering team to identify and answer
important product questions
Answer product questions by using appropriate statistical techniques on
available data
Communicate findings to product managers and engineers
Drive the collection of new data and the refinement of existing data sources
Analyze and interpret the results of product experiments
Develop best practices for instrumentation and experimentation and
communicate... 阅读全帖 |
|
G********r 发帖数: 9 | 12 比较久之前T家的面试,结果就不共享了,只贡献题目,可能给面Machine Learning方向
的有些帮助。
电面1.
(1)一些统计的问题,二项分布,大数定理,抛硬币做概率转换
(2) (写程序)用stack实现queue
电面2.
(1) Trending tweats的算法设计;tweat topic的提取;
(2)(写程序)输入一个程序源文件,写一个程序去掉所以有的comment
Onsite:
(1). (a)(写程序)两个字符串的最大公共字串
(b (puzzle)game: the interviewee is an oracle of a function "bool f(
int, int, int)", that is, the interviewer can provide three numbers as input
, then the interviewee can give the TRUE/FALSE answer. Play the game and
find the precise definition for the function.
... 阅读全帖 |
|
r***3 发帖数: 1 | 13 我们公司急需software developers.
工作地点: Houston
有兴趣的同学直接跟HR联系.
公司是E-VERIFY的,可以办OPT延期, h1B, sponsor GC.
以下是公司和职位介绍
Precision Reservoir Modeling Inc, a Houston based company, wants to add a
couple of experienced developers to its team to develop, test and support
petroleum reservoir simulation and other software. Preferred candidates will
have a master or higher degree in the fields of computer, math, engineering
or sciences. Previous experience with computer graphics/Open GL, numerical
grid generation, ... 阅读全帖 |
|
K******g 发帖数: 1870 | 14 Write a function iavg() that accepts as arguments an array v[] of the widest
size integers supported by a computer, and the array’s size n, and
computes the integer average of the array’s values with loss of precision
less than 1 over the entire range of possible parameter values.
In C or C++ the function prototype would be:
intmax_t iavg (const intmax_t v[], const uintmax_t n)
The solution should use only integer arithmetic, without relying on any
explicit assumptions about internal number repr... 阅读全帖 |
|
Q****a 发帖数: 296 | 15 我用牛顿迭代法和二分法都试过, precision 最小能设成 1e-15 (或者9e-16),再
小(比如1e-16) 就死循环了 = =
可是我用precision = 1e-15做,返回结果比java里面Math.sqrt() 精度少一位 (比如
sqrt(2.0) 我return 1.414213562373095, 而java math return 1.
4142135623730951)。
请问大牛Math。sqrt怎么能精度多一位的? |
|
r***l 发帖数: 45 | 16 湾区自驾导航创业公司 招算法工程师(全职+Intern),相关领域有兴
趣的朋友欢迎投递!
职位优势:
1. 全面接触并研发自驾各技术模块
2. 公司靠谱,对员工实在 <办H1B和绿卡>
3. 公司发展快, Funding充足,专业技术突出
4. 公司产品强劲!网站 www.polyexplore.com
5. 职位要求如下:
Computer Vision Engineer (San Jose, CA)
We are currently looking for experienced software engineers to join our San
Jose office to develop algorithms and pipelines for autonomous technologies.
As a software engineer you will help develop state-of-the-art localization
& mapping algorithms that combine data from a wide ... 阅读全帖 |
|
p******q 发帖数: 1 | 17 LinkQuest Inc, a fast growing and profitable precision instrument company
based in San Diego, California, is looking for two hardware engineers to
expand its R&D effort of leading-edge precision acoustic instruments for
offshore oil exploration/production and other underwater applications.
This position requires hands-on experience in design, implementation,
debugging and testing of sophisticated analog circuits and digital circuits
based on DSP and micro controllers. Experience in overall produ |
|
p******7 发帖数: 48 | 18 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a system (algorithm) engineer
to expand its R&D effort of leading-edge medical imaging systems and
precision acoustic instruments.
Job duties and requirements are as follows
Development of digital signal processing algorithms for advanced medical
imaging systems and precision acoustic instruments. Work includes analytical
algorithm development, functional and error analysis, c... 阅读全帖 |
|
p******7 发帖数: 48 | 19 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a system (algorithm) engineer
to expand its R&D effort in leading-edge medical imaging systems and
precision acoustic instruments.
Job duties and requirements are as follows
Development of digital signal processing and image processing algorithms for
advanced medical imaging systems and precision acoustic instruments. Work
includes analytical algorithm development, functional... 阅读全帖 |
|
p******7 发帖数: 48 | 20 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a software engineer and a
system (algorithm) engineer to expand its R&D effort in leading-edge
medical imaging systems and precision acoustic instruments.
Job duties and requirements are as follows
1. Software Engineer
Design and implementation of sophisticated 2-D, 3-D and 4-D Graphical User
Interface and other Man-Machine interface programs to dynamically process
and displa... 阅读全帖 |
|
p******7 发帖数: 48 | 21 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a system (algorithm) engineer
and an electronic circuit engineer to expand its R&D effort in leading-
edge medical imaging systems and precision acoustic instruments.
Job duties and requirements are as follows
1. System (Algorithm) Engineer
Development of digital signal processing and image processing algorithms for
advanced medical imaging systems and precision acoustic inst... 阅读全帖 |
|
p******7 发帖数: 48 | 22 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for an electronic circuit
engineer and a system (algorithm) engineer to expand its R&D effort in
leading-edge medical imaging systems and precision acoustic instruments.
Job duties and requirements are as follows
1. Electronic Circuit Engineer
This position requires hands-on experience in design, implementation,
debugging and testing of sophisticated analog circuits and digital c... 阅读全帖 |
|
p******7 发帖数: 48 | 23 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a system (algorithm) engineer
to expand its R&D effort in leading-edge medical imaging systems and
precision acoustic instruments.
Job duties and requirements are as follows
Development of digital signal processing and image processing algorithms for
advanced medical imaging systems and precision acoustic instruments. Work
includes analytical algorithm development, functional... 阅读全帖 |
|
p******7 发帖数: 48 | 24 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a system (algorithm) engineer
to expand its R&D effort in leading-edge medical imaging systems and
precision acoustic instruments.
Job duties and requirements are as follows
Development of digital signal processing and image processing algorithms for
advanced medical imaging systems and precision acoustic instruments. Work
includes analytical algorithm development, functional... 阅读全帖 |
|
z*******g 发帖数: 106 | 25 我们公司急需software developers.
工作地点: Houston
有兴趣的同学直接跟HR联系.
公司是E-VERIFY的,可以办OPT延期, h1B, sponsor GC.
以下是公司和职位介绍
Precision Reservoir Modeling, Inc, a Houston based company, wants to add one
or more software developers to its team to develop and maintain its
petroleum reservoir numerical simulation software, Radial-X. The new hires
are expected to contribute in one of the following areas: numerical grid
generation, 3D graphic visualization, numerical solutions and parallel
computing. Preferred candidat... 阅读全帖 |
|
p******7 发帖数: 48 | 26 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a system (algorithm) engineer
to expand its R&D effort in leading-edge medical imaging systems and
precision acoustic instruments.
Job duties and requirements are as follows
Development of digital signal processing and image processing algorithms for
advanced medical imaging systems and precision acoustic instruments. Work
includes analytical algorithm development, functional... 阅读全帖 |
|
p******7 发帖数: 48 | 27 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for two system (algorithm)
engineers to expand its R&D effort in leading-edge medical imaging systems
and precision acoustic instruments. LinkQuest is specialized in developing
highly complicated and high value systems requiring competence in multiple
advanced technical areas. The qualified candidates are invited to join a
highly competent R&D team led by two Berkeley educated Ph... 阅读全帖 |
|
p******7 发帖数: 48 | 28 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a system (algorithm) engineer
to expand its R&D effort in leading-edge medical imaging systems and
precision acoustic instruments. LinkQuest is specialized in developing
highly complicated and high value systems requiring competence in multiple
advanced technical areas. The qualified candidates are invited to join a
highly competent R&D team led by two Berkeley educated PhDs.... 阅读全帖 |
|
p******7 发帖数: 48 | 29 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a system (algorithm) engineer
to expand its R&D effort in leading-edge medical imaging systems and
precision acoustic instruments. LinkQuest is specialized in developing
highly complicated and high value systems requiring competence in multiple
advanced technical areas. The qualified candidates are invited to join a
highly competent R&D team led by two Berkeley educated PhDs.... 阅读全帖 |
|
p******7 发帖数: 48 | 30 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a system (algorithm) engineer
to expand its R&D effort in leading-edge medical ultrasound imaging
systems and precision acoustic instruments. LinkQuest is specialized in
developing highly complicated and high value systems requiring competence in
multiple advanced technical areas. The qualified candidates are invited to
join a highly competent R&D team led by two Berkeley edu... 阅读全帖 |
|
p******7 发帖数: 48 | 31 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a system (algorithm) engineer
to expand its R&D effort in leading-edge medical ultrasound imaging
systems and precision acoustic instruments. LinkQuest is specialized in
developing highly complicated and high value systems requiring competence in
multiple advanced technical areas. The qualified candidates are invited to
join a highly competent R&D team led by two Berkeley edu... 阅读全帖 |
|
p******7 发帖数: 48 | 32 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a system (algorithm) engineer
to expand its R&D effort in leading-edge medical ultrasound imaging
systems and precision acoustic instruments. LinkQuest is specialized in
developing highly complicated and high value systems requiring competence in
multiple advanced technical areas. The qualified candidates are invited to
join a highly competent R&D team led by two Berkeley edu... 阅读全帖 |
|
p******7 发帖数: 48 | 33 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a software engineer, a DSP
firmware/FPGA engineer and a system (algorithm) engineer to expand its R&D
effort in leading-edge medical ultrasound imaging systems and precision
acoustic instruments. LinkQuest is specialized in developing highly
complicated and high value systems requiring competence in multiple advanced
technical areas. The qualified candidates are invited to jo... 阅读全帖 |
|
p******7 发帖数: 48 | 34 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a software engineer and a
system (algorithm) engineer to expand its R&D effort in leading-edge
medical ultrasound imaging systems and precision acoustic instruments.
LinkQuest is specialized in developing highly complicated and high value
systems requiring competence in multiple advanced technical areas. The
qualified candidates are invited to join a highly competent R&D team... 阅读全帖 |
|
p******7 发帖数: 48 | 35 LinkQuest Inc., a fast growing and profitable advanced technology company
based in San Diego, California, is looking for a system (algorithm) engineer
to expand its R&D effort in leading-edge medical ultrasound imaging
systems and precision acoustic instruments. LinkQuest is specialized in
developing highly complicated and high value systems requiring competence in
multiple advanced technical areas. The qualified candidates are invited to
join a highly competent R&D team led by two Berkeley edu... 阅读全帖 |
|
k*******8 发帖数: 75 | 36 Faculty Positions in the Center for Gravitational Experiments (CGE),
Huazhong University of Science and Technology (HUST)
CGE at HUST is a world renowned center in precision measurements, and is
currently under rapid expansion to broaden research basis and to strengthen
existing expertise. It has multiple faculty positions at all ranks open.
Positions are for the research areas of fundamental gravitational physics,
AMO physics, gravimetry, and geophysics. Applicants should have a Ph.D. in
the ab... 阅读全帖 |
|
b*******o 发帖数: 89 | 37 猎头的信,FYI.
I'm a recruiter with a focus on optics and I believe I've emailed you before
regarding these jobs. Thanks for understanding as they're critical
positions for my clients. I have two openings in North Carolina for an
optical engineer with zemax, lab, precision design, and precision
measurement experience. They'll be involved with new product design. I
also have one optical design engineering opening in MA. Imaging and
lighting experience would be good to have. Would you know anyone... 阅读全帖 |
|
s****r 发帖数: 1 | 38 School of Mechanical Engineering at University of Shanghai for Science and
Technology requires talents of Mechanical Engineering (Mechanical Design
Theory, Mechanical Manufacture, Mechatronics, Automotive Engineering,
Engineering Mechanics, and Engineering Graphics).
Qualifications: Graduated from “985 project” universities or with doctor
degree from overseas universities; strong research and teaching ability, age
40 years old below.
Benefits: 30,000 RMB scientific research launch fund; 50,000 ... 阅读全帖 |
|
发帖数: 1 | 39 滴滴快的(滴滴出行)是扎根中国、全球最大的一站式多元化出行平台, 截至2015年
11月,滴滴在中国360余座城市为2亿5千万用户提供专车、出租车召车、专车、快车、
顺风车、代驾、企业级和智慧公交等全面出行服务,目前员工发展到5千人的规模。第
三方数据显示,滴滴拥有80%以上的中国专车市场份额;99%以上的网约出租车市场份额
。公司致力于以共享经济实践响应中国互联网经济创新战略,与不同社群与行业伙伴协
作互补,运用精准的大数据算法技术,解决中国的出行和环保挑战,提升用户体验,创
造社会价值,建设高效、永续的移动出行新生态。目前滴滴大数据正在启动面向全球高
校博士、硕士、优秀本科生的“新锐计划”招聘项目,引进高素质的计算机基础研究人
才和大数据核心人才,研究方向包含机器学习、人工智能、计算机视觉、机器人、自动
控制、汽车工程、数据挖掘、最优化理论、分布式计算等;觉得你的背景和研究方向和
我们很匹配,请关注滴滴出行的机会,我们将提供全新的工作机会。滴滴美国的研究院
也在成立中,不管国内国外,期望你和滴滴一起通过出行改变世界,滴滴立志于做一个
全球性的出行平台。
滴滴研究院(DIDI Res... 阅读全帖 |
|
发帖数: 1 | 40 RdFCorporation
A local manufacturer of precision temperature sensors, is looking for a few
dedicated workers to join our team!
Do you have or enjoy the following
hobbies that require precision hand work?
Needlework, Painting, Crafting, Knitting
RdF 公司, Hudson, NH 靠近麻州 和 Nashua,NH 招寻操作人员若干,
有意者请电话 :
(603) 882 5195 x 1241 找 May Chen
或 发英文简历至 [email protected]/* */ / [email protected]/* */
Pleas... 阅读全帖 |
|
发帖数: 1 | 41 Job description 请见下。 请发简历至[email protected] 注明内推申请。 我
会电话联系以及介绍公司、薪资情况。公司不是start up, 是一所跨国中型企业。 经
验年限不限,主要是要看是否符合下面的要求。 可以办身份。
Sr. Electrical Engineer (Power Amplifier)
DESCRIPTION
Amplifier driver and power supply development for motion control system
High precision power amplifier driver (PWM or linear) design and development
for motion control system;
AC to DC power supply design and development for motion control system
Analog circuit schematic design
PCB layout
REQUIREMENTS
BS/MS/PhD i... 阅读全帖 |
|
f******D 发帖数: 332 | 42 北加州 Windsor 公司支持h1b 绿卡 new grad, entry level welcome
1. Mechanical Engineer Machine Design and Automation
JOB SITE: WINDSOR, California
Job Summary
Responsible for Automation and Machine design.
Tasks may include but are not limited to:
Design precision mechanisms and structures for accuracy, performance, and
manufacturability
Design with integration of cameras, lighting, and 3D sensors for measurement
Design robotics and machines for automation and integration
Design custom automation solutions... 阅读全帖 |
|
f******D 发帖数: 332 | 43 北加州 Windsor 公司支持h1b 绿卡 new grad, entry level welcome
1. Mechanical Engineer Machine Design and Automation
JOB SITE: WINDSOR, California
Job Summary
Responsible for Automation and Machine design.
Tasks may include but are not limited to:
Design precision mechanisms and structures for accuracy, performance, and
manufacturability
Design with integration of cameras, lighting, and 3D sensors for measurement
Design robotics and machines for automation and integration
Design custom automation solutions... 阅读全帖 |
|
j***b 发帖数: 5901 | 44 Circular saw is more useful, because you can carry it to site and make cuts,
instead of making cuts first and then carry lumber to site.
Circular saw is not as precise as miter saw for certain purpose, but if you
are handy, it can be made to be precise enough. |
|
n*****a 发帖数: 7 | 45 I probably made more mistakes myself than anybody here. Here's a few tips
for PhD study:
我这是第一年.上学期上课非常紧张,4门课,11个学分.所以课题进展不大.老板让我做
polymer模拟一种天然的蛋白质,主要工作是有机合成.可我在国内没有做过这方面的东西,
所以上手很慢,刚开始怎么合成都不懂.
1. Be a quick learner. Or more precisely, be an eager learner. Further more
precisely, be an eager learner in the eye of your boss.
Miss sissi's problem here is excusing herself for not learning quickly,
which is a common attitude of Chinese girls (forget about about P C, for a
minute).
I, on the other |
|
d*b 发帖数: 4184 | 46 The Medical School of the University of California at Davis was typical. It
reserved sixteen of the one hundred slots in its entering classes for
minorities. In 1973 and again in 1974, Allan Bakke, a white applicant, was
denied admission although his test scores and grades were better than most
or all of those admitted through the special program. He sued. In 1977, his
case, Regents of the University of California v. Bakke, reached the Supreme
Court. The Court rendered its decision a year later ... 阅读全帖 |
|
t******l 发帖数: 10908 | 47 我个人猜测 identity 和 ideology 都跟 “翘臀 mama faulty memory” 有一定的关
联。
或者另一个角度,如果一个人有 precision memory(不是说事无巨细都记住,而是说
things matters 都记忆准确,相对 “翘臀 mama faulty memory” 而言),那他/她
也许不需要很多 identity 或者 ideology ,memory + critical thinking 本身就能
行使 identity 和 ideology 的 function。
但话说回来,没有人能够有 absolutely precision memory,所以 identity 和
ideology 总是或多或少需要的。。。但另一方面,个体的 “鸡汤度” 可能差别也不
小。。。
: |
|
j******u 发帖数: 41683 | 48 ☆─────────────────────────────────────☆
marsmission (静心) 于 (Sun Jan 9 15:20:54 2011, 美东) 提到:
搞deal如何起步请参考新手入门帖,这个帖子只说说RA的一些细节问题,大部分是关于
upr的,upr是最近出来的,新手对upr使用比较模糊。
大家可以去SD和hcw的RA论坛学习更详细的规则,也可以参考iheartra。
Q1:什么是wellness card?
A:现在RA的sale price都需要有wellness card,否则不能享受优惠价,店里有宣传手
册,去店里现填表申请1张即可,1年内买够500点将获得10%off,买够1000点将获得20%
off折扣,这个折扣只影响在原价的东西上,比如当周某产品sale,原价10刀,sale7.
50,折扣卡就不能再打折了,sale price和卡折扣2者取低的那个,你自己算。
提醒,先扫w卡再扫货,否则有可能会影响upr,如果扫完货最后扫卡upr会不出。
Q2:wellness卡怎么算累计点数?
A:除去所有raq,税不算,subtot... 阅读全帖 |
|
|
p*******2 发帖数: 2480 | 50 【 以下文字转载自 pingan 俱乐部 】
发信人: pingan222 (平安), 信区: pingan
标 题: 我的笔记:RA 4/10~/16
发信站: BBS 未名空间站 (Sat Apr 9 12:48:57 2011, 美东)
查询胖子datebase的网站:
http://www.hotcouponworld.com/forums/coupon.php
http://thefrugalfind.com/coupon-database/
广告的扫描版:
http://ads.iheartriteaid.com/2011/03/0410-0416.html
免费,如带*可能倒赚
*1.Gillitte or Old spice body wash, 2.99出@2+upr, limit 2!!!
注意加州SDER报告说没有print upr,希望RA能尽快fix
-Bogo mq @ 4/3 P&G
*2.Vinsine眼药水, 15ml以上, 原价4.99(八折卡3.99),出1upr
-$2 any Visine ipq @ coupons.com,Redplum... 阅读全帖 |
|