一个女程序员twitter上发了一条tweet:
昨晚梦见男朋友和别的女人在逛街,梦里我的第一反应是查源代码…结果调试半天查不出来为什么显示的是那个女人不是我,最后含泪把那个女人给注释掉了,再一运行就是我男朋友自己逛街了…醒来囧字脸呆了很久…囧rz
评论:
1L
把那个女人的指针指向你即可
2L
谁让你把男朋友设成public的
3L
加个断点看看那女人是谁
4L
心真软,就该把他的接口屏蔽掉。//是我想多了么
5L
protected 逛街(youOnly)
6L
设计问题,应该采用单例模式
7L
没做回归测试
8L
标准做法是做个断言
9L
注释掉了逛街的参数不用改么
10L
不要忘记GC谢谢
11L
查一下Log,只逛街了吗/.
先创建一个名字为test_Sequence的序列,然后执行下列语句,
CREATE TABLE example1(
ID Number(4) NOT NULL PRIMARY KEY,
NAME VARCHAR(25),
PHONE VARCHAR(10),
ADDRESS VARCHAR(50));
create trigger "example1_tt" before insert
on "EXAMPLE1" for each row
declare
integrity_error exception;
errno integer;
errmsg char(200);
dummy integer;
found boolean;
begin
-- Column ""ID"" uses sequence Sequence_increase
select test_Sequence.Nextval INTO :new."ID" from dual;
-- Errors handling
exception
when integrity_error then
raise_application_error(errno, errmsg);
end;
需要注意的是不同的表共用同一个序列时,由于序列的是一个,所以不同表的自增会不连续,另外和SqlServer不同的还有,设置了这个以后主键是可以自己维护的,只有当主键为空时才会调用触发器,由序列产生自增值。
另外,pd自动生成的oracle的sql语句是包含双引号的,可能导致oracle权限的错误,错误提示是:ORA-00904:invalid identifier。
程序执行需要读取到安全敏感项必需在androidmanifest.xml中声明相关权限请求, 完整列表如下:
android.permission.ACCESS_CHECKIN_PROPERTIES
允许读写访问”properties”表在checkin数据库中,改值可以修改上传( Allows read/write access to the “properties” table in the checkin database, to change values that get uploaded)
android.permission.ACCESS_COARSE_LOCATION
允许一个程序访问CellID或WiFi热点来获取粗略的位置(Allows an application to access coarse (e.g., Cell-ID, WiFi) location)
android.permission.ACCESS_FINE_LOCATION
允许一个程序访问精良位置(如GPS) (Allows an application to access fine (e.g., GPS) location)
android.permission.ACCESS_LOCATION_EXTRA_COMMANDS
允许应用程序访问额外的位置提供命令(Allows an application to access extra location provider commands)
android.permission.ACCESS_MOCK_LOCATION
允许程序创建模拟位置提供用于测试(Allows an application to create mock location providers for testing)
android.permission.ACCESS_NETWORK_STATE
允许程序访问有关GSM网络信息(Allows applications to access information about networks)
android.permission.ACCESS_SURFACE_FLINGER
允许程序使用SurfaceFlinger底层特性(Allows an application to use SurfaceFlinger’s low level features)
android.permission.ACCESS_WIFI_STATE
允许程序访问Wi-Fi网络状态信息(Allows applications to access information about Wi-Fi networks)
android.permission.ADD_SYSTEM_SERVICE
允许程序发布系统级服务(Allows an application to publish system-level services).
android.permission.BATTERY_STATS
允许程序更新手机电池统计信息(Allows an application to update the collected battery statistics)
android.permission.BLUETOOTH
允许程序连接到已配对的蓝牙设备(Allows applications to connect to paired bluetooth devices)
android.permission.BLUETOOTH_ADMIN
允许程序发现和配对蓝牙设备(Allows applications to discover and pair bluetooth devices)
android.permission.BRICK
请求能够禁用设备(非常危险)(Required to be able to disable the device (very *erous!).)
android.permission.BROADCAST_PACKAGE_REMOVED
允许程序广播一个提示消息在一个应用程序包已经移除后(Allows an application to broadcast a notification that an application package has been removed)
android.permission.BROADCAST_STICKY
允许一个程序广播常用intents(Allows an application to broadcast sticky intents)
android.permission.CALL_PHONE
允许一个程序初始化一个电话拨号不需通过拨号用户界面需要用户确认(Allows an application to initiate a phone call without going through the Dialer user interface for the user to confirm the call being placed.)
android.permission.CALL_PRIVILEGED
允许一个程序拨打任何号码,包含紧急号码无需通过拨号用户界面需要用户确认(Allows an application to call any phone number, including emergency numbers, without going through the Dialer user interface for the user to confirm the call being placed)
android.permission.CAMERA
请求访问使用照相设备(Required to be able to access the camera device. )
android.permission.CHANGE_COMPONENT_ENABLED_STATE
允许一个程序是否改变一个组件或其他的启用或禁用(Allows an application to change whether an application component (other than its own) is enabled or not. )
android.permission.CHANGE_CONFIGURATION
允许一个程序修改当前设置,如本地化(Allows an application to modify the current configuration, such as locale. )
android.permission.CHANGE_NETWORK_STATE
允许程序改变网络连接状态(Allows applications to change network connectivity state)
android.permission.CHANGE_WIFI_STATE
允许程序改变Wi-Fi连接状态(Allows applications to change Wi-Fi connectivity state)
android.permission.CLEAR_APP_CACHE
允许一个程序清楚缓存从所有安装的程序在设备中(Allows an application to clear the caches of all installed applications on the device. )
android.permission.CLEAR_APP_USER_DATA
允许一个程序清除用户设置(Allows an application to clear user data)
android.permission.CONTROL_LOCATION_UPDATES
允许启用禁止位置更新提示从无线模块(Allows enabling/disabling location update notifications from the radio. )
android.permission.DELETE_CACHE_FILES
允许程序删除缓存文件(Allows an application to delete cache files)
android.permission.DELETE_PACKAGES
允许一个程序删除包(Allows an application to delete packages)
android.permission.DEVICE_POWER
允许访问底层电源管理(Allows low-level access to power management)
android.permission.DIAGNOSTIC
允许程序RW诊断资源(Allows applications to RW to diagnostic resources. )
android.permission.DISABLE_KEYGUARD
允许程序禁用键盘锁(Allows applications to disable the keyguard )
android.permission.DUMP
允许程序返回状态抓取信息从系统服务(Allows an application to retrieve state dump information from system services.)
android.permission.EXPAND_STATUS_BAR
允许一个程序扩展收缩在状态栏,android开发网提示应该是一个类似Windows Mobile中的托盘程序(Allows an application to expand or collapse the status bar. )
android.permission.FACTORY_TEST
作为一个工厂测试程序,运行在root用户(Run as a manufacturer test application, running as the root user. )
android.permission.FLASHLIGHT
访问闪光灯,android开发网提示HTC Dream不包含闪光灯(Allows access to the flashlight )
android.permission.FORCE_BACK
允许程序强行一个后退操作是否在顶层activities(Allows an application to force a BACK operation on whatever is the top activity. )
android.permission.FOTA_UPDATE
暂时不了解这是做什么使用的,android开发网分析可能是一个预留权限.
android.permission.GET_ACCOUNTS
访问一个帐户列表在Accounts Service中(Allows access to the list of accounts in the Accounts Service)
android.permission.GET_PACKAGE_SIZE
允许一个程序获取任何package占用空间容量(Allows an application to find out the space used by any package. )
android.permission.GET_TASKS
允许一个程序获取信息有关当前或最近运行的任务,一个缩略的任务状态,是否活动等等(Allows an application to get information about the currently or recently running tasks: a thumbnail representation of the tasks, what activities are running in it, etc.)
android.permission.HARDWARE_TEST
允许访问硬件(Allows access to hardware peripherals. )
android.permission.INJECT_EVENTS
允许一个程序截获用户事件如按键、触摸、轨迹球等等到一个时间流,android 开发网提醒算是hook技术吧(Allows an application to inject user events (keys, touch, trackball) into the event stream and deliver them to ANY window.)
android.permission.INSTALL_PACKAGES
允许一个程序安装packages(Allows an application to install packages. )
android.permission.INTERNAL_SYSTEM_WINDOW
允许打开窗口使用系统用户界面(Allows an application to open windows that are for use by parts of the system user interface. )
android.permission.INTERNET
允许程序打开网络套接字(Allows applications to open network sockets)
android.permission.MANAGE_APP_TOKENS
允许程序管理(创建、催后、 z- order默认向z轴推移)程序引用在窗口管理器中(Allows an application to manage (create, destroy, Z-order) application tokens in the window manager. )
android.permission.MASTER_CLEAR目前还没有明确的解释,android开发网分析可能是清除一切数据,类似硬格机
android.permission.MODIFY_AUDIO_SETTINGS
允许程序修改全局音频设置(Allows an application to modify global audio settings)
android.permission.MODIFY_PHONE_STATE
允许修改话机状态,如电源,人机接口等(Allows modification of the telephony state – power on, mmi, etc. )
android.permission.MOUNT_UNMOUNT_FILESYSTEMS
允许挂载和反挂载文件系统可移动存储(Allows mounting and unmounting file systems for removable storage. )
android.permission.PERSISTENT_ACTIVITY
允许一个程序设置他的activities显示(Allow an application to make its activities persistent. )
android.permission.PROCESS_OUTGOING_CALLS
允许程序监视、修改有关播出电话(Allows an application to monitor, modify, or abort outgoing calls)
android.permission.READ_CALENDAR
允许程序读取用户日历数据(Allows an application to read the user’s calendar data.)
android.permission.READ_CONTACTS
允许程序读取用户联系人数据(Allows an application to read the user’s contacts data.)
android.permission.READ_FRAME_BUFFER
允许程序屏幕波或和更多常规的访问帧缓冲数据(Allows an application to take screen shots and more generally get access to the frame buffer data)
android.permission.READ_INPUT_STATE
允许程序返回当前按键状态(Allows an application to retrieve the current state of keys and switches. )
android.permission.READ_LOGS
允许程序读取底层系统日志文件(Allows an application to read the low-level system log files. )
android.permission.READ_OWNER_DATA
允许程序读取所有者数据(Allows an application to read the owner’s data)
android.permission.READ_SMS
允许程序读取短信息(Allows an application to read SMS messages.)
android.permission.READ_SYNC_SETTINGS
允许程序读取同步设置(Allows applications to read the sync settings)
android.permission.READ_SYNC_STATS
允许程序读取同步状态(Allows applications to read the sync stats)
android.permission.REBOOT
请求能够重新启动设备(Required to be able to reboot the device. )
android.permission.RECEIVE_BOOT_COMPLETED
允许一个程序接收到 ACTION_BOOT_COMPLETED广播在系统完成启动(Allows an application to receive the ACTION_BOOT_COMPLETED that is broadcast after the system finishes booting. )
android.permission.RECEIVE_MMS
允许一个程序监控将收到MMS彩信,记录或处理(Allows an application to monitor incoming MMS messages, to record or perform processing on them. )
android.permission.RECEIVE_SMS
允许程序监控一个将收到短信息,记录或处理(Allows an application to monitor incoming SMS messages, to record or perform processing on them.)
android.permission.RECEIVE_WAP_PUSH
允许程序监控将收到WAP PUSH信息(Allows an application to monitor incoming WAP push messages. )
android.permission.RECORD_AUDIO
允许程序录制音频(Allows an application to record audio)
android.permission.REORDER_TASKS
允许程序改变Z轴排列任务(Allows an application to change the Z-order of tasks)
android.permission.RESTART_PACKAGES
允许程序重新启动其他程序(Allows an application to restart other applications)
android.permission.SEND_SMS
允许程序发送SMS短信(Allows an application to send SMS messages)
android.permission.SET_ACTIVITY_WATCHER
允许程序监控或控制activities已经启动全局系统中Allows an application to watch and control how activities are started globally in the system.
android.permission.SET_ALWAYS_FINISH
允许程序控制是否活动间接完成在处于后台时Allows an application to control whether activities are immediately finished when put in the background.
android.permission.SET_ANIMATION_SCALE
修改全局信息比例(Modify the global animation scaling factor.)
android.permission.SET_DEBUG_APP
配置一个程序用于调试(Configure an application for debugging.)
android.permission.SET_ORIENTATION
允许底层访问设置屏幕方向和实际旋转(Allows low-level access to setting the orientation (actually rotation) of the screen.)
android.permission.SET_PREFERRED_APPLICATIONS
允许一个程序修改列表参数PackageManager.addPackageToPreferred() 和PackageManager.removePackageFromPreferred()方法(Allows an application to modify the list of preferred applications with the PackageManager.addPackageToPreferred() and PackageManager.removePackageFromPreferred() methods.)
android.permission.SET_PROCESS_FOREGROUND
允许程序当前运行程序强行到前台(Allows an application to force any currently running process to be in the foreground.)
android.permission.SET_PROCESS_LIMIT
允许设置最大的运行进程数量(Allows an application to set the maximum number of (not needed) application processes that can be running. )
android.permission.SET_TIME_ZONE
允许程序设置时间区域(Allows applications to set the system time zone)
android.permission.SET_WALLPAPER
允许程序设置壁纸(Allows applications to set the wallpaper )
android.permission.SET_WALLPAPER_HINTS
允许程序设置壁纸hits(Allows applications to set the wallpaper hints)
android.permission.SIGNAL_PERSISTENT_PROCESSES
允许程序请求发送信号到所有显示的进程中(Allow an application to request that a signal be sent to all persistent processes)
android.permission.STATUS_BAR
允许程序打开、关闭或禁用状态栏及图标Allows an application to open, close, or disable the status bar and its icons.
android.permission.SUBSCRIBED_FEEDS_READ
允许一个程序访问订阅RSS Feed内容提供(Allows an application to allow access the subscribed feeds ContentProvider. )
android.permission.SUBSCRIBED_FEEDS_WRITE
系统暂时保留改设置,android开发网认为未来版本会加入该功能。
android.permission.SYSTEM_ALERT_WINDOW
允许一个程序打开窗口使用 TYPE_SYSTEM_ALERT,显示在其他所有程序的顶层(Allows an application to open windows using the type TYPE_SYSTEM_ALERT, shown on top of all other applications. )
android.permission.VIBRATE
允许访问振动设备(Allows access to the vibrator)
android.permission.WAKE_LOCK
允许使用PowerManager的 WakeLocks保持进程在休眠时从屏幕消失( Allows using PowerManager WakeLocks to keep processor from sleeping or screen from dimming)
android.permission.WRITE_APN_SETTINGS
允许程序写入API设置(Allows applications to write the apn settings)
android.permission.WRITE_CALENDAR
允许一个程序写入但不读取用户日历数据(Allows an application to write (but not read) the user’s calendar data. )
android.permission.WRITE_CONTACTS
允许程序写入但不读取用户联系人数据(Allows an application to write (but not read) the user’s contacts data. )
android.permission.WRITE_GSERVICES
允许程序修改Google服务地图(Allows an application to modify the Google service map. )
android.permission.WRITE_OWNER_DATA
允许一个程序写入但不读取所有者数据(Allows an application to write (but not read) the owner’s data.)
android.permission.WRITE_SETTINGS
允许程序读取或写入系统设置(Allows an application to read or write the system settings. )
android.permission.WRITE_SMS
允许程序写短信(Allows an application to write SMS messages)
android.permission.WRITE_SYNC_SETTINGS
允许程序写入同步设置(Allows applications to write the sync settings)
android平台上的权限许可分得很细,如果软件无法正常执行时看看是不是缺少相关的permission声明,最终我们还需要使用 android sign tools签名生成的apk文件。
通过EditText的layout xml文件中的相关属性来实现:
1. 密码框属性 android:password="true" 这条可以让EditText显示的内容自动为 星号,输入时内容会在1秒内变成*字样。
2. 纯数字 android:numeric="true" 这条可以让输入法自动变为数字输入键盘,同时仅允许0-9的数字输入
3. 仅允许 android:capitalize="cwj1987" 这样仅允许接受输入cwj1987,一般用于密码验证
下面是一些扩展的风格属性
android:editable="false" 设置EditText不可编辑
android:singleLine="true" 强制输入的内容在单行
android:ellipsize="end" 自动隐藏尾部溢出数据,一般用于文字内容过长一行无法全部显示时。
public boolean onTouchEvent(MotionEvent event) {
//获得触摸的坐标
float x = event.getX();
float y = event.getY(); switch (event.getAction())
{
//触摸屏幕时刻
case MotionEvent.ACTION_DOWN:
break;
//触摸并移动时刻
case MotionEvent.ACTION_MOVE:
break;
//终止触摸时刻
case MotionEvent.ACTION_UP:
break;
}
return true;
}
看穿世事,静养潜修,暑往寒来春复秋,百岁光阴不我留。
寄身清流,泛一扁舟;安排卧榻,天地悠游。
寻什么名山胜景,登什么舞榭歌楼;
讲什么英雄豪杰功名富贵,
读什么《三坟》《五典》《八索》《九丘》。
到春来只需读李太白的《桃园序》,牛衣醉月、秉烛夜游;
到夏来只需读王羲之的《兰亭序》,茂林修竹、玉带清流;
到秋来只需读欧阳修的《秋声赋》,星月皎洁,银河横秋;
到冬来只需读孟浩然的《兴雅志》,踏雪寻梅、诗酒相酬。
雪压山头、梅占魁首,梅雪争春,闲持酒一瓯。
白雪诗、梅花酒,与老头陀促膝谈心情意相投。
道什么闲愁万斛,琴棋书画消长昼。
说什么封侯拜相,渔樵耕读过春秋。
看江山无边落木萧萧下,学高人南窗倨坐傲王侯。
回头看,名利场上多少痴迷客,扰扰攘攘,可叹无止休。
直羡他,野草溪边老钓翁,踏月归来,却道天凉好个秋。
“五七一工程”纪要
(一九七一年三月二十二─二十四)
(一)可能性
(二)必要性
(三)基本条件
(四)时机
(五)力量
(六)口号和纲领
(七)实施要点
(八)政策和策略
(九)保密和纪律
(一)可能性
◇ 9.2(指中共九届二中全会,1970年8月在庐山召开,会上毛、林分岐公开化。──编者注)后,政局不稳,统治集团内部矛盾尖锐,右派势力抬头
军队受压
十多年来,国民经济停滞不前
群众和基层干部、部队中下干部实际生活水平下降,不满情绪日益增长。敢怒不敢言。甚至不敢怒不敢言。
统治集团内部上层很腐败、昏庸无能。
众叛亲离。
(1)一场政治危机正在蕴(酝)酿,
(2)夺权正在进行。
(3)对方目标在改变接班人
(4)中国正在进行一场逐渐地和平演变式的政变。
(5)这种政变形式是他们惯用手法
(6)他们“故计(伎)重演”。
(7)政变正朝着有利於笔杆子,而不利於枪杆子方向发展。
(8)因此,我们要以暴力革命的突变来阻止和平演变式的反革命渐变。反之,如果我们不用“五七一”工程阻止和平演变,一旦他们得逞,不知有多少人头落地,中国革命不知要推迟多少年。
(9)一场新的夺权斗争势不可免,我们不掌握革命领导权,领导权将落在别人头上
◇ 我方力量
经过几年准备,在思想上、组织上、军事上的水平都有相当提高。具有一定的思想和物质基础。
在全国,只有我们这支力量正在崛起,蒸蒸日上,朝气勃勃。
革命的领导权落在谁的头上,未来政权就落在谁的头上,取得了革命领导权就取得了未来的政权。
革命领导权历史地落在我们舰队头上。(舰队以及下文的联合舰队等均为本文件起草者林立果等人的自称,这些名词以及后文中的“江田岛精神”等出自《啊,海军》和《山本五十六》等日本电影。──编者注)
和国外“五七一工程”相比,我们的准备和力量比他们充分得多、成功的把握性大得多
和十月革命相比,我们比当时苏维埃力量也不算小。
地理回旋余地大
空军机动能力强。
比较起来,空军搞五七一比较容易得到全国政权,军区搞地方割据。
◇ 两种可能性:
夺取全国政权,割据局面
(二)必要性、必然性
B─52(指毛泽东──编者注)好景不长,急不可待地要在近几年内安排后事。
对我们不放心。
如其束手被擒,不如破釜沉舟。
在政治上后发制人,军事行动上先发制人
我国社会主义制度正在受到严重威胁,笔杆子托派集团正在任意纂改、歪曲马列主义,为他们私利服务。
他们用假革命的词藻代替马列主义,用来欺骗和蒙蔽中国人民的思想
当前他们的继续革命论实质是托洛茨基的不断革命论,他们的革命对象实际是中国人民,而首当其冲的是军队和与他们持不同意见的人
他们的社会主义实质是社会法西斯主义
他们把中国的国家机器变成一种互相残杀,互相倾轧的绞肉机式的
把党内和国家政治生活变成封建专制独裁式家长制生活
当然,我们不否定他在统一中国的历史作用,正因为如此,我们革命者在历史上曾给过他应有的地位和支持。
但是现在他滥用中国人民给其信任和地位,历史地走向反面
实际上他已成了当代的秦始皇,为了向中国人民负责,向中国历史负责,我们的等待和忍耐是有限度的!
他不是一个真正的马列主义者,而是一个行孔孟之道借马列主义之皮、执秦始皇之法的中国历史上最大的封建暴君。
(三)基本条件
◇ 有利条件:
国内政治矛盾激化
危机四伏
──独裁者越来越不得人心,
──统治集团内部很不稳定,争权夺利、勾心斗角、几乎白热化。
──军队受压军心不稳 高级中上层干部不服、不满,并且握有兵权
──一小撮秀才仗势横行霸道,四面树敌 头脑发胀,对自己估计过高。
──党内长期斗争和文化大革命中被排斥和打击的高级干部敢怒不敢言。
──农民生活缺吃少穿
──青年知识分子上山下乡,等於变相劳改。
──红卫兵初期受骗被利用,已经发现充当炮灰,后期被压制变成了替罪羔羊
──机关干部被精简,上五七干校等於变相失业
──工人(特别是青年工人)工资冻结,等於变相受剥削。
国外矛盾激化
中苏对立。整苏联。
我们行动会得到苏联支持。
最重要的条件:我们有首长(指林彪──编者注)威信名望、权力和联合舰队的力量
从自然条件上讲,国土辽阔、回旋余地大,加之空军机动性强,有利於突袭、串联、转移,甚至於撤退。
◇ 困难
△目前我们力量准备还不足
△群众对B-52的个人迷信很深
△由於B-52分而治之,军队内矛盾相当复杂,很难形成被我们掌握的统一的力量。
△B-52身(深)居简出,行动神秘鬼(诡)窄(诈),戒备森严,给我们行动带来一定困难
(四)时机
敌我双方骑虎难下
目前表面上的暂时平衡维持不久,矛盾的平衡是暂时的相对的,不平衡是绝对的。
是一场你死我活斗争!只要他们上台,我们就要下台,进监狱、卫戍区。或者我们把他们吃掉,或者他们把我们吃掉。
◇ 战略上两种时机:
一种我们准备好了,能吃掉他们的时候;
一种是发现敌人张开嘴巴要把我们吃掉时候,我们受到严重危险的时候;这时不管准备和没准备好,也要破釜沉舟。
◇ 战术上时机和手段
△B-52在我手中,敌主力舰(指毛的主要助手──编者注)均在我手心之中。属於自投罗网式
△利用上层集会一网打尽
△先斩局部爪牙,先和B-52既成事实,逼迫B-52就范,
逼宫形式
△利用特种手段如毒气、细菌武器、轰炸、543、车祸、暗杀、绑架、城市游击小分队
(五)基本力量和可借用力量
◇ 基本力量
△联合舰队和各分舰队(上海、北京、广州)
△王、陈、江四、五军骨干力量(指王维国、陈励耘、江腾蛟以及他们控制的空四军,空五军──编者注)
△九师、十八师
△二十一坦克团
△民航(文革时民航由空军接管──编注)
△三十四师
◇ 借用力量:
国内
△二十军
△三十八军
△黄(指黄永胜──编者注)军委办事处
△国防科委
△广州、成都、武汉、江西、济南、新疆、西安
△社会力量、农民、红卫兵青年学生、机关干部、工人
国外:
苏联(秘密谈判)
美国(中美谈判)
借苏力量(箝)制国内外其他各种力量。
暂时核保护伞。
(六)动员群众口号、纲领
全军指战员团结起来!
全党团结起来!
全国人民团结起来!
打倒当代的秦始皇──B-52,
推翻挂着社会主义招牌的封建王朝,
建立一个真正属於无产阶级和劳动人民的社会主义国家!
对外:
全世界真正的马列主义者联合起来!
全世界无产阶级和被压迫民族联合起来!
全世界人民团结起来!
我们对外政策是坚持和平共处五项原则,承认现有的与各国的外交关系,保护使馆人员的安全。
全国人民团结起来,全军指战员团结起来,全党团结起来
用民富国强代替他“国富”民穷
使人民丰衣足食、安居乐业
政治上、经济上组织上得到真正解放
用真正马列主义作为我们指导思想,建设真正的社会主义代替B-52的封建专制的社会主义,即社会封建主义。
全国工人、农民、机关干部、各行各业要坚守岗位,努力生产,保护国家财富和档案,遵守和维护社会秩序。
因此,各地区、各单位、各部门之间,不准串联。
全国武装力量要服从统率部的集中统一指挥,坚决严厉镇压反革命叛乱和一切反革命破坏活动!
(七)实施要点
三个阶段
◇ 第一、准备阶段
(1) 计划
(2) 力量
△指挥班子
江、王、陈
△两套警卫处
公开的李松亭
秘密的上海小组负责。
新华一村(林立果等在上海的秘密据点──编者注)
教导队
△四、五军部队训练(地面训练)
△南空(指南京军区空军──编者注)直属师工作
(十师)
周建平负责
争取二十军
(江、王、陈)
──扩大舰队
──加速根据地建设 京、沪、杭、蜀、穗、
(3)物质准备
武器 领 自造
通讯器材(包括01工程)(指林立果主持设计的一种收发报机──编者注)
车辆
掌握他们仓库地点、只要军械库
(4)情报保障
掌握三个环节 搜集 分析 上报
◇ 第二阶段
实施阶段
奇袭式
一个先联后斩,上面串联好,然后奇袭。
一个先斩后联。
一个上下同时进行。
一定要把张(指张春桥──编者注)抓到手,然后立即运用一切舆论工具,公布他叛徒罪行。
总的两条:
一是奇袭
二是一旦进行开始、坚持到底。
◇ 第三阶段
巩固阵地,扩大战果 夺取全部政权
(1)军事上首先固守阵地
△尽力坚守上海
占领电台、电信局、交通
把上海与外地联系卡断
△力争南京方面中立,但做好防御
△固守浙江、江西
△掌握空降、空运
(2)政治上采取进攻
△上面摊牌
△掌握舆论工具 开展政治攻势
(3)组织上扩大
△迅速扩军
△四方串联
(八)政策和策略
打着B-52旗号打击B-52力量
团结一切可能团结的人
缓和群众的舆论
联合一切可以联合的力量
解放大多数
集中打击B-52及其一小撮独裁者
我们的政策
解放一大片(大多数)
保护(团结)一大片
打击一小撮独裁者及其身边的
他们所谓打击一小撮保护一大批不过是每次集中火力打击一派,各个击破。
他们今天利用这个打击那个;明天利用那个打击这个。今天一小撮,明天一小撮,加起来就是一大批。
他利用封建帝王的统治权术 不仅挑动干部斗干部、群众斗群众,而且挑动军队斗军队、党员斗党员,是中国武斗的最大倡导者
他们制造矛盾,制造分裂,以达到他们分而治之、各个击破,巩固维持他们的统治地位的目的。
他知道同时向所有人进攻,那就等於自取灭亡,所以他今天拉那个打这个,明天拉这个打那个;每个时期都拉一股力量,打另一股力量。
今天甜言密(蜜)语那些拉的人,明天就加以莫须有的罪名置于死地;今天是他的座上宾,明天就成了他阶下囚;
从几十年的历史看,究竟有哪一个人开始被他捧起来的人,到后来不曾被判处政治上死刑?
有哪一股政治力量能与他共事始终。他过去的秘书,自杀的自杀、关压(押)的关压(押),他为数不多的亲密战友和身边亲信也被他送进大牢,甚至连他的亲身儿子也被他逼疯。
他是一个怀疑狂、疟(虐)待狂,他的整人哲学是一不做、二不休
他每整一个人都要把这个人置于死地而方休,一旦得罪就得罪到底、而且把全部坏事嫁祸于别人。
戳穿了说,在他手下一个个象走马灯式垮台的人物,其实都是他的替罪羊。
过去,对B-52宣传,有的是出於历史需要;有的顾全民族统一、团结大局;有的出於抵御外来侵敌;有的出於他的法西斯的压力之下;对广大群众来说,主要是有的是不了解他的内情。
对於这些同志,我们都给予历史唯物主义的分析,予以谅解和保护。
对过去B-52以莫须有罪名加以迫害的人,一律给于(予)政治上的解放
。
(九)保密、纪律
此工程属特级绝密,不经批准不得准向任何人透露。
坚决做到一切行动听指挥,发扬“江田岛”精神(江田岛,日本海军学校所在地──编者注)。不成功便成仁
泄密者、失责者、动摇者、背叛者严厉制裁。