由买买提看人间百态

topics

全部话题 - 话题: context
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
l*****o
发帖数: 214
1
I am maintaining a legacy SDK. The SDK will behave differently for different
platform. It's using a static variable and requires the static variable to
be created before any API call like the following:
Example for static variable (OLD CODE):
SDKContext.init();
VideoManager manager = new VideoManager();
public void VideoManager#search() {
SDKContext.search();
}
Components like VideoManager are all over the place. My gut feeling tells me
I should use Facade pattern instead, but can't be sure.... 阅读全帖
b***e
发帖数: 1419
2
来自主题: Programming版 - 有人用Haskell吗
That's exactly the point. Braces are truly needed, but braces are:
NON-CONTEXT-SENSITIVE
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! So this is a plug-and-play thing.
Spaces/tabs are context-sensitive, which means, how many spaces are there
depends on how many spaces there are already in the context. So this is a
fuked-up thing.
x****u
发帖数: 44466
3
来自主题: Programming版 - 写给对系统感兴趣的人
自己看看定义,然后上来承认一声错了不丢人。
http://en.wikipedia.org/wiki/Context_switch
User and kernel mode switching
When a transition between user mode and kernel mode is required in an
operating system, a context switch is not necessary; a mode transition is
not by itself a context switch. However, depending on the operating system,
a context switch may also take place at this time.

拜托
t*****s
发帖数: 416
4
来自主题: Programming版 - 写给对系统感兴趣的人
拜托您不清楚的就别说,不要误导人了好不好。
放你自己的贴里瞎说也就算了,放我的贴里我不纠正还得负连带责任。
所谓context switch就是在同一颗CPU上发生的事情。switch上去的用户进程和switch
下来的用户进程当然是在同一个CPU上跑的。只不过被switch下来的进程一会儿可能又
会被其他CPU switch上去。
从整体系统上看,每个CPU上都有一个scheduler,但是他们调度的范围都是整个系统的
所有进程。你这种“Context Switch后会根据任务调度策略选择一个最合适的地方跑“
的说法根本就是概念不清把两次context switch混成一次说的结果。
至于内核态根本没有什么所谓的说来话长,一个用户态进程call一个系统调用,系统调
用一定是在同一个CPU上直接执行。除非系统调用本身有异步操作,那样的话系统调用
发出异步请求之后会call scheduler,然后suspend保存到内存里去,一会儿被哪个CPU
上的scheduler叫醒才会不一定。
N******K
发帖数: 10202
5
如果 这个 context object 仅仅是包含了 所有类实例的shared_ptr 还是没有解决问题
如果有循环链接,这些类实例不会被delete,除非context object被delete了
如果有循环链接形成孤岛 要根据连接图进行删除操作 这样可以做到实时删除无用垃
圾 也就是context object要包含类实例的连接图 这样的话,就相当于一个GC
方案1:
每当删除一个类实例 更新连接图 检查一下是否有孤岛 如果有 就删除
问题: 每次都查图 费时
有什么比较好的方案?

impossible
is
one
N******K
发帖数: 10202
6
根据 context object的想法 我轮了一个
方法1 测试:
for循环 100000000 (8个零) 次
{
new 一个 object
注册 object 到 context object
delete 这个 object
//自动从 context object 删除object记录
}
方法2 测试:
for循环 100000000 (8个零) 次
{
new 一个 object

delete 这个 object
}
方法3 测试:
for循环 100000000 (8个零) 次
{
生成一个 stack object
//{}结束 自动删除
}
release 模式 测试
时间
方法 1 : 48 秒
方法 2 : 6 秒
方法 3 : 1 秒
还可以 主要用来做计算 性能还可以

impossible
is
one
z****e
发帖数: 54598
7
来自主题: Programming版 - android上几个常用的image处理方法
居然官方api里面没有找到
嗯,自己按照stackoverflow上的写了几个
其中一个是horizontal flip
还有一个是用最小内存消耗的方式读取图片到内存
default的8888格式吃内存太离谱了
还有就是android居然限制一个app只能16m
我插,让我想起小时候玩sfc,老板拿个磁盘一点一点读
也就只有16m
private static Map rectCache;
static {
rectCache = new HashMap();
}
public static void drawImage(Canvas canvas, Bitmap bitmap, Rect source,
Rect dest, Paint paint, boolean horizontalRotate) {
if (horizontalRotate) {
if (rectCache.get(dest) == null) {
re... 阅读全帖
t**********s
发帖数: 930
8
只找到了一个 catalina.properties:
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unles... 阅读全帖
m***r
发帖数: 359
9
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-06
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-06/short.html
1) 【深度讲解Python Decorators和Context Managers】 by @Python传送门
关键词:基础, 博客
深度讲解Python Decorators和Context Managers [1]
[1] https://codefisher.org/catch/blog/2015/02/10/python-decorators-and-
context-managers/?utm_content=bufferd7135&utm_medium=social&utm_source=
twitter.com&utm_campaign=buffer
2) 【SciPy'13上用Python做统计数据分析的Tutorial】 by @爱可可-爱生活
关键词... 阅读全帖
l******t
发帖数: 55733
10
来自主题: Programming版 - Scala的map和flatmap什么区别?

我喜欢用context。context处理context内部的事,你处理你的事。
l*s
发帖数: 11
11
来自主题: Programming版 - Python的With語句嚇著我了
沒寫過Python代碼,看別人的程序裡面有很多with open(file) as f這類的語句,一下
子把我嚇住了。Google了半天,原來就是C++裡面的RAII啊!Python裡面叫做Context
Managers。搞得這麼花裡胡哨的有什麼用呢?這樣的Context Managers的生存週期因為
Garbage Collection而不能確定,遠不如C++來得簡單直接精確,況且RAII是OOP的原生
特性,Python後來添加這個Context Managers純粹就是玩一些語法格式上的遊戲,無甚
用處。
z****e
发帖数: 54598
12
来自主题: Programming版 - coroutine comes to Java - Project Loom
import io.vertx.core.Context
import kotlinx.coroutines.experimental.CoroutineDispatcher
import kotlin.coroutines.experimental.CoroutineContext
open class VertxContextDispatcher(val vertxContext: Context, val vertxThread
:Thread) : CoroutineDispatcher() {
override fun dispatch(context: CoroutineContext, block: Runnable) {
if (Thread.currentThread() !== vertxThread) vertxContext.
runOnContext { _ -> block.run() }
else block.run()
}
}
关键的一个类,确保coroutine在vertx thread上运行
3.5中这... 阅读全帖
a**e
发帖数: 5794
13
来自主题: TeX版 - 编section号的一个问题
LaTeX是基于TeX的一些宏。Knuth本人理论水平很高,实现能力稍弱。
所以他的TeX提供了很好的算法和发动机(engine),但是语法比较
原始、繁琐。
Lamport把TeX封装、修饰了一下,这就是LaTeX。它提供了较好的格
式(format)。其他人开发了很多基于这种格式的宏包(package)。
TeX的直接输出是DVI,后来有人把它扩展为pdfTeX,可以直接输出
PDF。后来人们给pdfTeX加上了对一种脚本语言Lua的支持,也就是
LuaTeX
TeX由于历史的局限,只能处理8位字符。所以后来出现了XeTeX,支
持Unicode和OpenType等。
所以发动机端目前有TeX, pdfTeX, LuaTeX和XeTeX。格式端有LaTeX
及其变种XeLaTeX,还有ConTeXt。LuaTeX目前只能和ConTeXt一起用,
而XeTeX可以和XeLaTeX、ConTeXt混用。
我现在用XeTeX和XeLaTeX,因为它们是三个代表、浴室拘禁的。
在发动机和格式之上有个更高层的概念,发行包(distribution)。
这个层次的有MikTeX, TeXLiv
m******5
发帖数: 1383
14
来自主题: Biology版 - 求助,chemokine CXCL family factors
最近作microarray数据(in the context of development )
遇到几个比较有意思的CXCL family ,包括cxcl1, cxcl5等上调,下调
在网上查了查文章,似乎cxcl family ligand很多人都是在免疫学的context下研究的
,比较少看见在development biology的context下做的
所以想问问cxcl family在development里有什么研究成果?最好推荐一些好的综述,非
常感谢!!!
z*t
发帖数: 863
15
Beutler得奖,Medzhitov会不会有意见?
http://www.sciencedirect.com/science/article/pii/S1074761309002
Ruslan Medzhitov
This year marks the 20th anniversary of a publication (Janeway, 1989) that
in many ways revolutionized our understanding of the immune system. As part
of the proceedings of the Cold Spring Harbor Symposium on Immune Recognition
, the paper authored by the late Charles A. Janeway, Jr. was not a standard
peer-reviewed publication. In fact, Charlie used to refer to it as “the
best paper I've ... 阅读全帖
s******a
发帖数: 472
16
http://www.cell.com/molecular-cell/fulltext/S1097-2765(11)00331
Fifty Years after Jacob and Monod: What Are the Unanswered Questions in Molecular Biology?
=====================================================================
Tomorrow's Molecular Biology
Marc W. Kirschner
Harvard University
Today, the term molecular biology has a rather prosaic sound. After all,
there is little in contemporary biology that isn't molecular. It's hard to
remember that 50 years ago, molecular biology was distinctly ... 阅读全帖
P****D
发帖数: 11146
17
原始出处是知乎,不注册看不了。这个似乎是有心人整理过的比较精彩的回帖。虽然行
业和统计差得远,但这种面试的风格,考虑问题的方式,面对压力的反应,与他人沟通
的技巧,妾认为是值得各行各业的人深思的。他山之石可以攻玉,希望对大家有帮助。
=======================================
http://leezhong.com/util/zhihu-view/?url=question/19602759
面试豆瓣产品经理的题目,你能答出来?
经过长达一周的时间,我终究还是没能弄明白这道题目,在我面试史上那个光灿灿的问
题!
话说给豆瓣投了移动产品经理职位的简历,当天收到人力回信,让提交一个豆瓣社区或
是类街旁LBS产品的研究报告,心想,哇!“豆瓣”,多么金光闪闪的互联网招牌,不
能怠慢呀。于是开始细心收集LBS的相关数据、案例,觉得这还不够,又自己用
Fireworks画了一个原型,提出的方案是结合豆瓣同城,如何能够让用户满意又能赚钱
的LBS方案。
准备完毕,让在豆瓣的老朋友推荐过去(理论上应该提升被面试的几率),果然,当天
人力就约了面试,于是噩梦开场了..... 阅读全帖
x**8
发帖数: 1939
18
今年美国大选,共和党候选人Trump,人品低下为世人不齿,
为了唤起华裔的注意,本人在发帖时直接引用Trump的语言: Grab them by the pussy
等下流词语,
的确这些词语非常下流,
但是,在今年大选的context之中,这些词语无法回避,回避这些词语就等于掩耳盗铃
,不突出这些下流词语,就体现不出参选人Trump的下流低贱,
USAnews版副TFollowerII以“不当言论”为理由封禁本人id xy18,“不当言论”的判
断在此context下是错误的,在今年大选的context之中,这些词语无法回避,回避这些
词语就等于掩耳盗铃,
请详细斟酌,谢谢!
x**8
发帖数: 1939
19
今年美国大选,共和党候选人Trump,人品低下为世人不齿,
为了唤起华裔的注意,本人在发帖时直接引用Trump的语言: Grab them by the pussy
等下流词语,
的确这些词语非常下流,
但是,在今年大选的context之中,这些词语无法回避,回避这些词语就等于掩耳盗铃
,不突出这些下流词语,就体现不出参选人Trump的下流低贱,
USAnews版副TFollowerII以“不当言论”为理由封禁本人id xy18,“不当言论”的判
断在此context下是错误的,在今年大选的context之中,这些词语无法回避,回避这些
词语就等于掩耳盗铃,
请详细斟酌,谢谢!
k***e
发帖数: 7933
20
来自主题: _voip版 - integrate google voice with asterisk
这是sip.conf, SIPID,SIPPassword和SIPNUMBER
都是我从sipgate的账户里面来的。
[general]
register => SIPID:S*********[email protected]/SIPNUMBER
disallow=all
allow=ulaw
context=default
[1000]
type=friend
host=dynamic
secret=1234
context=from-internal
allow=ulaw
qualify=yes
port=5060
nat=no
dtmfmode=rfc2833
canreinvite=no
[SipGate]
disallow=all
username=SIPID
type=peer
secret=SIPPassword
nat=yes
insecure=invite
host=sipgate.com
fromuser=SIPID
fromdomain=sipgate.com
context=ext-did
canreinvite=no
caninvite=no
allow=ulaw
r****t
发帖数: 10904
21

其实我觉得在 ata 上做的修改越少越好。还是在 extensions.conf 里面改更好些。
这个 confused me a lot:in sip.conf [provider] 里面的 context= 控制 incoming
call 的 context, 但是这节里面大多数东西都是为了 outbound call 设置的,如果
只是为了接电话+通过 GV 打电话都可以不要,只要
[gizmo]
type=peer
context=from-gizmo
host=proxy01.sipphone.com
就够了,最多加个 qualify=yes, 视情况加 nat=yes
莫非是 thread? 不知道了。。
g**d
发帖数: 723
22
来自主题: _voip版 - Asterisk 1.4, GV call out problem
asterisk 1.4, 拨出响很久音乐 主观感觉超过30秒, 然后听见回拨。 用sip debug
view看见dial in, 但是按什么都接不到, 然后就说busy.
sip.conf
[general]
register => [SIPID]:[SIPPASS]@sipgate.com/[SIP_NUM]
disallow=all
allow=ulaw
context=default
[1000]
type=friend
host=dynamic
secret=1234
context=from-internal
allow=ulaw
qualify=yes
port=5060
nat=no
dtmfmode=rfc2833
canreinvite=no
[SipGate]
disallow=all
username=[SIPID]
type=peer
secret=[SIPPASS]
nat=yes
insecure=invite
host=sipgate.com
fromuser=[SIPID]
fromdomain=sipgate.com
context=ext-did
i**w
发帖数: 883
23
来自主题: _voip版 - caller id?
sip_extensions.conf
=====================================
[1000]
type=friend
host=dynamic
secret=1234
context=outgoing
allow=ulaw
qualify=yes
port=5060
nat=no
dtmfmode=rfc2833
canreinvite=no
callgroup=1
pickupgroup=1-2
[1001]
type=friend
host=dynamic
secret=1234
context=outgoing
allow=ulaw
qualify=yes
port=5060
nat=no
dtmfmode=rfc2833
canreinvite=no
callgroup=1
pickupgroup=1-2
[1002]
type=friend
host=dynamic
secret=1234
context=outgoing
allow=ulaw
qualify=yes
port=5060
nat=no
dtmfmode=rfc2833
ca
r****t
发帖数: 10904
24
http://www.voip-info.org/wiki/view/Asterisk+cmd+Dial
# g: When the called party hangs up, exit to execute more commands in the
current context.
# G(context^exten^pri): If the call is answered, transfer both parties to
the specified context and extension. The calling party is transferred to
priority x, and the called party to priority x+1. This allows the dialplan
to distinguish between the calling and called legs of the call (new in v1.2).
# A(x): Play an announcement (x.gsm) to the called part
k****t
发帖数: 2288
25
来自主题: _voip版 - 在conf文件中使用template
这些天在认真补习astersik的经典书 asterisk the future of telephony
里面有讲到template这个东西,看来不错。
比如在sip。conf中有如下:
[1000]
type=friend
context=internal
host=dynamic
disallow=all
allow=ulaw
dtmfmode=rfc2833
maibox=1000
secret=AllYourSetsAreBelongToUs
[1001]
type=friend
context=internal
host=dynamic
disallow=all
allow=ulaw
dtmfmode=rfc2833
maibox=1001
secret=AllYourSetsAreBelongToUs
[1002]
type=friend
context=internal
host=dynamic
disallow=all
allow=ulaw
dtmfmode=rfc2833
maibox=1002
secret=AllYourSetsAreBelongToUs
如果是
p**i
发帖数: 688
26
来自主题: _voip版 - asterisk 请教
我的理解你的已经配置好的sipgate号码应该有个SIP trunk/user/peer
它的接听应该有个context假设context=gv-inbound-1000
另外一个sipgate的号码的SIP trunk/user/peer里也用context=gv-inbound-1000就行了
p**i
发帖数: 688
27
来自主题: _voip版 - asterisk 请教
应该可以,如果你的gv-inbound的context有check CALLERID. 你不妨试一下
如果你的gv-inbound的context没有check CALLERID, 需要再把context优化
普通的incoming call不需要走gvoice的setup
i**w
发帖数: 883
28
来自主题: _voip版 - OBIHAI最省事
回拨&DISA:
context answer-with-option {
s => {
Noop(CALLBACK flag: ${DB(OPTIONS/CALLBACK)});
if ("${DB(OPTIONS/CALLBACK)}" == "1") {
Set(caller=${CALLERID(num)});
Noop(${caller});
Set(callbackNum=${SHELL(/etc/asterisk/scripts/callback -get ${caller})});
Noop(${callbackNum});

if (${callbackNum} != -1) {
Noop(call back to ${callbackNum});
System(/etc/asterisk/scripts/callback -... 阅读全帖
r****t
发帖数: 10904
29
这个办法没有用 call file, 用 call file 应该也可以。
in /etc/cron.monthly:
#!/bin/sh
asterisk -rx 'originate LOCAL/MY_IPKALL_NUMBER@outbound-gv extension s@say-
hello'
in extensions.conf or any file included by it:
[say-hello]
exten => s,1,Answer
exten => s,n,Background(hello)
exten => s,n,Wait(5)
exten => s,n,Hangup()
这样自动打出就设好了,自动 pick up 需要修改 ipkall 打进的 context.
我这叫做 [from-ipkall] 需要做判断,(以下把your-gv-number-used-to-make-this-call 改成你的 gv 号就行),实际上这个 context 里面并没有用到任何 ipkall 的号码,所以适用于任何需要周期性的打入来保持使用的 voip 帐号,只要... 阅读全帖
c**s
发帖数: 771
30
I guess you can use multiple GV accounts just by using Asterisk, but without Sipgate at all.
Do something like the following:
In Gtalk.conf,
; configure multiple (n) GV gtalks
[GV_account_1]
username=G*********[email protected]
...
context=google_inbound_1
connection=connection_1
...
[GV_account_2]
username=G*********[email protected]
...
context=google_inbound_2
connection=connection_2
...
[GV_account_n]
username=G*********[email protected]
...
context=google_inbound_n
connection=connection_n
...
; end of gtalk.... 阅读全帖
h****f
发帖数: 200
31
看看你的gtalk.conf
在[general]下添上你两个GV在extension.conf里的用的context,比如:
context=google1
context=google2
m******t
发帖数: 4077
32
gtalk.conf
----------------
[general]
context=google-in ; Context to dump call into
allowguest=yes
[guest] ; special account for options on guest account
disallow=all
allow=ulaw
[chihuono1-gtalk]
username=c*******[email protected]
disallow=all
allow=ulaw
context=google-in
connection=chihuono1

t********r
发帖数: 4908
33
☆─────────────────────────────────────☆
izze (凉拌豆渣) 于 (Fri Jun 11 20:03:21 2010, 美东) 提到:
【 以下文字转载自 Parenting 讨论区 】
发信人: littleice (家有两宝:狗娃猪仔), 信区: Parenting
标 题: 以儿童的角度来看儿童
发信站: BBS 未名空间站 (Fri Jun 11 10:41:21 2010, 美东)
很多时候,我们做父母的挫折感其实不是来自于孩子的行为,而是来自于自己。为什么
这么说?很多时候,父母从成人的角度去看孩子,而不是从孩子的角度看孩子,然后和
孩子的互动就不得法,然后就生气就焦虑。事实上,如果我们能够了解孩子各个发展阶
段的规律,我们对孩子某些行为的看法就会改变,也许会变得更宽容,我们自己也不会
那么焦躁。
比如说,6,7个月的孩子喜欢丢东西。有的妈妈就觉得这很讨厌,或者怕孩子会养成丢
玩具的习惯。其实这个阶段,孩子熟悉了自己的身体,就开始对周围的物体感兴趣。他
们通过丢玩具,观察物体的移动,观察自己的动作和周围物体的关系,观察空... 阅读全帖
g********n
发帖数: 2314
34
【 以下文字转载自 SanFrancisco 讨论区 】
发信人: croco (小风子), 信区: SanFrancisco
标 题: 房坑:湾区Million House的数量高于年收入超过20万家庭的数量
发信站: BBS 未名空间站 (Wed Jul 1 11:57:15 2009, 美东)
事实说话:
Million House的数量:275,814
http://factfinder.census.gov/servlet/ADPTable?_bm=y&-context=ad
年收入超过20万的:246,154
http://factfinder.census.gov/servlet/ADPTable?_bm=y&-context=ad
另外我们老中的人数大大高于老印啊
http://factfinder.census.gov/servlet/ADPTable?_bm=y&-context=ad
C***l
发帖数: 2625
35
来自主题: ChinaNews版 - 撑粤语的同学们也不要过于冲动
Saying "those who cannot understand Cantonese should go back to their
village" is too aggressive. A lot of mild supporters from other provinces
are irritated by this.
You may argue this phrase has its context. However, people look at sentences
out of context all the time. Now it is us who are trying to make our points
valid, so I think we at least need to make friends instead of enemies.
a******n
发帖数: 280
36
http://www.buffalorising.com/2010/05/shen-yun-a-universal-theme
Shen Yun a Universal Theme (a reader responds)
buffalo rising
1 1 Votes
A response to The Buffalo News' Review of May 27th's Shen Yun performance
By: Cathy Skora*
I am puzzled how the reviewer of Shen Yun Dance Company for the Buffalo News
' Gusto on Friday May 28, 2010 missed the entire point and theme of this
performance. The evening was rich with Chinese dance, music, and culture.
The dancers were flawless and without exception o... 阅读全帖
d*b
发帖数: 21830
37
来自主题: ChinaNews版 - [合集] 想问紫外线家族
☆─────────────────────────────────────☆
hsh (三胡) 于 (Tue Feb 8 11:09:57 2011, 美东) 提到:
你们往这里转垃圾是什么目的?
☆─────────────────────────────────────☆
hsh (三胡) 于 (Tue Feb 8 11:41:20 2011, 美东) 提到:
只要没有诚恳向我本人道歉,我见到紫外线家族来这里发垃圾就马上办你鸭的
☆─────────────────────────────────────☆
hairi (搞一个女机器人当情妇) 于 (Tue Feb 8 11:42:03 2011, 美东) 提到:
你是不把这里变成沙龙誓不罢休

☆─────────────────────────────────────☆
hsh (三胡) 于 (Tue Feb 8 11:43:22 2011, 美东) 提到:
他骂我了,嘴脏得比茅坑还脏,明白吗?
☆─────────────────────────────────────☆
... 阅读全帖
D*V
发帖数: 3096
38
http://oecdeducationtoday.blogspot.fr/2013/12/are-chinese-cheat
by Andreas Schleicher
Deputy Director for Education and Skills and Special Advisor on Education
Policy to the OECD's Secretary General
Whenever an American or European wins an Olympic gold medal, we cheer them
as heroes. When a Chinese does, the first reflex seems to be that they must
have been doping; or if that’s taking it too far, that it must have been
the result of inhumane training.
There seem to be parallels to this in educat... 阅读全帖
m*********k
发帖数: 10521
39
=====================================================================
=========================Nature质疑叶诗文事件========================
==============================饶毅致信===============================
http://www.mitbbs.com/mitbbs_article_t.php?board=Biology&gid=31
发信人: ipdang (ip), 信区: Biology
标 题: 饶毅致《自然》杂志总编的信
发信站: BBS 未名空间站 (Sat Aug 4 00:18:14 2012, 美东)
http://blog.sciencenet.cn/blog-2237-598917.html
致《自然》杂志总编的信:有关叶诗文的新闻报道 精选
英文原信附后,大意如下:
斐尔,
你可能因Ewen Callaway对叶诗文的报道而被email狂炸,过去二十小时,给... 阅读全帖
m*******a
发帖数: 165
40
Out of the context, he sounds snobbish and stupid. However, given the context, he simply improvised in response to "no show" of Korean guys. Maybe a little inappropriate. Overall, he did just fine.
Pls don't make a big deal of this "p-size" thing.

觉到奥巴马的弱势,却感觉到中国多了一位好有气势的记者,无理,狂妄。
总统一决高下,争辩是非。作为一个政治人物,奥巴马有他的睿智,轻轻的讽刺了我们
的记者,你的英文比我汉语说得好。在场的人都知道答记者问是有秩序的,不然不是乱
成了一锅粥了。
国记者,也不知或者不管韩国记者同意不同意,他就要代表亚洲想提问奥巴马总统一些
问题。
京的中国的政治家也不敢这么说呀,你敢说,你以为这是在中国的地面,没有人和你辩
论。
国和韩国不至于好到不分彼此,不把中国人当外人的分吧?
形象都给你丢尽了,狂妄自大,无颜无耻... 阅读全帖
w**********2
发帖数: 764
41
来自主题: Headline版 - Wikipedia打烊24小时抗议SOPA和PIPA .
To: English Wikipedia Readers and Community
From: Sue Gardner, Wikimedia Foundation Executive Director
Date: January 16, 2012
Today, the Wikipedia community announced its decision to black out the
English-language Wikipedia for 24 hours, worldwide, beginning at 05:00 UTC
on Wednesday, January 18 (you can read the statement from the Wikimedia
Foundation here). The blackout is a protest against proposed legislation in
the United States – the Stop Online Piracy Act (SOPA) in the U.S. House of
Repre... 阅读全帖
s******r
发帖数: 5309
42
来自主题: History版 - 母语对 人思维方式的 影响
Chinese is a highly contextual language, where the message has to be
understood within the context of the manuscript. Most western languages
emphasis sentences and their independence of the context, and thus require a
lavish grammatical structure so the true meaning of a sentence can be
understood on it's own.
It is arguable that Chinese is a more economical language because of it's
lack of redundancy. However, this require the user of Chinese language to
be extra alert of any multiplicity in
d*****u
发帖数: 17243
43
你对一个学科完全不了解,还是虚心一点好
否则除了自取其辱外不知道怎么形容
你不会幼稚到以为在这个bbs上充牛逼有人会care吧
。。。。。。
说尼人没有语言的学者,主要有两方面的证据
一是喉部等生理结构跟智人不同,似乎不利于说话
当然这个疑点很多
另外就是头骨的特征,比如智人的Broca's area更大等等
语言这东西很可能也是进化的副产品
有些学者强调“递归”思维在语言里的重要性
说这个最初是跟人类迁徙活动等相关的
人类自然语言的语法大致都是context-free grammar
学过计算理论或编译原理的就知道
非洲一些语言大概regular grammar就能描述
也有极少数语言(瑞士德语)要context-sensitive grammar
不是所有的大脑都有这个“操作系统”甚至“硬件”来完成这些计算
不过这都是纯从句法来说,没考虑句法到语义的map
而理论意义大于实际意义
w*********s
发帖数: 2136
44
【 以下文字转载自 ChinaNews 讨论区 】
发信人: whiteclouds (/ 参考消息 /), 信区: ChinaNews
标 题: Tibet, the 'great game' and the CIA
发信站: BBS 未名空间站 (Wed Mar 26 22:07:20 2008)
Tibet, the 'great game' and the CIA
by Richard M Bennett
Global Research, March 25, 2008 Asia Times
http://www.globalresearch.ca/index.php?context=va&aid=8442
Given the historical context of the unrest in Tibet, there is reason to
believe Beijing was caught on the hop with the recent demonstrations for the
simple reason that their planning took
b*****l
发帖数: 9499
45
来自主题: Military版 - 漢語的一大缺點:同音詞太多
语法简单也有问题啊,那就是单位信息含量低。
你看,拉丁文随便你怎么变顺序,凭着变格,不影响意思的表达。当然了,如果在信息
传递过程中没有噪音,你可以说这是浪费了 -- 其实也不算浪费,因为变更次序可以改
变强调的部分 -- 但是,在现实条件下,拉丁文就是比汉语的抗干扰能力强。
也是各有优劣。更应该说,语法结构的复杂程度是和语言使用的 context 相契合的。
所以,现在这种语法和语音的发展趋势,其背后的语言使用的 context 的变化是什么
,才是一个有趣的问题。

语,
t*****M
发帖数: 597
46
这是根据所谓的大汉族主义的吧
那个context下很正常
你用现在的context当然可以给谭一顶大汉奸的帽子
m**********r
发帖数: 1568
47
你的归化,是汉语翻译的问题好不好
明朝就有改土归流了,不假,赵尔丰是清朝人也不假。但是你对西藏说改土归流,除了
赵尔丰那次,我实在想不出别的了。当然,你澄清不是这样的,我也接受。但不能怨我
吧?
按照你的逻辑,达赖喇嘛有14世,几百年前就有了,十四世达赖喇嘛是几百年前的人?
达赖喇嘛只能用于指十四世达赖喇嘛?如果不是的话,为什么不停的“达赖集团”?是
不是把古人一起骂了?你觉得这逻辑荒唐么?
你明明在一个context下说这个词,现在要求我把它放到另一个context下去理解?你又
没澄清指明是明朝的改土归流。你说的是对西藏改土归流。历史上就只有赵尔丰那么一
次,那我还能想什么?
m**********n
发帖数: 27535
48
LONDON (AP) — What's a tweet, between friends? The law says sometimes it's
a threat.
One man thought he was just bantering with his pals when he joked about
blowing an airport sky-high. Another was reacting to a radio phone-in when
he mused about stoning a journalist to death.
Because they made their throwaway comments on Twitter, both are in legal
trouble.
Their cases have outraged civil libertarians and inflamed the debate about
the limits of free speech in a Web 2.0 world. The Internet increa... 阅读全帖
M**d
发帖数: 4418
49
来自主题: Military版 - 如何和FBI打交道
各位小将最好看看,有个心理准备。没什么大不了的,除非你真的有料。
注意里面有一句:it is a serious crime to lie or provide false information to
the FBI agents
http://www.jannah.org/articles/fbi.html
IF YOU ARE VISITED BY THE FBI
A brochure published by American Muslim Council (AMC)
It is not unusual for federal agencies to conduct investigations into
individuals and organizations that actively oppose United States policy in
the Muslim World. The FBI is the primary agency responsible for political
intelligence gathering of this kind. In ... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)