由买买提看人间百态

topics

全部话题 - 话题: swt
1 2 3 4 下页 末页 (共4页)
G*********a
发帖数: 1080
1
来自主题: Java版 - org..eclipse.swt error
hi cows, i've set up SWT_HOME, but i kept get this error, saying no swt-pi-
gtk-3139. i can see it is in the directory. why? Thanks a lot.
jing@jing-desktop:~/workspace/Value/bin$ Exception in thread "main" java.
lang.UnsatisfiedLinkError: no swt-pi-gtk-3139 in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
at java.lang.Runtime.loadLibrary0(Runtime.java:822)
at java.lang.System.loadLibrary(System.java:992)
at org.eclipse.swt.internal
c*****t
发帖数: 1879
2
来自主题: Java版 - [转载] SWT question, anyone?
【 以下文字转载自 Programming 讨论区 】
【 原文由 coconut 所发表 】
Is it possible to synchronize the states (selection and enabled)
for a MenuItem and a button (ToolItem or Button) using listeners
only?
In Swing, it is possible to do so with two listeners by hooking
up ItemListener and PropertyChangeListener, but I don't seem to
be able to find a way to do so in SWT. I know JFace has it,
but I am writing a SWT XUL...
Any helps? Thanks.
d****i
发帖数: 4809
3
来自主题: Programming版 - SWT
Java desktop is almost obsolete except for some specialized tools like
Eclipse. But Eclipse uses SWT, so SWT is not dead. For cross-platform
desktop apps, I recommend Qt (which KDE is based on) or wxWidgets. For
Windows desktop apps, you can use MS's MFC (old fashioned way, but still
works!).
d*r
发帖数: 238
4
来自主题: Java版 - 大家用swing还是swt呀?
是不是swt快一些呀。
d*r
发帖数: 238
5
来自主题: Java版 - 大家用swing还是swt呀?

And a question about swt.
I have read through a tutorial but I still don't know how to remove, say a
button, from a composite.
e***g
发帖数: 158
6
来自主题: Java版 - 大家用swing还是swt呀?
don't use swt.
c*****t
发帖数: 1879
7
来自主题: Java版 - SWT programming questions
I am working on an XML to SWT tool, similar to CookSwing I posted a few
days ago.
Questions 1:
How do you figure out if a Color can be disposed? According to apidoc,
system color must not be disposed...
Question 2:
Are child widgets disposed when the container (like Display, Shell, etc)
are disposed?
Question 3:
Are fonts/colors disposed automatically when the widget using them
gets disposed (assume no sharing)? Or should I attach a DisposeListener
to the widget that explicitly free the resour
z****g
发帖数: 2497
8
来自主题: Java版 - org..eclipse.swt error
I think you need to put swt-pi-gtk-3139 library ( a .so file?) in the LOAD_L
IBRARY_PATH.
G*********a
发帖数: 1080
9
来自主题: Java版 - org..eclipse.swt error
thanks! but it is there already, with swt.jar.
yes, it is .so file.

_L
c*****t
发帖数: 1879
10
来自主题: Java版 - org..eclipse.swt error
What you need to do is to add the following to the JVM start param:
java -Djava.library.path="swt-gtk-directory" -cp yourApp.Main
g*****g
发帖数: 34805
11
来自主题: Java版 - Anyone had issues with SWT on Vista?
I am getting problem to make our SWT application work on Vista.
It's experiencing a lot of weird issues. And I don't have a Vista
box to put up a debugging environment and figure out.
y****w
发帖数: 3747
12
最近需要搞个gui的wrapper,用到swt。结果被怎样处理layout和resize的问题堵住了,
搞不定,请大牛指点指点,最好能给个简单例子。
需要:
某个composite由toolbar和text/table组成。在整个窗体resize的时候,要求toolbar
的高度不变,而多出来的空间需要被text/table取得。
我做了下,toolbar上的按钮倒是没变,但是整个窗体的上半部分都变成灰色了。
问题感觉是出在不懂layout上,现在心浮气躁的也不知道从何下手了,麻烦大牛帮忙整
个例子,多谢先!
z****e
发帖数: 54598
13
因为java的ui一直都是饱受诟病的一块
一个是缺省界面实在是太难看,工程师的毛病,做的东西可能好用,但是往往极为丑陋
第二个是在客户端因为有jvm的存在,所以在硬件性能上去之前,一直有一个效率的问题
所以给人以感觉很缓慢,而ui又绝大部分应用在客户端上
这两个加起来使得ui几乎完全没有竞争力
所以oralce接手java之后,第一步先把swing的界面给弄好看来
然后再根据缓慢的特点启用硬件加速等优化客户端效率,以增强ui体验,这就是javafx
google不做swing简单说就是嫌java的swing做得太烂
据说swing和swt以前都是两个女人在lead,所以……
o**2
发帖数: 168
14
来自主题: Programming版 - FMP supports UI thread in both Swing and SWT
上周 cplus2009 同学有个问题(http://www.mitbbs.com/article_t/Programming/31253813.html),涉及到GUI程序中线程之间转换的问题。就是controls都要在UIthread(Swing或SWT)里操作,而后台的logic要在非UIthread里操作。
我当时说了FMP可以轻易淘汰掉这种thread-base的编程技术,于是趁这个长周末,把对
UIthread的支持做进了FMP。想要试用的,可以在此download 2.0 jar:https://
github.com/fastmessenger/RI-in-Java/blob/master/fmp-2.0-bin.jar?raw=true
这里我借用 cplus2009 同学的问题作为范例:他的问题是有一个界面,上面有一个
BROWSE按钮,按了后弹出一个文件选择对话框。用户选好文件后,将文件名显示在
BROWSE按钮前面的text里。这里文件选择用来代表后台的耗时操作。
用FMP的,可以这样设计:一个Frontend class用来access UI controls... 阅读全帖
z*******3
发帖数: 13709
15
来自主题: Programming版 - FMP supports UI thread in both Swing and SWT
大牛你考虑一下上javafx的api接口吧
swing和swt都有些过气了
当年java在这两个ui年代,貌似都做得不太好
据说两个领导都是女的,女人当权,容易乱搞
o**2
发帖数: 168
16
来自主题: Programming版 - FMP supports UI thread in both Swing and SWT
这不是柿子挑软的捏嘛...
SWT是小众产品;Swing在东部倒是用来开发了不少trading系统的前台。老实说,这两
个从来都没有火过就有些过气了。
这个JavaFX刚出来,我还不了解,也不知道有没有人用,有空看看。
o**2
发帖数: 168
17
来自主题: Programming版 - FMP supports UI thread in both Swing and SWT
多谢老赵的提醒 (看见有人叫“老赵”,估计是你了,我就跟着叫了)
这个JavaFX和Swing的UI thread设计几乎是一样的,所以我就把对这三个GUI系统的支
持都做到一起了。
public class GuiMessenger extends Messenger {
private Display swtDisplay;
public GuiMessenger () {
super ();
}
public GuiMessenger (ExecutorService executorService) {
super (executorService);
}
public Display getSwtDisplay () {
return swtDisplay;
}
public void setSwtDisplay (Display swtDisplay) {
this.swtDisplay = swtDisplay;
}
synchr... 阅读全帖
c***5
发帖数: 158
18
来自主题: Programming版 - SWT
现在SWT是不是没人用了?什么Java Framework适合开发desktop application?
M*******n
发帖数: 10087
19
【 以下文字转载自 Joke 讨论区 】
发信人: MadDaemon (瘋一樣的男子), 信区: Joke
标 题: 女大学生花3万赴美实习洗厕所 因此经历考研被录
发信站: BBS 未名空间站 (Mon Jul 22 12:46:16 2013, 美东)
文章来源: 羊城晚报 于 2013-07-22 09:32:37 - 新闻取自各大新闻媒体,新闻内容并
不代表本网立场!
雨柯表示,在纽约州打工获得了宝贵的人生阅历受访者供图
广东省农工商职业学院学生通过SWT面试(图自广东省教育厅网站)
原标题:交3万赴美实习洗厕所你去吗?
羊城晚报记者蒋铮
花3万元去美国实习3个月,但做的是洗厕所、换床单、搬运货物、炸薯条之类的蓝
领工作,你愿意吗?
今年暑假,广东有数百名大学生陆续赴美,参加暑期带薪实习活动(以下简称SWT
)。羊城晚报记者了解到,许多学生对SWT缺乏了解,以为能去世界500强企业“叹”空
调、练口语、交朋友、体验发达国家生活,实际上干的是“粗重活”。
而且,相比国内的实习机会,这种“洋实习”代价不菲:出国前要向中介机构缴纳
2万元左右的报名费,还要另付近万元的签证费、机票... 阅读全帖
M*******n
发帖数: 10087
20
文章来源: 羊城晚报 于 2013-07-22 09:32:37 - 新闻取自各大新闻媒体,新闻内容并
不代表本网立场!
雨柯表示,在纽约州打工获得了宝贵的人生阅历受访者供图
广东省农工商职业学院学生通过SWT面试(图自广东省教育厅网站)
原标题:交3万赴美实习洗厕所你去吗?
羊城晚报记者蒋铮
花3万元去美国实习3个月,但做的是洗厕所、换床单、搬运货物、炸薯条之类的蓝
领工作,你愿意吗?
今年暑假,广东有数百名大学生陆续赴美,参加暑期带薪实习活动(以下简称SWT
)。羊城晚报记者了解到,许多学生对SWT缺乏了解,以为能去世界500强企业“叹”空
调、练口语、交朋友、体验发达国家生活,实际上干的是“粗重活”。
而且,相比国内的实习机会,这种“洋实习”代价不菲:出国前要向中介机构缴纳
2万元左右的报名费,还要另付近万元的签证费、机票等费用。
据中国教育部一位官员介绍,该项目从2008年开始实施以来,已经有超过3000名中
国在校大学生参与。
实习
故事
怕苦你别来
羊城晚报记者通过网络、电话和面对面的采访,向十多名正在美国实习、或已经实
习过的国内大学生展开调查。有人说“精彩”,有人说“坑... 阅读全帖
G***Y
发帖数: 9698
21
探访中国大学生来美实习:花费3万 洗3个月厕所
2013-07-22 17:26:43 来源:广州《羊城晚报》
花3万元去美国实习3个月,但做的是洗厕所、换床单、搬运货物、炸薯条之类的蓝领工
作,你愿意吗?
今年暑假,广东有数百名大学生陆续赴美,参加暑期带薪实习活动(以下简称SWT)。
羊城晚报记者了解到,许多学生对SWT缺乏了解,以为能去世界500强企业“叹”空调、
练口语、交朋友、体验发达国家生活,实际上干的是“粗重活”。
而且,相比国内的实习机会,这种“洋实习”代价不菲:出国前要向中介机构缴纳2万
元左右的报名费,还要另付近万元的签证费、机票等费用。
据中国教育部一位官员介绍,该项目从2008年开始实施以来,已经有超过3000名中国在
校大学生参与。
实习故事:怕苦你别来
羊城晚报记者通过网络、电话和面对面的采访,向十多名正在美国实习、或已经实习过
的国内大学生展开调查。有人说“精彩”,有人说“坑爹”,但他们有一个观点是一致
的,“怕吃苦就别来”!
“正方”雨柯:硕士面试时这段经历被赞
雨柯是中山大学传播与设计学院的研一学生。还在大二时,雨柯就参加了为期4个月的
SWT... 阅读全帖
o***s
发帖数: 42149
22
此为某教育中介机构宣传SWT项目的截图。
日前,在美国国务院进一步收紧“夏季工作旅行计划”的背景下,中国国内的一些教育中介机构没有披露相关政策变化内容,仍在大规模组织2013年赴美国带薪实习雇主见面会。
看到骗过自己的一些教育中介机构仍在继续欺骗他人,部分参加过此项目的学生找到中国青年报记者:“我们已经无法要回被教育中介机构拿走的血汗钱,唯一能做的就是把自己的遭遇告诉大家,请同学们不要再犯同样的糊涂。”
这些学生参加过的赴美国带薪实习项目(简称SWT),是基于美国政府在1948年通过的《信息及教育交流法案》而设立的。这个法案在1961年被纳入并扩展为《教育及文化平等交流法案》,“交流访问学者项目”作为其修正案被颁布实施。通过这个项目,外国大学生可以在暑假期间到美国工作、旅游,最长时间为4个月。
SWT项目在欧洲、美洲及亚洲其他国家和地区运作了40余年,2007年开始在中国大陆推广。据中国教育部一位官员介绍,从2008年开始,国内参加SWT项目的学生有100多人,到目前已有3000多人。
来自教育界内部熟知情况的范虹(化名)女士向中国青年报记者透露:“赴美国带薪实习项目周期长,涉及环节多... 阅读全帖
G***Y
发帖数: 9698
23
中国大学生来美实习:花三四万当苦力 血汗钱要不回
2013-05-27 10:15:38 来源:中国青年报
此为中国某教育中介机构宣传SWT项目的截图
日前,在美国国务院进一步收紧“夏季工作旅行计划”的背景下,中国国内的一些教育
中介机构没有披露相关政策变化内容,仍在大规模组织2013年来美国带薪实习雇主见面
会。
看到骗过自己的一些教育中介机构仍在继续欺骗他人,部分参加过此项目的学生找到记
者:“我们已经无法要回被教育中介机构拿走的血汗钱,唯一能做的就是把自己的遭遇
告诉大家,请同学们不要再犯同样的糊涂。”
大学生来美国带薪实习陷阱重重
这些学生参加过的来美国带薪实习项目(简称SWT),是基于美国政府在1948年通过的
《信息及教育交流法案》而设立的。这个法案在1961年被纳入并扩展为《教育及文化平
等交流法案》,“交流访问学者项目”作为其修正案被颁布实施。通过这个项目,外国
大学生可以在暑假期间到美国工作、旅游,最长时间为4个月。
SWT项目在欧洲、美洲及亚洲其他国家和地区运作了40余年,2007年开始在中国大陆推
广。据中国教育部一位官员介绍,从2008年开始,中国参... 阅读全帖
s*****n
发帖数: 1636
24
日前,在美国国务院进一步收紧“夏季工作旅行计划”的背景下,中国国内的一些教育
中介机构没有披露相关政策变化内容,仍在大规模组织2013年赴美国带薪实习雇主见面
会。
看到骗过自己的一些教育中介机构仍在继续欺骗他人,部分参加过此项目的学生找
到中国青年报记者:“我们已经无法要回被教育中介机构拿走的血汗钱,唯一能做的就
是把自己的遭遇告诉大家,请同学们不要再犯同样的糊涂。”
这些学生参加过的赴美国带薪实习项目(简称SWT),是基于美国政府在1948年通
过的《信息及教育交流法案》而设立的。这个法案在1961年被纳入并扩展为《教育及文
化平等交流法案》,“交流访问学者项目”作为其修正案被颁布实施。通过这个项目,
外国大学生可以在暑假期间到美国工作、旅游,最长时间为4个月。
SWT项目在欧洲、美洲及亚洲其他国家和地区运作了40余年,2007年开始在中国大
陆推广。据中国教育部一位官员介绍,从2008年开始,国内参加SWT项目的学生有100多
人,到目前已有3000多人。
来自教育界内部熟知情况的范虹(化名)女士向中国青年报记者透露:“赴美国带
薪实习项目周期长,涉及环节多,表面上看起来运作成熟... 阅读全帖
c*******9
发帖数: 6411
25
I tried the following code, and looks like text.setText("test") caused
the "org.eclipse.swt.SWTException: Invalid thread access" error.
the UI here has text field, and a browser button, the browser button will
display JFileChooser to choose a file.
any idea how to get this work?
thanks.
testing code:
private void createContents(final Shell shell)
shell.setLayout(new GridLayout(3, false));
final Label lable = new Label(shell, SWT.READ_ONLY);
lable.setText("File Path");
... 阅读全帖
c*******9
发帖数: 6411
26
【 以下文字转载自 Java 讨论区 】
发信人: cplus2009 (in the woods (木老虎)), 信区: Java
标 题: update main UI from child thread issue
发信站: BBS 未名空间站 (Tue May 21 14:13:10 2013, 美东)
I tried the following code, and looks like text.setText("test") caused
the "org.eclipse.swt.SWTException: Invalid thread access" error.
the UI here has text field, and a browser button, the browser button will
display JFileChooser to choose a file.
any idea how to get this work?
thanks.
testing code:
private void createContents(final She... 阅读全帖
l****z
发帖数: 29846
27
Muslims told Valentine’s Day can invoke wrath of God
February 10, 2012
KUALA LUMPUR, Feb 10 — An invitation “to be my Valentine” on February 14
is against Islamic beliefs and would incur the wrath of Allah, Muslims were
told today in the official Friday sermon prepared by the federal government.
The sermon warned Muslims against celebrating Valentine’s Day, which the
federal Islamic authorities claimed was in breach of the tenets of their
religion.
In the text of a sermon provided by the Departm... 阅读全帖
d******c
发帖数: 2407
28
来自主题: Programming版 - java ---> Kotlin --- > Native
1. IBM搞swt是在eclipse之前,那是很早以前了。
2.LLVM解决不了这方面的问题。我觉得LLVM只能解决common module的问题。
你要搞平台无关,很多代码是很简单的,数学运算,控制逻辑,编译到任何平台都不是
很难的事情。用户界面才是难点,各个平台底层实现不一样,你只有两种方法:
搞虚拟机,各个平台实现虚拟机,语言层次则是完全一样的。这样你只能实现各个平台
UI方面的最大公约数,性能上也不可能最优化。Java Swing是这样。Swing始终没有真
正火起来,我觉得可能大家对UI还是要求性能高,要求界面好看,而AWT/Swing界面也
不算好看。等到sun/oracle开始搞Java FX试图用web来解决问题,更比不上人家直接
html5 / js了。
为每个主要平台实现一个底层库,然后用户开发时不接触底层细节,但不同平台的界面
会有各自风格。Qt可能是这样,我不是特别清楚。IBM SWT就是这样,所以windows和
linux下的SWT界面风格不同,性能也比Swing好不少。但你在windows下要多装个dll,
也只有eclipse和相关的东西用。
WEB... 阅读全帖
y***u
发帖数: 5243
29
Swing项目组的女人太强势了,AWT发展缓慢。才会有SWT这个东东出来。其实如果AWT好
好发展,也不需要IBM搞一个SWT了
y***u
发帖数: 5243
30
Swing项目组的女人太强势了,AWT发展缓慢。才会有SWT这个东东出来。其实如果AWT好
好发展,也不需要IBM搞一个SWT了
g*****n
发帖数: 37
31
来自主题: Java版 - 请问java的ide
Is SWT more advanced than swing? Or SWT is built on swing?
What is rectoring used for? Thanks.
n*m
发帖数: 23
32
来自主题: Java版 - Eclipse vs. Jbuilder X ?


Eclipse is not "Yet another implemetation of SWING". Actually, the SWT library
is a totally different GUI component than SWING.
I once tested Chinese Yong Zhong office. It is written in Java, and, I
believe, it has its own GUI component model too.

SWT/Eclipse is a brand new code base. The project luanched 2 years ago.

,
作e
Though I believe Eclipse is better than Jbuilder, JBuilder's GUI builder is
definitely much better than any Eclipse based GUI builder.
X(9)

F****n
发帖数: 3271
33
Personally, I think SWT is a waste of time and money to mislead people. If SWT
stands, why not JWC (Does anybody still remember this shit?). Swing's problem
should be solved at the implementation level.
e***g
发帖数: 158
34
来自主题: Java版 - eclipse: The New Look Isn't Native
http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/
platform-ui-home/R3_0-Look/UIResponse.html
hahaha! SWT is a very sad thing. I have no problem with improving or
going beyond Swing, but SWT is just not right.
g******a
发帖数: 730
35
来自主题: Java版 - Questions about .jar
I downloaded a tool in a pre-built version named piccolox.jar, then when I did:
java -jar piccolox.jar
I got:
java.lang.ClassNotFoundException:
at java.lang.Class.forName(Class.java:33)
at kaffe.jar.ExecJarName.main(ExecJarName.java:58)
at kaffe.jar.ExecJar.main(ExecJar.java:61)
In the same directory where piccolox.jar resides in, there is a subdirectory
named lib. lib contains ant.jar junit.jar swt-win32-2047.dll swt.jar .
My question is: Why I got this error msg? How
g*****g
发帖数: 34805
36
Even server guys write gui code once a while.
I am a server guy and I started maintaining my admin console in SWT
in day 2, without ever writing one line of SWT before, AWT and SWING
knowledge certainly helped some time.
g*****g
发帖数: 34805
37
来自主题: Programming版 - 请问跨平台的GUI开发用什么?
java swing在6.0之后速度有很大提高,如果觉得不够好可以用swt。
我们用swt做相当复杂的胖客户端,当然只是商业计算。
我以前也用java 3D做过一些demo,大部分应用问题不大。如果要
写doom那样的游戏是不行,除非去bind openGL.
g*****g
发帖数: 34805
38
严格说是基于SWT。IBM写的一个架构。可以在几个主要平台上写同样的Java代码,
底层用native UI binding。所以不同平台出来的UI不一样。
相比之下,Swing的部件是用java画的,有几种UI选择,转换就是一行代码。
SWT要比Swing快而且看过去更像native应用。
g*****g
发帖数: 34805
39
这个不是问题,SWT的做法就是有native支持用native支持,没native支持就
画。Java完全可以做成主流平台的合集。关键是从微软推出新操作系统,到
SWT整合这些东西,打少了也要两年。但如果微软愿意深度支持,技术上不是问题。
o**2
发帖数: 168
40
在Swing里,UI thread是固定的,所以可以用SwingUtilities.invokeLater()。
但在SWT里,UI thread不是固定的,所以必须用display.syncExec()。
http://www.eclipse.org/swt/faq.php#uithread
虽然这些thread-based的编程技术还在使用,但会被新的编程技术淘汰掉的,比如我开
发的FMP。
x****u
发帖数: 44466
41
来自主题: Programming版 - Delphi这个语言是不是已经死了?
Eclipse的UI完全要归功于SWT,这东西是IBM自己搞的,和SUN的垃圾JVM关系不大。
SWT界面和JVM的关系大概类似Android界面和JVM的关系了。
S*********g
发帖数: 24893
42
【 以下文字转载自 Stock 讨论区 】
发信人: StephenKing (金博士), 信区: Stock
标 题: 市面上流通1358种电子货币,包括ByteCoin
发信站: BBS 未名空间站 (Fri Dec 15 00:59:47 2017, 美东)
# Name Symbol Market Cap Price Circulating Supply Volume (
24h) % 1h % 24h % 7d
1
Bitcoin BTC $290,617,804,480 $17,358.40 16,742,200 $15,
825,500,000 -0.36% 5.62% 3.15%
2
Ethereum ETH $63,827,563,522 $662.47 96,348,146 $3,723,
910,000 -0.48% -10.50% 52.62%
3
Bitc... 阅读全帖
L*******e
发帖数: 2202
43
http://michigandaily.com/files/imagecache/fullnode/swt.mpromise.3-25-
10007.jpg
http://www.gaypolitics.com/wp-content/uploads/2010/03/chrisarmstrong-
200x300.jpg
Chris Armstrong, an openly gay junior and former intern at the Gay &
Lesbian Victory Fund, has been elected president of the University of
Michigan Student Assembly, which represents tens of thousands of
students at one of the country’s most prestigious schools.
“I am so humbled by the fact that the student body voted for us. It’s
reall
l****z
发帖数: 29846
44
来自主题: USANews版 - No, Hasan and Bales Are Not Equivalent
By Winfield Myers
Earlier this week, Omid Safi, a professor of Islamic studies at the
University of North Carolina at Chapel Hill, used his blog "What Would
Muhammad Do" at the Religion News Service to claim a moral equivalency
between Ft. Hood jihadist Major Nidal Malik Hasan and U.S. Army Staff
Sergeant Robert Bales. "When Americans Kill vs. When Muslims Kill" is a
morally repugnant attempt to claim a double standard in the way Americans
react to mass murder. In this, Safi echoes the party l... 阅读全帖
r*********t
发帖数: 4911
45
第一,主流媒体那么假新闻,英文凭啥比中文更好?第二,你所看到的中文假东西,是
基于中文媒体对英文的翻译,这样当然是英文更好,因为英文原版嘛。可是古兰经都是
由阿拉伯语翻译的,英文和中文位置一样.
第三,英文原文如下:And let those who cannot find someone to marry maintain
chastity until Allah (SwT) makes them rich through His favours ...--Surah 24
, Verse 33 也就是说,只要保障了经济条件,就可以包办婚姻了。

is
obtained."

发帖数: 1
46
因为网上中文的东西太多造假的了。
And let those who cannot find someone to marry maintain chastity until Allah
(SwT) makes them rich through His favours
请问这段话与父母强迫逼婚有什么关系?你从哪里看出来说有了钱后,父母就可以逼女
儿嫁给父母决定的人?
BTW, 你这翻译只是众多翻译中的一种,给你看看下面另外一种翻译。注意其中差别:
“who cannot find someone" 与 “who do not find the means"。不管如何,我是看
不出来有父母可以逼婚的说过。
Shakir: And let those who do not find the means to marry keep chaste until
Allah makes them free from want out of His grac

maintain
24
c****e
发帖数: 9482
47
来自主题: Classified版 - Job opening: Java GUI developer
简介:
Standalone Java using Java swing, Java 3D lib, etc. 最好有工作经验, 或者刚
毕业但是有working permit, 就是说需要是OPT或者H1B transfer. 工作满一年立刻办
绿卡。
地点在加州南湾。 请给我站内信。 谢谢!
下面是详细说明: :)
Job Description:
We are looking for highly talented Jr./Sr. Java developer to join our
software research and development team. In this role, you will be
responsible for designing, developing, and testing software programs that
are leading the way in this industry. You will be challenged with
identifying solutions to problems and will b... 阅读全帖
e*i
发帖数: 10288
48
Forward this post to your email--if you are using telnet
_=_
_=_ Part 001 of 001 of file 5_off_30_cpn.zip
_=_
begin 666 5_off_30_cpn.zip
M4$L#!!0````(`&!D_$)O_NPBKE```.-W```0````-5]O9F9?,S!?8W!N+G!D
M9NV]=5Q5V]8P#"B*I)2((FR1E-@==)=T2(@@M:6[0T5"!`D+#%04D!`%:02D
MI;M#NKN[O@7F$>X]]]SG?=_OGV?NW]YK[KGF&CW''&.N8E82E^2" MZYI("%$@",C:P(R$GQ\L9VJ%U; M!:!=#6A'PI!@:9`V"`I'HD`P.%1'4)`$:V6T!P9TL)`0NMAAK^]A0L))""'?
M"Q1`O%=`5C_:H$@,^D`;"H4XT(9!0/]L@\'0R`-M*!Z>/]O@4`C\... 阅读全帖
c****e
发帖数: 9482
49
来自主题: JobHunting版 - Job opening: Java GUI developer
简介:
Standalone Java using Java swing, Java 3D lib, etc. 最好有工作经验, 或者刚
毕业但是有working permit, 就是说需要是OPT或者H1B transfer. 工作满一年立刻办
绿卡。
地点在加州南湾。 请给我站内信。 谢谢!
下面是详细说明: :)
Job Description:
We are looking for highly talented Jr./Sr. Java developer to join our
software research and development team. In this role, you will be
responsible for designing, developing, and testing software programs that
are leading the way in this industry. You will be challenged with
identifying solutions to problems and will b... 阅读全帖
y****n
发帖数: 144
50
来自主题: JobHunting版 - 有做Front End Developer的进来说说
为什么说前端都说WEB呢。android、ios的native app完全不用web啊。用一点css有时
。也不多。有的公司纯用c++、com或者java SWT。用web的基本都是互联网公司。做
enterprise应用的很少用web。
1 2 3 4 下页 末页 (共4页)