#la

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#downloadscalabinaryf...
代码星球 ·2020-04-05

$($('.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】&n...

angular简单登录注册

最近在学angularJs,今天写了一个非常简单的登录注册页面,大概熟悉了一下angularJs的语法。后台数据模拟:user_info.json1登录页面步骤一:首先要把页面给div出来。     页面主要代码:    <...
代码星球 ·2020-04-05

laravel本地开发环境的安装及配置

一.安装VirtualBox-5.2.22-126460-Win.exe和vagrant_2.2.2_x86_64.msi(可视化安装包安装);  安装在D盘二.导入HomesteadVagrantBox虚拟机盒子(命令安装,provider选择3:virtualbox);  vagrantboxaddlaravel/...

input placeholder属性 样式修改(颜色,大小,位置)

1<!DOCTYPEhtml>2<html>3<head>4<metacharset="utf-8">5<title></title>6<style>78input::-webkit-input-placeholder{9/*place...

poj 1328 Radar Installation 贪心

题意:给出岛屿个数n和地雷的范围c,然后再给出n个岛屿的xy坐标,在x轴上放置地雷,求出能覆盖所有岛屿的地雷最小数    否则输出-1 思路:1、一开始,我第一个想法就是对岛屿进行排序,x从小到大,接着在x轴上放置地雷,尽可能靠右边并且能够覆盖左边的岛屿    ,接着筛选右边同时也处于该地雷之内的岛屿,再不断...

lambda架构简介

Lambda架构是由Storm的作者NathanMarz提出的一个实时大数据处理框架。Marz在Twitter工作期间开发了著名的实时大数据处理框架Storm,Lambda架构是其根据多年进行分布式大数据系统的经验总结提炼而成。Lambda架构的目标是设计出一个能满足实时大数据系统关键特性的架构,包括有:高容错、低延时...
代码星球 ·2020-04-05

Replace JSON.NET with Jil JSON serializer in ASP.NET Web API

IhaverecentlycomeacrossacomparisonoffastJSONserializersin.NET,whichshowsthat JilJSONserializer isoneofthefastest.JiliscreatedbyKevinMontrosedevelopera...

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@ha...

Installation of Scylla on CentOS 7

UsethesestepstoinstallScyllausingYumrepositoriesonCentOS.PrerequisitesCentOS7.2orlater,forthe64-bitx86_64architecture.Yumpackagemanagementapplicationinstalled.A...

Software Scalability with MapReduce

 SoftwareScalabilitywithMapReduceCraig HendersonFirstpublishedonlineApril2010Thearchitectureofa software systemisthestructureanddesignofthec...

windows hbase installation

Inthepreviouspost, Ihaveintroducedhowtoinstallhadooponwindowsbasedsystem.Now,Iwillintroducehowtoinstallhbaseonwindows.1.Preparation:beforetheinstallation,l...
代码星球 ·2020-04-05

C# 位域[flags] 转

C#位域[flags]  .NET中的枚举我们一般有两种用法,一是表示唯一的元素序列,例如一周里的各天;还有就是用来表示多种复合的状态。这个时候一般需要为枚举加上[Flags]特性标记为位域,例如: [Flags]  enum Styles{ &nb...
代码星球 ·2020-04-05

HTML5轻松实现搜索框提示文字点击消失---及placeholder颜色的设置

在做搜索框的时候无意间发现html5的input里有个placeholder属性能轻松实现提示文字点击消失功能,之前还傻傻的在用js来实现类似功能。。。示例<formaction="demo_form.asp"method="get"><inputtype="search"name="user_sea...
首页上一页...383384385386387...下一页尾页