V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
V2EX  ›  konakona  ›  全部回复第 174 页 / 共 207 页
回复总数  4132
1 ... 170  171  172  173  174  175  176  177  178  179 ... 207  
@realmix ...用boostrap我一个晚上就可以作出来比这个更复杂的界面,只要你找人设计好了!
就拿http://app.wei.tm/ChainTouch/Property/Search/ 这个界面来说,几年前我参与的项目hoteltour#cn 都比这个强= =||
2014 年 8 月 23 日
回复了 matong1123 创建的主题 问与答 互联网创业公司,这样分配股份合理吗?有奔头吗?
来说说我的经验。
当初跟人合伙,公司15w注资成立,股份制我20%,对方80%,没有让我出钱。
日后也没有工资。
期间全靠理想和信念支撑,到发现对方不靠谱,很是后悔,浪费了半年的时间。


在楼主的事态上我想发表下意见,就现在的3%股份虽然是白送,但就发展而言,它不算钱。一旦被融资后只会越来越少。

也不要过分看重与其他合伙人的关系,商场如战场,我就是太感情用事才死得那么惨。

楼主还是尽量多挣点!比如其他人说的完成任务得奖励=加股份。但是这需要一开始说清楚。
这些传感器设备在各种众筹网上一大堆,比如www.demohour.com
2014 年 8 月 23 日
回复了 konakona 创建的主题 问与答 FacebookAPI 同步登录返回 500
@zhzhwcn 已解决……坑爹呢,我不知道他一定要上传域名服务器!
2014 年 8 月 22 日
回复了 skywalkerfan 创建的主题 分享创造 100offer 注册送亚马逊充值卡活动第二弹
wow,太棒了!想买书!
@trimleo 关注。
2014 年 8 月 21 日
回复了 gkiwi 创建的主题 程序员 大家用 mysql 做项目的时候,是否用外键呢?
不用。
2014 年 8 月 20 日
回复了 Livid 创建的主题 4K Dell UP2414Q 4K IPS 显示器在 newegg 美国已经降价到 $799 了
24寸要4k?设计师专用!
@Yvette
@WildCat
@O21
把贱好的鸡蛋黄含在嘴里...棒...
2014 年 8 月 19 日
回复了 suifengdaren 创建的主题 DevOps 说说大家在服务器上干过最蠢的事情!
還沒。
2014 年 8 月 19 日
回复了 unlion 创建的主题 问与答 APP 开发到 80%,客户欲违约,求助。
我都是6/4/1的……你這個2431太奇怪了!這就很說明問題!
抽风是ISP的缘故,跟服务器无关。
我坚持选择日本的seed VPN。
2014 年 8 月 18 日
回复了 konakona 创建的主题 问与答 FacebookAPI 同步登录返回 500
@zhzhwcn 一口老血飞了出来……就连官方的javascript SDK都用不了。

以下代码,可粘贴至文本编辑框,保存为人意名称.html 点击页面中的Login,欧克,500了……TAT


<!DOCTYPE html>
<html>
<head>
<title>Facebook Login JavaScript Example</title>
<meta charset="UTF-8">
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
</head>
<body>
<script>
// This is called with the results from from FB.getLoginStatus().
function statusChangeCallback(response) {
console.log('statusChangeCallback');
console.log(response);
// The response object is returned with a status field that lets the
// app know the current login status of the person.
// Full docs on the response object can be found in the documentation
// for FB.getLoginStatus().
if (response.status === 'connected') {
// Logged into your app and Facebook.
testAPI();
} else if (response.status === 'not_authorized') {
// The person is logged into Facebook, but not your app.
document.getElementById('status').innerHTML = 'Please log ' +
'into this app.';
} else {
// The person is not logged into Facebook, so we're not sure if
// they are logged into this app or not.
document.getElementById('status').innerHTML = 'Please log ' +
'into Facebook.';
}
}

// This function is called when someone finishes with the Login
// Button. See the onlogin handler attached to it in the sample
// code below.
function checkLoginState() {
FB.getLoginStatus(function(response) {
statusChangeCallback(response);
});
}

window.fbAsyncInit = function() {
FB.init({
appId : '1460769690846577',
cookie : true, // enable cookies to allow the server to access
// the session
xfbml : true, // parse social plugins on this page
version : 'v2.1' // use version 2.1
});


// Now that we've initialized the JavaScript SDK, we call
// FB.getLoginStatus(). This function gets the state of the
// person visiting this page and can return one of three states to
// the callback you provide. They can be:
//
// 1. Logged into your app ('connected')
// 2. Logged into Facebook, but not your app ('not_authorized')
// 3. Not logged into Facebook and can't tell if they are logged into
// your app or not.
//
// These three cases are handled in the callback function.

FB.getLoginStatus(function(response) {
statusChangeCallback(response);
});

};

// Load the SDK asynchronously
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));

// Here we run a very simple test of the Graph API after login is
// successful. See statusChangeCallback() for when this call is made.
function testAPI() {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
console.log('Successful login for: ' + response.name);
document.getElementById('status').innerHTML =
'Thanks for logging in, ' + response.name + '!';
});
}
</script>

<!--
Below we include the Login Button social plugin. This button uses
the JavaScript SDK to present a graphical Login button that triggers
the FB.login() function when clicked.
-->

<fb:login-button scope="public_profile,email" onlogin="checkLoginState();">
</fb:login-button>

<div id="status">
</div>

</body>
</html>
话说,如果直接说事业演讲,这个好像也没什么呀,
2014 年 8 月 16 日
回复了 peartail 创建的主题 问与答 为什么大公司的决策大多看起来很蠢?
其实我想说,百度搜出来的跟大公司有关的keyword都是新闻,我想找东西都找不到,这也很蠢。
1 ... 170  171  172  173  174  175  176  177  178  179 ... 207  
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   1385 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 40ms · UTC 17:08 · PVG 01:08 · LAX 10:08 · JFK 13:08
♥ Do have faith in what you're doing.