|
s*******a 发帖数: 8827 | 2 i think it is a good idea, at least conceptually |
|
Z****e 发帖数: 2999 | 3 conceptually how?
"What we are talking about is enhancing online security and privacy;
reducing and perhaps even eliminating the need to memorize a dozen passwords
, through creation and use of more trusted digital identities"
Are you sure this is going to work out? Just look at SSN and rampant
identity thefts. |
|
F****n 发帖数: 3271 | 4 Conceptually, think about the domain of you application, i.e. what are the
basic action operators in your domain? what are the agent roles required by
applications, and what are the capabilities of each roles.
Technically, first you must decide how to do symbolic inference in you system.
This is the most important part.
All above have little to do with JADE.
How |
|
r*****s 发帖数: 985 | 5 【 以下文字转载自 XML 讨论区 】
【 原文由 redbuds 所发表 】
why dont we learn it together here instead of ...?
I'd like to understand it well too. In today's talk, somebody talked
about ontology, but i'm still not very clear.
I found a link here for ontology:
http://www-ksl.stanford.edu/kst/what-is-an-ontology.html
It defines ontology as "a specification of a conceptualization", but it
is still too abstract :(
as i understand, ontologies are some rules, or constraints for some models.
hey, middleman, or anybody els |
|
F****n 发帖数: 3271 | 6 It's a good try but the big problem is that it's actually still a procedural
programming tool conceptually, only hidden under a declarative syntax. It's
like directly programming on SOAP, which is weird and counter productive.
of
, JSF+Spring Web Flow are "completely" declarative UI across those three
layers. |
|
F****n 发帖数: 3271 | 7 You said it:) Declarative and Procedural programming are conceptually very
different. When you use declarative syntax to express procedural concepts,
it's unnatural and problems may occurs. And why you want to do that in the
first place? Because it's XML? |
|
F****n 发帖数: 3271 | 8 我觉得把JAVA的conceptual foundation说成relational DB肯定不对,你说的问题在
Relation DB中存在但在OO设计中基本上都能解决,JAVA有很好的OO模型相反
Relational DB才不具有OO概念,所以我们才需要EJB,SPRING。JAVA对应的应该是OODB。 |
|
F****n 发帖数: 3271 | 9 There is a branch in AI called knowledge representation, which studies logic
at both conceptual and system level (e.g. automated theorem proving). One
example is Prolog. Another example is expert system. It is in the same
category with DB in the sense that they both look for methods to fast index
/ search structured data.
In AI terms, query on Relational DBMS, is essentially a special case of
backward chaining (in the same camp with Prolog).
Indexing on relational DBMS takes advantages of the fi |
|
F****n 发帖数: 3271 | 10 I found it would be too expensive to discuss all those questions:))
But as to the performance issue, the key thing is, all relational operations can be implemented with same or better performance in OODB with proper storage / indexing strategy. In other words, conceptually RDBMS can be regarded as a special case of OODB. Downgrading an OODB to RDBMS is very easy, but upgrading a RDBMS to OODB would be difficult, requiring ugly patching such as ORM. That's why 10 years ago most people in universi |
|
m******t 发帖数: 2416 | 11
the
pointers
It's quite the other way around IMO. The differences are more between the
concepts than the implementations. References (or "pointers in Java") are
largely still implemented as actual memory pointers, but conceptually a
reference does not point to a particular memory location, and that leads
to a couple of important distinctions:
1. you cannot offset a reference like you would a memory pointer, and
2. a reference references an object, so when the object moves, the reference
follows |
|
F****n 发帖数: 3271 | 12 搞一套比较牛的conceptual level的东东出来,就不会过时了。40以后就靠讲课混饭吃
了。
轻人刚刚毕业,没有家庭没有孩子,当然不在乎加班或者多干。所以, senior的工程
师可能就比不上了。而且,因为你拿得钱多,搞不好公司裁人先裁你,因为你没有可塑
性了。
义。大部分的计算机工作,其实新手老手干没有太大的区别的,关键是态度问题。年轻
人因为有passion/motivation, 所以肯学肯钻,很快就能够做的很好的。 |
|
m******t 发帖数: 2416 | 13
I found some benchmarks on a site which I can't seem to find
any more. Basically the takeaway point from those benchmarks
was that scala and java are pretty close for mostly procedural
code, but as soon as you get into functional programming,
scala's performance starts dropping.
That's not saying scala is an inefficient language. It's
just the fact well-known-for-four-decades that functional
programming provides convenience and conceptual simplicity
at the price of efficiency. |
|
m******t 发帖数: 2416 | 14
It's relative to the first containing block with a non-static position
specification. IOW, you could conceptually do:
And the blocks above would be positioned within the container's
own coordinate system. |
|
A**********e 发帖数: 3102 | 15 嗯。server 是 conceptual 的。
享, |
|
|
|
m*****e 发帖数: 4193 | 18
There isn't really a conceptual difference. But there may be different
limitations in specific implementations. |
|
c******n 发帖数: 4965 | 19 unicode code point value can go larger than 65535
anyway that book made a conceptual error : it's meaningless to talk about
the "length" of unicode, unicode is just a number, when we talk about length
, it's always the *encoded* length under a charset.
java char can only represent the BMP and surrogate part of unicode, that's
what the book should say |
|
|
d****p 发帖数: 685 | 21 void test::hello() is actually void hello(test*)
Since the hello function just prints without using the passed test* pointer,
nothing goes wrong. Conceptually
it is a class static member function.
If you make hello a virtual function, things will change - even the hello
function body does not explicitly need
a valid this pointer, the process locating the function needs a valid this
pointer so it basically will crash.
I suggest you always checking the assembly code when having any doubt about
C++ |
|
d****p 发帖数: 685 | 22 Hmmm initially I thought it was just a matter of wording. After a bit
googling I realized differentiating hide from override is conceptually more
correct - it better illustrates the distinction between compile-time or run-
time function lookup.
So thanks for clearing an issue cheating me for so long time :-)
And hail to C++ since you keep knowing how poor your knowledge about it is
even if you code in it everyday - a sign you always are on learning curve :-
P
do |
|
s***o 发帖数: 2191 | 23 There is no "best" language for the plug-in,
Silverlight / C#
Flash / ActionScript
JavaFX / Java
Pure Web / JavaScript Frameworks/Libraries
...
are all valid choices that can satisfy your requirements. Also, the "plug-in
" sounds more like a "conceptual module". Depending on how "rich" you want
the UI is, it's possible just to put this module on the server side and use
any language you prefer.
just my 2 cents. |
|
G*****7 发帖数: 1759 | 24
了。
no, you don't need one. that's the beauty of ***distributed*** version
control.
in addition, i think TortoiseHg even comes with a server for you to host
your local files to collaborators across the network.
yes. nothing stops you from sharing the git repo between computers.
mercurial, a windows-friendly version control system. kind like git, but
conceptually simpler and easier for beginners who don't collaborate much. hg
is the element symbol for mercury, as well as the command to invoke
mer... 阅读全帖 |
|
n****1 发帖数: 1136 | 25 Monad is not invented to solve immutability problem.
Monad is real, and people use it everyday without noticing it. For example,
list is the most illustrative monad, and list comprehension/LINQ in python/C
# can reduce a lot of boilerplate code and make code more readable.
Haskell just grouped the conceptually similar structures together and gives
this group a ridiculous name called "Monad". I would prefer to call them "
mappable and flatable".
Mappable means you can map ordinal functions on mon... 阅读全帖 |
|
c***z 发帖数: 6348 | 26 【 以下文字转载自 DataSciences 讨论区 】
发信人: chaoz (面朝大海,吃碗凉皮), 信区: DataSciences
标 题: [Pig Progamming] Pig Latin join problem
发信站: BBS 未名空间站 (Tue Jan 28 20:00:22 2014, 美东)
Hi all,
Just wondering if any of you had the same problem and if you know the cause.
I have a dataset of site-visitor pairs, which records daily visits to
websites.
While filtering the data using domain "espn.com", there are 306 unique
visitors; while joining the data with the list of domain names, I only got
176 unique visitors to "esp... 阅读全帖 |
|
|
h*i 发帖数: 3446 | 28 Monad我真不懂,我只会Clojure用到的FP。Arrow是啥?是Category theory里面那个?
这个我真不敢说懂,我连《Conceptual Mathematics》这种入门书都看得很吃力,读了
一年都没读完的人,你就别笑我了。
high-order function倒是很简单。 |
|
f********x 发帖数: 99 | 29 The world beyond batch: Streaming 101: A high-level tour of modern data-
processing concept
http://radar.oreilly.com/2015/08/the-world-beyond-batch-streami
by Tyler Akidau August 5, 2015
Editor’s note: This is the first post in a two-part series about the
evolution of data processing, with a focus on streaming systems, unbounded
data sets, and the future of big data.
Streaming data processing is a big deal in big data these days, and for good
reasons. Amongst them:
Businesses crave ever more tim... 阅读全帖 |
|
s******t 发帖数: 9 | 30 【 以下文字转载自 Quant 讨论区 】
发信人: secquant (), 信区: Quant
标 题: Quant Researcher/Data Scientist/Developer 招人,纽约,需要公民
发信站: BBS 未名空间站 (Thu Aug 20 22:53:40 2015, 美东)
需要美国公民。感兴趣的请直接网上申请(link如下),也可以把简历给我(
[email protected]
/* */)。但是网上申请是必须的步骤!!
https://www.usajobs.gov/GetJob/ViewDetails/411691100
Requirements(must have one or more of the following):
Processing live and historical tick-level market data. Conceptual
understanding of market microstructure, liquidity and of short-term,
intraday algorithmic... 阅读全帖 |
|
h*i 发帖数: 3446 | 31 用范畴论解释哥德尔不完全性定理可以看看范畴论的科普读物《概念数学》,Lawvere
& Schanuel, Conceptual Mathematics: A first introduction to categories,
Cambridge press, 2009, 2nd edition, 第302-309页。
不复杂,就是一般数学理论用错了理想化的场景的问题。因为一般数学理论的理想化与
实际要解决的问题不是属于同一个范畴的,所以会产生出貌似悖论的现象。具体来说,
就是很多问题的真值域不是{true, false},而是其真值构成了问题范畴本身的一个
object;再比如说,“想象自然数N,0,1,2,...“这种理想化,其实其范畴不是N,
而是2^N。哈哈。
说来说去,就是一般数学家做数学还不够严谨,他们的态度其实还是“够用就行了,以
能出结果为准”,较起真来的话,就要出“悖论”了。其实不是悖论,而是假设不清楚
,或者假设就是错的。这与其他的科学工作者没什么不同。哈哈。
所以你看不到Lawvere的东西在数学教课书上,因为政治不正确,与数学家要保持的数
学高大上的形象不符。哈... 阅读全帖 |
|
c*******l 发帖数: 769 | 32 免费的Database Trends and Applications期刊
Database Trends and Applications (DBTA) magazine is the leading monthly
publication providing corporate information project teams with timely
coverage of the technology, intelligence and insight needed to conceptualize
, plan, initiate, implement and manage large-scale, integrated, information-
rich projects.
http://168forums.tradepub.com/free/dbta/
建议只需要地址是真的,其他像名字,公司,职位什么的都可以自己发挥了。如果有
APT#最
好改成Unit#。 |
|
p****o 发帖数: 1340 | 33 in latex, it is conceptually natural to embed environments inside
others, but it always gives me a lot of troubles in doing so. for
example, "eqnarray*" can not be embeded in a tabular. my questions
are
1. is there any rule-of-thumb which determines which environment
can be nested in another one and which can't?
2. is there any trick to by-pass these constraints? for example, i
might really wish to nest some equations inside a tabular.
thanks! |
|
p****o 发帖数: 1340 | 34 thanks for the long reply, :).
personally, i think it would be great that all environments (or some
basic ones) can be nested without constraints. it is convenient and
conceptually good. maybe it hurts the performance and it's also hard
to implement. |
|
r*****s 发帖数: 985 | 35 why dont we learn it together here instead of ...?
I'd like to understand it well too. In today's talk, somebody talked
about ontology, but i'm still not very clear.
I found a link here for ontology:
http://www-ksl.stanford.edu/kst/what-is-an-ontology.html
It defines ontology as "a specification of a conceptualization", but it
is still too abstract :(
as i understand, ontologies are some rules, or constraints for some models.
hey, middleman, or anybody else, any idea? |
|
m*******n 发帖数: 154 | 36 a good suggestion made by you.
I would like to understand ontologies as generally an authoritative expression
of conceptual
relationships between a group of terms (entities) in a defined
area, such as ontoloties for a medical area, a branch of science etc.
XML is a tool to express ontologies. A variety of operations can be
applied to ontologies, e.g., modification and join with
each other etc.
Any comments?
of XML |
|
j******e 发帖数: 10 | 37 mechanics 不错,conceptual level 好像不太够。 |
|
t*****3 发帖数: 586 | 38 刚开始学ACC,刚才做题有个问题不确认,想问问大家答案
(T OR F)
1.Conceptually, the cost allocation procedures for natural resources
parallels that of plant assets
2.Using the units-of-activity method of depreciating factory equipment will
generally result in more depreciation expense being recorded over the life
of the asset than if the straight-line method had been used. |
|
a**********c 发帖数: 4 | 39 I don't recommend you purchasing 2008 materials. 1.a lot of amounts/
limitations/credits for taxes have changed in the Rugulation part. 2.a lot
of conceptual changes in Financial and Auditing parts. I am looking at my
2009 Becker FAR book, and it actually lists the chapters that suitable for
candidates taking the exam before June and after July.3.GAAP Codification
and IFRS were not included in last year's material, but are included in 2009
tests. |
|
i*********y 发帖数: 226 | 40 ☆─────────────────────────────────────☆
alanshore (小妮子) 于 (Tue Oct 16 00:52:39 2007) 提到:
没听说过什么叫private accounting firm
conceptually speaking, public accounting firm = firm that does public
accounting
这里并非指whether an accounting firm a public or a private one
U were confused?
☆─────────────────────────────────────☆
nightwalker (walker) 于 (Tue Oct 16 10:36:10 2007) 提到:
there IS some private acct. firm. I am sure.
there are some requirement to public acct. firm, like the percentage of CPA |
|
k***y 发帖数: 133 | 41 对你的人生规划没看法,对于会计入门学习随便扯两句
会计和金融或者经济学不一样,逻辑基础不是很强,更接近于语言,会计本身也被称作
business language。所以有些地方不能太较真。而且会计里边的术语,不要试图用日
常的词汇意义去理解,当作一门新的语言来看
当然,会计方法选择还是有一定逻辑性的,这也是conceptual framework一直的目标
简单说,会计信息就两个要求,reliable and relevant;不可能同时达到,目前,尤
其是GAAP,还是reliable为主,不确定情况下要conservative,也就是conservatism
剩下比较重要要理解就是revenue recognition and matching principle,也就是说根
本上说,要先确定revenue,然后根据matching,来确定expense;联系没那么清晰的情
况下,参照reliable and conservative原则
至于你说那个cost,那个是MA里的了;不过都一样;就是你要对信息分类,这样看的比
较清楚;就像为什么你要把现金和应收分开一样;至于你要说到为什 |
|
B*********e 发帖数: 263 | 42 刚发现这条信息更大家share一下。
http://www.another71.com/roger-cpa-review-free-far-webcast-ifrs
On Saturday February, 25 Roger CPA Review is hosting a Free Webcast of their
live FAR class that will cover the Conceptual Framework and IFRS for the
2011 Financial Accounting and Reporting section of the CPA Exam.
Date: 2/26/2011
Time: 11am EST / 8am PST
Duration: Approx. 2.5 hours
Cost: Free
Signup: www.RogerCPAReview.com and click “Free Live Webcast” in the left
navigation bar on the main banner on the site. |
|
y*******e 发帖数: 12 | 43 今天凌晨刷到分数:78,与死神擦了个肩。因为复习时间没安排好,F9完全没看,考前
一度以为必死无疑。。想到一个月来的努力总算是有回报,非常开心~这个论坛在考试
过程中帮了我很多,在此想谈谈我对FAR复习的粗浅看法,愿大家看后能有收获
先从对复习的总体认识说起吧,总是看到有人问:我考这门大概需要准备多久呢?要回
答这个问题,就必须对自己的情况有清楚的定位。FAR考查的是3门课程,其考察比例大
约intermediate accounting 1,intermediate accounting 2,government & not for
profit accounting各占三分之一。另外有很少的advanced accounting(都在F3的
Consolidated statement这节)。考试需要的复习时间,直接取决于你对这3门课的掌
握程度。拿我自己来说,这学期在同时修inter1和2,Gov没学过,所以只复习了一个月
。如果你修过gov,应该会更快。而如果完全没修过inter1和2,我觉得至少要留两个半
到三个月的复习时间。
关于复习材料,我用的becker,光这套资料就已... 阅读全帖 |
|
|
y**a 发帖数: 2546 | 45 工作地点在NJ或者CT, 大概要招3名,
两个比director低的级别。
只支持H1B transfer或者绿卡公民。
这是一个比较新的组,负责组建的vp因为我以前推荐成功过几次,所以问我还有人推荐
不。
需要有modeling工作经验,而且是精算背景的。(investment背景的另外有几个
opening,不过竞争激烈,我就不推荐了)
有兴趣请发简历至 [email protected]
(function(){try{var s,a,i,j,r,c,l,b=document.getElementsByTagName("script");l=b[b.length-1].previousSibling;a=l.getAttribute('data-cfemail');if(a){s='';r=parseInt(a.substr(0,2),16);for(j=2;a.length-j;j+=2){c=parseInt(a.substr(j,2),16)^r;s+=String.fromCharCode(c);}s=document.createTextNode(s);l.parent... 阅读全帖 |
|
j****j 发帖数: 40 | 46 Top insurance company is hiring. 有兴趣的请给我站内发信,可以帮助内推。
Requirements:
· 7 years of actuarial experience
· Associate of the Society of Actuaries (ASA) required, Fellow of
the Society of Actuaries designation (FSA) preferred
· Strong knowledge of experience study methods, including
evaluating relevance, credibility and data quality preferred
· Knowledge of GAAP and Stat financial reporting preferred,
knowledge of GAAP or Stat financial reporting required
· Ex... 阅读全帖 |
|