这个司机名字叫Ali Ghazanfari,大家帮忙看看是哪国人?
一个女大学生打车,下车后没钱想刷卡,司机说刷卡机坏了,要用一个苹果手机刷卡附
件刷钱,女大学生没仔细看,结果被刷了787刀。
A college student from Winnetka, Illinois jumped into a cab for a short ride
to a restaurant in downtown Chicago, but instead of a couple dollars, she
was charged almost $800.
In December, 20-year-old Becky Siegel was running late to meet friends at
the Sweetwater Tavern and Grille, so she went immediately from the Metra
train to a cab at the Ogilvie Transportation Center.
View photo
.
Becky Siegel (... 阅读全帖
i beg you...to have patience with everything unresolved in your heart and
try to love the questions themselves as if they were locked rooms or books
written in a very foreign language. don't search for the answers, which
could not be given you now, because you would not be able to live them. and
the point is, to live everything. live the questions now. perhaps then,
someday far in the future, you will gradually, without even noticing it,
live your way into the answer...... (rainer maria rilke)
Wool is a series of science fiction novellas (and is also available as a
single novel) by American writer Hugh Howey.[1] Film rights to the story
have been sold to 20th Century Fox, with director Ridley Scott and Steve
Zaillian expressing interest in the film adaptation.
Howey first began the series in 2011, initially writing Wool as a stand-
alone short story.[5] He published the work through Amazon's Kindle Direct
Publishing system, choosing to do so due to the freedom of self-publishing.
Afte... 阅读全帖
The Garden Principle
Next, consider a principle learned in gardening. Someone said that if we
plant a garden with good seed, there will not be so much need of the hoe.
Likewise, if we fill our lives with spiritual nourishment, we can more
easily gain control over inclinations. This means creating a positive
environment in our homes in which the Spirit is abundantly evident. A
positive environment includes consistent private and public worship, prayer,
fasting, scripture reading, service, and exp... 阅读全帖
割包皮会造成一生的心理创伤和生理隐患,会增加妇科疾病的发病率,会增加艾滋病的
发病率,等等。
How Male Circumcision Harms Women
Ronald Goldman, Ph.D.
Learn about the hidden negative psychological and sexual effects of
circumcision and how these effects harm women in relationships with men.
This article is based on research reports in the medical and psychological
literature.
Marilyn Milos didn't know much about circumcision when she consented to have
her three sons circumcised. She trusted her doctor who told her it did not
hurt and "only to... 阅读全帖
从来没听说过的网站
祝你好运
BBB Accreditation
On 11/16/2011 the accreditation was suspended due to failure to respond to
one or more customer complaints filed with the BBB and unresolved complaint(
s). The matter will be reviewed by the BBB's Board of Directors at its next
meeting.
代码如下:
import java.util.*;
public class test {
public static void main(String[] args) {
List list = new ArrayList( 100 );
for( int i = 0; i < 10; i ++ ){
list.add( i, String.valueOf( i*31 % 20 ) );
}
Collections.sort( list );
System.out.println( list );
}
}
编译错误:(jdk 1.5.0_01)
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
Syntax error on token "<", invalid AssignmentOperator
Syntax error on token "=", != expected
Syntax
我装了JDK1.6.0。
将Sun的java教程中的code放到Eclipse里面编译出错:
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The method format(Locale, String, Object[]) in the type PrintStream
is not
applicable for the arguments (String, String, String)
查了一下,看到这个: http://dev.eclipse.org/newslists/news.eclipse.platform/msg53962.html
按他说的做了,即:
Window->Preferences->Java->Compiler->Compiler compliance level
将Compiler compliance level设置为6.0, Apply, OK了。
Eclipse还是不受用。
在Dos窗口用javac编译运行冇问题。
麻烦指点一下
well, the language spec has dedicated 50 pages for
this subject alone. we thought java is supposed
to be simpler than c++... http://java.sun.com/docs/books/jls/third_edition/html/expressio
15.12 Method Invocation Expressions
15.12.1 Compile-Time Step 1: Determine Class or Interface to Search
15.12.2 Compile-Time Step 2: Determine Method Signature
15.12.2.1 Identify Potentially Applicable Methods
15.12.2.2 Phase 1: Identify Matching Arity Methods Applicable by
Subtyping
... 阅读全帖
runtime error:
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
Type mismatch: cannot convert from E to int
at Stack.pop(Stack.java:40)
at ArithmeticEvaluator.postfix(ArithmeticEvaluator.java:68)
at ArithmeticEvaluatorDriver.main(ArithmeticEvaluatorDriver.java:15)
I was trying to link math in VC,
though I included math.h in source file, but it alway gave compiling error:
LNK1120:unresolved externals.
anybody has a clue?
3x!!
class A
{
static int a;
public:
static ini(int b)
{
a=b;
}
};
int main()
{
A a1;
a1.ini(3);
}
报错:
const error LNK2001: unresolved external symbol "private: static int A::a" (
?a@A@@0HA)
谢谢
我的程序用到了openGL 1.3的几个函数,比如glLoadTransposeMatrix。这些函数声明
在glext.h里面。编译的时候没问题,但连接的时候出错:
error LNK2019: unresolved external symbol _glLoadTransposeMatrixf@4
referenced in function ....
我运行了glewinfo,显示可以支持到GL_VERSION_2_1。而这些函数是GL1.3里面的,按
理说应该没有问题啊。望不吝赐教,万分感激。
em your OS is win
there are other approaches:
1) use sys.path to add the path, such as
import sys
sys.path.append('/path/to/package')
2) or you can ignore the error by using #@UnresolvedImport. e.g.
import xxx #@UnresolvedImport
Using VS2010, a class can be exported from DLL. the client can access it
without problem. when put it into a namespace, the client program has link
error: unsolved external objs...
Any idea? thanks
the dll header file is:
#pragma once
#ifndef ECONOMICS_API_DCL
#ifdef ECONOMICS_EXPORTS
#define ECONOMICS_API_DCL __declspec(dllexport)
#else
#define ECONOMICS_API_DCL __declspec(dllimport)
#endif
#endif
namespace Economics
{
class ECONOMICS_API_DCL InterestRate
{
publi... 阅读全帖