为您找到搜索结果:6311个
linux 安装scala
1.下载scala到scala官网下载scalahttps://www.scala-lang.org/download/,目前最新版本是2.12.8wgethttps://downloads.lightbend.com/scala/2.12.8/scala-2.12.8.tgz#downloadscalabinaryfilemkdir/usr/local/scala#createfoldertoputtheunzippedscalafileintotar-xvzfscala-2.12.8.tgz&&mvscala-2.12.8/usr/local/scala/#unzipscalabinaryfileandmovetothe/usr/local/scala 2.配置环境变量vim/etc/profile#addscalainfotoenviromentfile.在文件末尾添加以下内容#scalaexportSCALA_HOME=/usr/local/scala/scala-2.12.8exportPATH=$SCALA_HOME/bin:$PATH:wq保存退...
$($('.className').html( )选择器的工作原理
$($('.slot')[0]).html('<imgsrc="'+images[slotOne-1]+'">');...
EncodeError: 'latin-1' codec can't encode characters in position 69-70: ordinal not in range(256)
UnicodeEncodeError:'latin-1'codeccan'tencodecharactersinposition69-70:ordinalnotinrange(256)解决办法【转自:https://blog.csdn.net/a136332462/article/details/68063548】 使用python3.X向数据库插入中文数据的时候,提示:大概步骤是:anjuke_area= (513,'平阴','http://jinan.anjuke.com','2017-03-2913:17:03')print('开始链接数据库')conn=pymysql.connect(host='XX.XX.XX.XX',port=3306,user='root',passwd='root123',db='数据库名称')print('链接数据库成功')cur=conn.cursor()cur.execute("INSERTINTOanjuke_area(id,name,link,time)VALUES(%s,%s,%s,%s)",anjuke_area)然后...
angular简单登录注册
最近在学angularJs,今天写了一个非常简单的登录注册页面,大概熟悉了一下angularJs的语法。后台数据模拟:user_info.json1登录页面步骤一:首先要把页面给div出来。 页面主要代码: <divclass="containermain"data-ng-controller="loginCtrl"><formclass="form-horizontal"name="loginForm"novalidate><divclass="form-group"><divclass="col-sm-offset-4col-sm-3"><h2class="title">登录</h2></div></div><divclass="form-group"><divclass="col-sm-offset-4col-sm-3"><inputtype="text...
laravel本地开发环境的安装及配置
一.安装VirtualBox-5.2.22-126460-Win.exe和vagrant_2.2.2_x86_64.msi(可视化安装包安装); 安装在D盘二.导入HomesteadVagrantBox虚拟机盒子(命令安装,provider选择3:virtualbox); vagrantboxaddlaravel/homestead 说明:box'laravel/homestead'当时安装的版本号是(v6.4.0) 三.安装Homestead管理脚本(命令安装); gitclonehttps://github.com/laravel/homestead.git~/Homestead cd~/Homestead gitcheckoutv7.20.0四.配置Homestead.yaml文件; 在Homestead目录中使用 bashinit.sh 命令来创建 Homestead.yaml 配置文件。 打开Homestead.yaml文件,进行配置: 1.配置共享文件夹:修改为本地主机laravel项目的源码位...
input placeholder属性 样式修改(颜色,大小,位置)
1<!DOCTYPEhtml>2<html>3<head>4<metacharset="utf-8">5<title></title>6<style>78input::-webkit-input-placeholder{9/*placeholder颜色*/10color:#aab2bd;11/*placeholder字体大小*/12font-size:12px;13/*placeholder位置*/14text-align:right;15}16input{17border:1pxsolidred;18}19</style>20</head>21<body>2223<inputtype="text"placeholder="请输入手机号">2425</body>26</html>备注:::-webkit-input-placeholder{/*WebKit,Blink,Edge*/color:#909;}:-moz-placehol...
poj 1328 Radar Installation 贪心
题意:给出岛屿个数n和地雷的范围c,然后再给出n个岛屿的xy坐标,在x轴上放置地雷,求出能覆盖所有岛屿的地雷最小数 否则输出-1 思路:1、一开始,我第一个想法就是对岛屿进行排序,x从小到大,接着在x轴上放置地雷,尽可能靠右边并且能够覆盖左边的岛屿 ,接着筛选右边同时也处于该地雷之内的岛屿,再不断找左边第一个没有地雷覆盖的岛屿继续放置最右边的地雷。。。 然后WA了。 2、网上的普遍做法,就是对每个岛屿计算能够覆盖到他的地雷范围,然后题目就变成区间的最少覆盖问题了,我就用这种 算法做了,最终还是AC了。 AC代码:#include<cstdio>#include<cmath>#include<cstring>#include<algorithm>#include<iostream>usingnamespacestd;constintMAX_N=1005;intn,_case,d;doubleu,v;boolvis[MAX_N];structnode{dou...
lambda架构简介
Lambda架构是由Storm的作者NathanMarz提出的一个实时大数据处理框架。Marz在Twitter工作期间开发了著名的实时大数据处理框架Storm,Lambda架构是其根据多年进行分布式大数据系统的经验总结提炼而成。Lambda架构的目标是设计出一个能满足实时大数据系统关键特性的架构,包括有:高容错、低延时和可扩展等。Lambda架构整合离线计算和实时计算,融合不可变性(Immunability),读写分离和复杂性隔离等一系列架构原则,可集成Hadoop,Kafka,Storm,Spark,Hbase等各类大数据组件。Marz认为大数据系统应具有以下的关键特性:Robustandfault-tolerant(容错性和鲁棒性):对大规模分布式系统来说,机器是不可靠的,可能会当机,但是系统需要是健壮、行为正确的,即使是遇到机器错误。除了机器错误,人更可能会犯错误。在软件开发中难免会有一些Bug,系统必须对有Bug的程序写入的错误数据有足够的适应能力,所以比机器容错性更加重要的容错性是人为操作容错性。对于大规模的分布式系统来说,人和机器的错误每天都可能会发生,如何应对人和机器的错...
Replace JSON.NET with Jil JSON serializer in ASP.NET Web API
IhaverecentlycomeacrossacomparisonoffastJSONserializersin.NET,whichshowsthat JilJSONserializer isoneofthefastest.JiliscreatedbyKevinMontrosedeveloperatStackOverlowanditisapparentlyheavilyusedbyStackoveflow.ThisisonlyoneofmanybenchmarksyoucanfindonGithubprojectwebsite.Youcanfindmorebenchmarksandthesourcecodeatthislocationhttps://github.com/kevin-montrose/JilInthisshortarticleIwillcoverhowtoreplacedefaultJSONserializerinWebAPIwithJil.First,youneedtograbJilfromNuGet PM>Install-Pac...
kudu和kudu-impala的安装流程
第一步:下载rpm包http://archive.cloudera.com/kudu/redhat/6/x86_64/kudu/5.11.0/RPMS/x86_64/第二步:安装rpm包[root@hadoop5kudu]#yum-yinstallcyrus-sasl-plainlsbntp [root@hadoop5kudu]#rpm-ivh*第三步:配置文件配置主、从机 /etc/kudu/conf/tserver.gflagfile –tserver_master_addrs=hadoop5:7051/etc/default/kudu-master exportFLAGS_rpc_bind_addresses=hadoop5:7051 /etc/default/kudu-tserver exportFLAGS_rpc_bind_addresses=hadoop6:7050第四步:设置ntpd服务第五步:设置目录权限mkdir/opt/var/lib/kudu-p chown-Rkudu:kudu/o...
Installation of Scylla on CentOS 7
UsethesestepstoinstallScyllausingYumrepositoriesonCentOS.PrerequisitesCentOS7.2orlater,forthe64-bitx86_64architecture.Yumpackagemanagementapplicationinstalled.ABRTconflictwithScyllacoredumpconfiguration.RemoveitbeforeinstallingScylla: sudoyumremove-yabrtRootor sudo accesstothesystem.TheScyllapackagescreateascyllauser.WhenstartingScyllaasaservice,theservicerunsasthisuser.Makesurethatalltherelevant ports areopen.ScyllausesthefollowingportsPortDescriptionProtocol9042CQL(nat...
Sont color='red'>of ont>tware Scalability with MapReduce
Sont color='red'>of ont>twareScalabilitywithMapReduceCraig HendersonFirstpublishedonlineApril2010Thearchitectureont color='red'>of ont>a sont color='red'>of ont>tware systemisthestructureanddesignont color='red'>of ont>thecomponentsthatworktogetherinunisontoperformthegoalont color='red'>of ont>thesystemasawhole.Onlargescalesystems,thearchitecturecandescribeindependentcomponentsandtheirinteractions;interfacespecification,communicationmechanismsandcoupling.Componentscanbeinternaltothe sont color='red'>of ont>tware system,theycanbemultiple sont color='red'>of ont>tware componentsonaserverormultiplecomp...
windows hbase installation
Inthepreviouspost, Ihaveintroducedhowtoinstallhadooponwindowsbasedsystem.Now,Iwillintroducehowtoinstallhbaseonwindows.1.Preparation:beforetheinstallation,let'stakealookatthehadoop-hbasesuppotmatrixbelow: youcanchoosetheapropriateversionofhbasewhichissupportedbyyourhadoopsystem.BecauseIhaveinstalledhadoop2.7.1inthepreviouspost,soIchoosetoinstallhbase1.3.1whichissupportedbyhadoop2.7.1. 2.Downloadhbase1.3.1.tar.gzfromapacheofficialsite.3.Unzipthe hbase1.3.1.tar.gzintoyourlocalco...
C# 位域[flags] 转
C#位域[flags] .NET中的枚举我们一般有两种用法,一是表示唯一的元素序列,例如一周里的各天;还有就是用来表示多种复合的状态。这个时候一般需要为枚举加上[Flags]特性标记为位域,例如: [Flags] enum Styles{ ShowBorder = 1, //是否显示边框 ShowCaption = 2, //是否显示标题 ShowToolbox = 4 //是否显示工具箱 } 这样我们就可以用"或"运算符组合多个状态,例如 &n...
HTML5轻松实现搜索框提示文字点击消失---及placeholder颜色的设置
在做搜索框的时候无意间发现html5的input里有个placeholder属性能轻松实现提示文字点击消失功能,之前还傻傻的在用js来实现类似功能。。。示例<formaction="demo_form.asp"method="get"><inputtype="search"name="user_search"placeholder="我是提示文字在此输入文本我会消失"/><inputtype="submit"/></form>根据浏览器的不同,效果也不同。有些会在鼠标focus文本框时,文字直接消失。有些则会在输入文本时消失。占位文本颜色设置如下::-webkit-input-placeholder{/*WebKitbrowsers*/color:#999;}:-moz-placeholder{/*MozillaFirefox4to18*/color:#999;}::-moz-placeholder{/*MozillaFirefox19+*/color:#999;}:-ms-input-placeholder{/*InternetExpl...