
又是一年 0 和 1 的好时节,全国程序猿现同台打 CALL,由各路程序猿响应监制,集加班、加班和加班于一体的《 1024 》在全国范围内同步上映。
这么一个不安分的节,POLYV 程序小编们粗来搞事情啦~
登登登,这是一道由 Java、JS、C++、Objective C 的同事用半根白发换来的题。解出题目的猿儿们将有机会获得蓝牙耳机一副!
兄弟姐妹,敢来挑战手动解题、拾取你的小幸运吗?
** [活动规则] **
以下四种语言的代码中含有相应的加密暗语,您可以从中选取其中一组代码对暗语进行解密,并以 “您的昵称+解密所得暗语+PolyV ”(不含引号及加号,注意大小写噢) 所得的字符串进行 MD5 运算,然后在本帖下方回复 您最终所得的 MD5 串。
我们将在活动结束后从回帖中随机抽出 5 位通过验证的幸运儿,送上精美礼品一份~
===============以下为四种语言代码===============
1、Java(需使用 commons-codec-1.10.jar 包)
package com.rode.main; import java.io.UnsupportedEncodingException; import java.util.Scanner; import org.apache.commons.codec.binary.Base64; import org.apache.commons.codec.digest.DigestUtils; public class Entrance { private static final String POLYV_PROPAGANDA = "RXN0YWJsaXNoZWQgaW4gMjAxMiwgR3Vhbmd6aG91IEVhc3lmdW4gSW5mb3JtYXRpb24gVGVjaG5vbG9neSBDby4sIEx0ZC4gaXMgYSBuYXRpb25hbC1jZXJ0aWZpY2F0ZWQgaGlnaC10ZWNoIGNvbXBhbnksIHdoaWNoIHRoZSBjb3JlIG1lbWJlcnMgYXJlIGZyb20gdG9wLXJhbmtpbmcgaW50ZXJuZXQgY29ycG9yYXRpb25zIGxpa2UgTmV0ZWFzZSwgQWxpYmFiYSBhbmQgQmFpZHUuIFByb3ZpZGluZyBWaWRlbyBDbG91ZCBhbmQgTGl2ZSBTdHJlYW1pbmcgQ2xvdWQgc2VydmljZXMgZm9yIGJ1c2luZXNzLCBQT0xZViBpcyBib3JuIGludG8gYSBzdWNoIGEgZ3JlYXQgY29tcGFueS4="; private static final String POLYV_MD5_PART = "PolyV"; public static void main(String[] arges) { try { byte[] decode = Base64.decodeBase64(POLYV_PROPAGANDA.getBytes("UTF-8")); String decodeStr = new String(decode, "UTF-8"); System.out.print("Please input your nick name: "); Scanner str = new Scanner(System.in); String input = str.next(); System.out.println(decodeStr); System.out.println("MD5: " + md5Hex(input + decodeStr + POLYV_MD5_PART)); str.close(); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } } /** * md5 encrypt * @param text to be encrypted. * @return the encrypted result. */ public static String md5Hex(String text) { return DigestUtils.md5Hex(text); } } 2、C++
/*****************************************Festival.h*****************************************/ #include "ui_Festival.h" #include <qcryptographichash.h> class Festival : public QMainWindow { Q_OBJECT public: Festival(QWidget *parent = Q_NULLPTR); private: Ui::FestivalClass ui; private slots: void on_generateBtn_clicked(); }; /*****************************************Festival.cpp*****************************************/ #include "Festival.h" #include <qcryptographichash.h> #define QT_UTF8(str) QString::fromUtf8(str) #define QT_TO_UTF8(str) str.toUtf8().constData() Festival::Festival(QWidget *parent) : QMainWindow(parent) { ui.setupUi(this); this->setFixedHeight(120); this->setFixedWidth(500); ui.plainTextEdit->setReadOnly(true); this->setStyleSheet("background-color: #ffffff"); ui.encryNickNameLbl->setStyleSheet("font: bold; font-size:20px; color:red; "); ui.plainTextEdit->setStyleSheet("font: bold; font-size:14px; color: #26a0f5; "); ui.generateBtn->setStyleSheet("font: bold; color:#26a0f5;font-size:14px; border:1px solid #26a0f5; "); ui.nickNameEdit->setStyleSheet("border:1px solid #26a0f5;font:normal 14px Microsoft YaHei;color:#5f7958;"); ui.nickNameLbl->setStyleSheet("font: bold; color:#26a0f5;font-size:14px; "); } void Festival::on_generateBtn_clicked() { this->setFixedHeight(300); this->setFixedWidth(500); char val[] = { 32 ,43, 86, 120, 0157, 0154, 160, 0171, 33, 0157, 0154, 125, 0163, 127, 0120}; QString nickNameStr = ui.nickNameEdit->text().trimmed(); std::string val1 = val; QString val2 = val1.c_str(); QString val3 = val2.mid(14, 1) + val2.mid(9, 2) + val2.mid(7, 1) + val2.mid(2, 2); QString generateCode64Str =QStringLiteral("UE9MWVYgaXMgdGhlIGNsb3VkIGNvbXB1dGluZyBwbGF0Zm9ybSBmdWxseSBvd25lZCBieSBFYXN5ZnVuLCBpbmNsdWRpbmcgVmlkZW8gQ2xvdWQsIExpdmUgU3RyZXdpbmcgQ2xvdWQgYW5kIG90aGVyIHZpZGVvIHNlcnZpY2VzLiBXaXRoIGNvbXBsZXRlIHNldHMgb2YgQVBJLCBTREsgYW5kIGRldmVsb3BlciBkb2N1bWVudHMsIHRoZSBuYXRpb25hbC1wYXRlbnRlZCBQbGF5U2FmZSBEUk0gRWNvc3lzdGVtLCBQT0xZViBkZWxpdmVycyBzdGFibHkgc2FmZSBkaXRkIHNwZWVkeSB2aWRlbyBzZXJ2aWNlIGZvciBidXNpbmVzcyBhbmQgZW50ZXJwcmlzZSB1c2Vycy4="); QString generateCodeStr = QByteArray::fromBase64(generateCode64Str.toUtf8()); QString signStr = QString("%1%2%3").arg(nickNameStr).arg(generateCodeStr).arg(val3.mid(0, 5)); QString md5String = QCryptographicHash::hash(QT_TO_UTF8(signStr), QCryptographicHash::Md5).toHex(); //Show MD5 String ui.encryNickNameLbl->setText(md5String); //Generate Code Str ui.plainTextEdit->setPlainText(generateCodeStr); } 3、JS
var nickname = "1024"; // 您的昵称 var str = 'V2l0aCB0aGUgdmlzaW9uIG9mICJkcml2aW5nIHZpZGVvIHdpdGggdmFsdWUiLFBPTFlWIG5vdyBwcm92aWRlcyBncmVhdCB2aWRlbyBwcm9kdWN0cyBpbmNsdWRpbmcgVmlkZW8gQ2xvdWQgYW5kIExpdmUgU3RyZWFtaW5nIENsb3VkIGZvciBidXNpbmVzcyB1c2Vycy5DdXJyZW50bHksIG92ZXIgMzcsMDAwIGNvcnBvcmF0aW9ucyBhbmQgb3JnYW5pemF0aW9ucyBhcmUgdXNpbmcgUE9MWVbigJlzIHZpZGVvIHNlcnZpY2UsIGdhaW5pbmcgaGlnaCByZXB1dGF0aW9uIGFtb25nIG9ubGluZSBlZHVjYXRpb24gaW5kdXN0cnkgYXMgd2VsbCBhcyBkb21lc3RpYyBhbmQgaW50ZXJuYXRpb25hbCBjbGllbnRzIGxpa2UgQXNpYW4gSW5mcmFzdHJ1Y3R1cmUgSW52ZXN0bWVudCBCYW5rIChBSUlCKSwgQ0NUViwgRGVsbCwgQm9zY2ggJiBTaWVtZW5zIEhvbWUgQXBwbGlhbmNlcyAoQlNIKSBhbmQgTGlua2VkaW4u'; var b = new Base64(); str = b.decode(str); console.log(str); var code = ""; var val = [80,111,108,121,86,127,136,102]; for (var i = 0; i < val.length; i++) { code += String.fromCharCode(val[i]); } code = code.substring(0,5); var sign = hex_md5(nickname + str + code); console.log(sign); 4、Objective C
```Objective-C // 您的昵称 NSString *nickName = @""; NSString *EncodeStr = @"UE9MWVYsIGEgY2xvdWQgY29tcHV0aW5nIHBsYXRmb3JtIHdpdGggdmlkZW8gcHJvZHVjdHMsIGhhcyBub3cgZGV2ZWxvcGVkIDE1NyBmZWF0dXJlcyBmb3IgVmlkZW8gQ2xvdWQsIGFuZCAyMDggZm9yIExpdmUgU3RyZWFtaW5nIENsb3VkICh3aXRoIDEwMiB0YWlsb3JlZCBmb3IgZWR1Y2F0aW9uIGluZHVzdHJ5KS4gV2l0aCB0aGUgY29taW5nIG9mIDExLjExLCBhbmQgaW4gYWNjb3JkYW5jZSB3aXRoIHRoZSBwcm9tb3Rpb24gaXNzdWVzLCBQT0xZViB3aWxsIHByb3ZpZGUgZXhjbHVzaXZlIGRpc2NvdW50cyBvZiB0aGUgeWVhciwgYW5kIHJlbGVhc2Ugc2VydmljZSB1cGRhdGVzIGF0IHRoZSBzYW1lIHRpbWUu"; NSData *decodeData = [GTMBase64 decodeString:EncodeStr]; NSString *cOntent= [[NSString alloc] initWithData:decodeData encoding:NSUTF8StringEncoding]; NSString *key = [[content substringToIndex:4] capitalizedString]; NSString *combinatiOnStr= [nickName stringByAppendingFormat:@"%@%@V",content,key]; NSString *sign = [PLVUtil md5HexDigest:combinationStr]; NSLog(@"%@\n%@",content,sign); ``` ===============代码环节结束分割线===============
顺便宣布一件大事,距举国关注的双十一还有不到 20 天,云视频服务商保利威视在双十一也将推出全年最低价的云视频大聚惠,敬请期待! ** [正经脸] **
** [活动方] **
保利威视是国内领先的视频云计算服务平台。站在云点播、云直播的技术前沿,帮助企业通过视频创造巨大的商业应用价值。欢迎进入保利威视官网了解视频加密原理和丰富的视频技术应用: http://www.polyv.net/

** [福利] **
1、奖品:蓝牙耳机一副(共 5 份)
2、所有参与活动的人都可获得一个大礼包:注册保利威视获“点播流量 12G+空间 4G、一年测试期、全功能开放”+“ 1 万直播分钟数” (礼包限 11 月份前注册有效)
** [中奖规则] **
1、活动时间:10 月 24 日 00:00 ~ 10 月 29 日 24:00
2、使用随机数生成器抽出 5 位验证正确的中奖者,于活动结束后公布,并在活动结束一周内寄出奖品;
3、活动主办方在法律允许的范围内,保留此次活动的最终解释权。
综合大家的意见,在此对解题规则做一点补充说明
解题后需要贴出相应昵称的MD5串,还有将密语翻译出来哈~
已经回复的朋友无需担心,您在本补充说明发布前的回复也算有效。
在此感谢大家的积极反馈,也希望有更多的朋友踊跃参与~
1 nomoon Oct 24, 2017 ad2ed802c2dc9521f2ecfdb31aee2120 |
2 Bryan0Z Oct 24, 2017 via Android 不是很懂,粗看了眼代码,难道不是跑一遍直接出结果嘛,是要解什么? 以及我说暗语怎么那么长,原来是段广告 |
4 shiny PRO 098383afb248d23da77f3e362f1acaea 只要跑出结果就可以了吧,黑线 |
5 qdwang Oct 24, 2017 via iPhone 这个广告形式不错 |
6 Bryan0Z Oct 24, 2017 8B914BC977ECDF1A6169358A94BFE463 |
7 EmbraceZ Oct 24, 2017 via Android 标题真夸张……原来是广告 |
8 misaka19000 Oct 24, 2017 via Android 看看 Google 是怎么出题的吧,出这样的题目估计 V 友都没兴趣解 |
9 panpanpan Oct 24, 2017 841f38baf018545c74cccdf67de60f3b |
10 roderickzxy Oct 24, 2017 5c4975b080a43d83eda05add64edf71f |
11 zhangyp123 Oct 24, 2017 1b10de9a20d55e6f91bee15f55390966 |
12 roderickzxy Oct 24, 2017 暗语:Established in 2012, Guangzhou Easyfun Information Technology Co., Ltd. is a national-certificated high-tech company, which the core members are from top-ranking internet corporations like Netease, Alibaba and Baidu. Providing Video Cloud and Live Streaming Cloud services for business, POLYV is born into a such a great company. md5:5c4975b080a43d83eda05add64edf71f |
13 stevedd Oct 24, 2017 c++ md5:812bf6eb802fa541e5ea2012f90afb6e |
14 Tenma PRO 6d91dbcf646703789db547cf2317227f |
15 amuwall Oct 24, 2017 b10239a5c9c23833b580d3a787c37699 |
16 paul123 Oct 24, 2017 702bde0b5234a44c93f6b6833688751c |
17 admol Oct 24, 2017 4600e49d7051b7dd5b29c45e7615aee6 |
18 yu099 Oct 24, 2017 via Android B3E250EA7030FB461AAA0688852199F5 |
19 zapper Oct 24, 2017 这不 base64 嘛,哪算得上什么加密啊 7A3B750DBBFAE75BD690BB66E27C861C |
20 pypy Oct 24, 2017 7F8016F0DC81D19E4C00F8A43C10F5DE |
21 Jack901 Oct 24, 2017 php 岂不是就几行 <?php $YourName="1024"; $POLYV_PROPAGANDA = "RXN0YWJsaXNoZWQgaW4gMjAxMiwgR3Vhbmd6aG91IEVhc3lmdW4gSW5mb3JtYXRpb24gVGVjaG5vbG9neSBDby4sIEx0ZC4gaXMgYSBuYXRpb25hbC1jZXJ0aWZpY2F0ZWQgaGlnaC10ZWNoIGNvbXBhbnksIHdoaWNoIHRoZSBjb3JlIG1lbWJlcnMgYXJlIGZyb20gdG9wLXJhbmtpbmcgaW50ZXJuZXQgY29ycG9yYXRpb25zIGxpa2UgTmV0ZWFzZSwgQWxpYmFiYSBhbmQgQmFpZHUuIFByb3ZpZGluZyBWaWRlbyBDbG91ZCBhbmQgTGl2ZSBTdHJlYW1pbmcgQ2xvdWQgc2VydmljZXMgZm9yIGJ1c2luZXNzLCBQT0xZViBpcyBib3JuIGludG8gYSBzdWNoIGEgZ3JlYXQgY29tcGFueS4="; $decodeStr=base64_decode($POLYV_PROPAGANDA); echo "MD5:".md5($YourName.$decodeStr."PolyV")."<br>暗语:".$decodeStr; ?> |
22 knva Oct 24, 2017 王德发? With the vision of "driving video with value",POLYV now provides great video products including Video Cloud and Live Streaming Cloud for business users.Currently, over 37,000 corporations and organizations are using POLYV ’ s video service, gaining high reputation among online education industry as well as domestic and international clients like Asian Infrastructure Investment Bank (AIIB), CCTV, Dell, Bosch & Siemens Home Appliances (BSH) and Linkedin. md5:0D1CD7B35662583DCF7066953E3B7F9B |
23 takanasi Oct 24, 2017 9F044B67F0070A7AE8FE6FE7CAFCCFEA |
24 natforum Oct 24, 2017 |
25 Beebird Oct 24, 2017 031f258160811a05f0c5e00a4c5dc7b5 |
26 insoxin Oct 24, 2017 via Android 4600e49d7051b7dd5b29c45e7615aee6 |
27 Beebird Oct 24, 2017 With the vision of "driving video with value",POLYV now provides great video products including Video Cloud and Live Streaming Cloud for business users.Currently, over 37,000 corporations and organizations are using POLYV ’ s video service, gaining high reputation among online education industry as well as domestic and international clients like Asian Infrastructure Investment Bank (AIIB), CCTV, Dell, Bosch & Siemens Home Appliances (BSH) and Linkedin. 07435145bee64a4efb28afd332a94cc3 |
28 pezy Oct 24, 2017 C++ 版本 c47f88c27c7b12cb8eb093dd9e716c79 吐槽:1,这分明是 Qt 版本; 2,居然不给 ui 文件; 3,char val[] 里面有一个字符 "160" 应该为 "0160"... |
29 pezy Oct 24, 2017 补上解出的广告:POLYV is the cloud computing platform fully owned by Easyfun, including Video Cloud, Live Strewing Cloud and other video services. With complete sets of API, SDK and developer documents, the national-patented PlaySafe DRM Ecosystem, POLYV delivers stably safe ditd speedy video service for business and enterprise users. |
30 EricFuture Oct 24, 2017 720b6ee2309c60832844aafd500bb935 |
31 EricFuture Oct 24, 2017 Established in 2012, Guangzhou Easyfun Information Technology Co., Ltd. is a national-certificated high-tech company, which the core members are from top-ranking internet corporations like Netease, Alibaba and Baidu. Providing Video Cloud and Live Streaming Cloud services for business, POLYV is born into a such a great company. |
32 CloudnuY Oct 24, 2017 DD7FCD647C87AAF64E3AD02D31A846B5 |
33 hellpeng Oct 24, 2017 Objective-C POLYV, a cloud computing platform with video products, has now developed 157 features for Video Cloud, and 208 for Live Streaming Cloud (with 102 tailored for education industry). With the coming of 11.11, and in accordance with the promotion issues, POLYV will provide exclusive discounts of the year, and release service updates at the same time. 14c6de6bcc827d39b0dbe07fb7b6631b |
34 ethusdt Oct 24, 2017 u n d e f i n e d |
35 mosliu Oct 24, 2017 43d0bb4c16c57d6f3f5e8907844dd3c2 |
36 mosliu Oct 24, 2017 Established in 2012, Guangzhou Easyfun Information Technology Co., Ltd. is a national-certificated high-tech company, which the core members are from top-ranking internet corporations like Netease, Alibaba and Baidu. Providing Video Cloud and Live Streaming Cloud services for business, POLYV is born into a such a great company. MD5: 43d0bb4c16c57d6f3f5e8907844dd3c2 |
37 hellpeng Oct 24, 2017 发现我是 Objective-C 的沙发呀 哈哈哈 |
38 siguretto Oct 24, 2017 b3f51a6d39d84ee5be6d87d955e57413 |
39 csx163 Oct 24, 2017 89089d0b12970769cb819d7a4155045f |
40 q409195961 Oct 24, 2017 ac3afcbab9f67d48f0fa818315977bdb |
41 mener0000 Oct 24, 2017 8d3bb7813c1df16a2498f54a5844044b |
42 zld Oct 24, 2017 1f29c98cc0ca6002d799d7ef88c95e26 |
43 maplebridge Oct 24, 2017 JAVA:Established in 2012, Guangzhou Easyfun Information Technology Co., Ltd. is a national-certificated high-tech company, which the core members are from top-ranking internet corporations like Netease, Alibaba and Baidu. Providing Video Cloud and Live Streaming Cloud services for business, POLYV is born into a such a great company. MD5: 693cbeab8a5fdf8254844d46081cbc80 |
44 ftttt Oct 24, 2017 Objective C: POLYV, a cloud computing platform with video products, has now developed 157 features for Video Cloud, and 208 for Live Streaming Cloud (with 102 tailored for education industry). With the coming of 11.11, and in accordance with the promotion issues, POLYV will provide exclusive discounts of the year, and release service updates at the same time. MD5: b479516b043afc1cee9b10ae73576967 |
45 unique Oct 24, 2017 2547190c7173f573c2bc7b2bc0c4cf00 by Java |
46 barbery Oct 24, 2017 这。。。太简单了吧,还是我理解错了~ |
47 xinlinqi Oct 24, 2017 dd456f592410d563f88f11c5e8d55d36 |
48 Tompes Oct 24, 2017 会玩会玩,这波广告无敌. |
49 but0n Oct 24, 2017 9920dd1e26a42f890970e656b1d |
50 ihciah Oct 25, 2017 密语:6L+Z5bm/5ZGKK1NFT+aIkee7mTEwMeWIhg== |
51 vmebeh Oct 25, 2017 vmebeh8bda144d1b541e5982101a5ea9a4b123PolyV |
52 vmebeh Oct 25, 2017 796a5ada3eb7894be57e0c280cdd9302 |
53 q452316q Oct 25, 2017 76b174b38c40462dfdc22ed231d7f8a4 |
54 rozbo Oct 25, 2017 F34973B34512A51C9F39471E7BE43ECA With the vision of "driving video with value",POLYV now provides great video products including Video Cloud and Live Streaming Cloud for business users.Currently, over 37,000 corporations and organizations are using POLYV ’ s video service, gaining high reputation among online education industry as well as domestic and international clients like Asian Infrastructure Investment Bank (AIIB), CCTV, Dell, Bosch & Siemens Home Appliances (BSH) and Linkedin. 根据代码上看,不同语言的密语是不一样的,所以前面回复的楼层,如果真要计数的话,小编只能一个一个试了。。。。。。 |
55 xsd3169 Oct 25, 2017 xsd3169With the vision of "driving video with value",POLYV now provides great video products including Video Cloud and Live Streaming Cloud for business users.Currently, over 37,000 corporations and organizations are using POLYVs video service, gaining high reputation among online education industry as well as domestic and international clients like Asian Infrastructure Investment Bank (AIIB), CCTV, Dell, Bosch & Siemens Home Appliances (BSH) and Linkedin.PolyV a96823d844db9b687359dca96d0ebd06 |
56 billion Oct 25, 2017 JS 版本用到的 Base64 不是一个原生库,差评 |
57 lrannn Oct 25, 2017 5411C5340729F4DC7D11C4EEFCF29F0D |
58 qq641016547 Oct 25, 2017 6d4faa978d66f2f715fe9eb14949ed6a |
59 qq641016547 Oct 25, 2017 密语: With the vision of "driving video with value",POLYV now provides great video products including Video Cloud and Live Streaming Cloud for business users.Currently, over 37,000 corporations and organizations are using POLYV ’ s video service, gaining high reputation among online education industry as well as domestic and international clients like Asian Infrastructure Investment Bank (AIIB), CCTV, Dell, Bosch & Siemens Home Appliances (BSH) and Linkedin. MD5: 6d4faa978d66f2f715fe9eb14949ed6a |
60 zgx030030 Oct 25, 2017 js With the....and Linkedin. 41812823a9e3ab1629bb4b59fe55d5f4 |
61 zgx030030 Oct 25, 2017 发贴小编可能并不懂技术,把昵称直接输上就出结果,还需要啥解密的?仅仅是筛选一下真正的程序员? |
62 mineqiqi Oct 25, 2017 6c3ef9709e8791738eb8d8c117344103 |
63 mingriqing Oct 25, 2017 MD5: 0118844a6331ba55b98f87b6764846ce |
64 Mountain Oct 26, 2017 JS 打卡 B12CEDD0FF45C7A956E646EB2282B83C With the vision of "driving video with value",POLYV now provides great video products including Video Cloud and Live Streaming Cloud for business users.Currently, over 37,000 corporations and organizations are using POLYV ’ s video service, gaining high reputation among online education industry as well as domestic and international clients like Asian Infrastructure Investment Bank (AIIB), CCTV, Dell, Bosch & Siemens Home Appliances (BSH) and Linkedin. |
65 jixiangqd Oct 26, 2017 E450355B2A690B9BE0A0060FE704F4AF |
66 kltt22 Oct 26, 2017 md5:1FA0EB37CC78707FDF9FCC678EEE7D8D 密语:With the vision of "driving video with value",POLYV now provides great video products including Video Cloud and Live Streaming Cloud for business users.Currently, over 37,000 corporations and organizations are using POLYV ’ s video service, gaining high reputation among online education industry as well as domestic and international clients like Asian Infrastructure Investment Bank (AIIB), CCTV, Dell, Bosch & Siemens Home Appliances (BSH) and Linkedin. |
67 grayon Oct 26, 2017 Objective C: POLYV, a cloud computing platform with video products, has now developed 157 features for Video Cloud, and 208 for Live Streaming Cloud (with 102 tailored for education industry). With the coming of 11.11, and in accordance with the promotion issues, POLYV will provide exclusive discounts of the year, and release service updates at the same time. d61b27b4087ae675f11fa88b0005b566 |
68 dinghua Oct 26, 2017 3f4d87c29b8743360cfcd502520ca270 |
69 yeqiu Oct 26, 2017 js 密语:With the vision of "driving video with value",POLYV now provides great video products including Video Cloud and Live Streaming Cloud for business users.Currently, over 37,000 corporations and organizations are using POLYVs video service, gaining high reputation among online education industry as well as domestic and international clients like Asian Infrastructure Investment Bank (AIIB), CCTV, Dell, Bosch & Siemens Home Appliances (BSH) and Linkedin. MD5:7dfd224107942aa19dfa8c32a9ab4d3a |
70 akuo Oct 26, 2017 6acbfbc49473dc0600bb38265c0538be |
71 torbrowserbridge nbsp;Oct 26, 2017 和中国保利集团有关系吗 |
72 atan Oct 27, 2017 1ca67584474e2b7220b95137de515b9f |
73 90safe Oct 27, 2017 b6a1f898c97b59d8b1ccf1cd11c74a40 |
74 lyver OP 恭喜 @stevedd、 @pezy、 @mosliu、 @qq641016547、 @grayon,你们将获得精美蓝牙耳机一副。请这 5 位童鞋在 11 月 2 日 24:00 前,将姓名、联系方式及创建回复的截图发到邮箱 [email protected] ,我们会尽快将礼品发到你们手上哈~ |
76 lyver OP 目前就剩下 @stevedd 同学没有提交获奖信息,记得在 11 月 2 日 24:00 前将您的姓名、联系方式及创建回复的截图发送到附言 2 中指定的邮箱噢,奖品会尽早送到您手上的~ |
77 yeqiu Nov 1, 2017 |
78 lyver OP @yeqiu 你可以进入保利威视官网 www.polyv.net 注册帐号,然后回到首页,点击云视频活动 Banner (包括点播、直播),进入页面后就能获得大礼包~ |