首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏TopFE

    OAuth 2.0 for Client-side Web Applications

    本文介绍了如何从一个JavaScript的Web应用程序实现的OAuth 2.0授权访问谷歌的API。的OAuth 2.0允许用户共享特定的数据与应用程序,同时保持他们的用户名,密码和其他私人信息。例如,应用程序可以使用OAuth 2.0从用户那里获得许可,以存储在他们的谷歌驱动器的文件。

    3.2K10编辑于 2022-01-24
  • 来自专栏鸿鹄实验室

    从HackerOne学Client-Side Template Injection with AngularJS

    这几天一直跟着团队的小伙伴刷HackerOne,然后就遇到了这个漏洞,记录一下。

    88110发布于 2021-04-15
  • 来自专栏ASP.NETCore

    想打印k8s资源YAML结果搞懂了Client-Side & Server-Side Apply

    前言 由于查看k8s资源YAML时常看到沉长的YAML与手写的格式,相差甚远不利于阅读,经过探索官方文档,才理解什么是Client-Side & Server-Side Apply。 由这两个字段,引出本文的两位主角,Client-Side Apply(以下简称CSA)和Server-Side Apply(以下简称SSA) kubectl.kubernetes.io/last-applied-configuration 是使用kubectl apply进行Client-Side Apply时,由kubectl自行填充的。 Client-Side Apply kubectl apply是一种声明示的K8S对象管理方式,是我们最常用的应用部署,升级方式之一。

    1K40编辑于 2023-05-11
  • 来自专栏黑客编程

    Burpsuite入门之target模块攻防中利用

    DOM-based) 客户端sQL注入(基于DOM的反射) Client-side SQL injection (stored DOM-based) DOM-based) 客户端XPath注入(基于DOM的反射) Client-side XPath injection (stored DOM-based) 客户端 XPath注入(基于存储的DOM) Client-side JSON injection (DOM-based) 客户端JSON注入(基于DOM) Client-side JSON injection (reflected DOM-based) 客户端JSON注入(基于DOM的反射) Client-side JSON injection (stored HTTP parameter pollution (reflected) 客户端HTTP参数污染(反映) Client-side HTTP parameter pollution

    1.8K20编辑于 2023-04-11
  • 来自专栏NFS

    Linux 6.12内核中 “客户端侧纠删编码” 介绍及场景应用

    《Linux在高性能存储和分布式环境方面的进步》 NFS中的Client-side Erasure Coding(客户端侧纠删编码)是一种数据保护机制,用于在客户端进行数据的编码和解码,目的是提高存储系统的可靠性 Client-side Erasure Coding在NFS中的作用 在NFS(Network File System)中,Client-side Erasure Coding是指在客户端对数据进行纠删编码的过程 Client-side Erasure Coding的工作原理 数据分块和编码: 在客户端,原始文件被分割成多个数据块(例如,分割成4个数据块)。 Client-side Erasure Coding的优势 提高容错性: 通过客户端执行纠删编码,即使存储或传输过程中丢失部分数据块,客户端也能够通过冗余数据块恢复原始数据,从而提高系统的容错性和数据可靠性 总结 Client-side Erasure Coding是NFS协议中的一种数据保护机制,旨在通过在客户端执行纠删编码来提高数据的容错性和系统性能。

    21910编辑于 2025-07-27
  • 来自专栏黯羽轻扬

    图解 SSR 等 6 种前端渲染模式

    写在前面 React、Vue 等现代化前端框架的大旗之下,CSR(Client-Side Rendering)模式深入人心: CSR (Client-Side Rendering) – rendering 二次渲染,复用服务端渲染的 HTML DOM 结构和数据,在客户端“温启动”JS 渲染 Prerendering:预渲染,在编译时运行一个客户端应用抓取其初始状态生成静态 HTML 一.CSR CSR(Client-side rendering),即客户端渲染,是指用 JS 直接在浏览器里渲染页面,包括数据请求、视图模板、路由在内的所有逻辑都在客户端处理: Client-side rendering (CSR) means offers a fast First Paint, First Contentful Paint and Time To Interactive – assuming the amount of client-side as Universal Rendering or simply “SSR”, this approach attempts to smooth over the trade-offs between Client-Side

    4.6K11发布于 2020-06-24
  • 来自专栏爱可生开源社区

    分布式 | 中间件是如何处理 Prepare Statement 和游标的

    client-side PS: 由 client 来实现 PS 接口,prepare 阶段完成拼装参数,拼装完后,一次性发送 即时 SQL 给 server ,由 server 来完成优化、执行。 使用 dble 侧 PS 必要条件 DBLE 端 无 客户端 如果是 JDBC 需开启 useServerPrepStmts ,此时才会使用 server-side prepare ,否则属于 client-side Preapred Statement ,回收所有资源 响应:无 流程图: 可以看到 client <-> dble 通讯使用了 server-side prepare,dble <-> MySQL 通讯使用了 client-side 对于客户端较友好,不会因为大查询而 OOM 游标 的缺点 较慢 资源不及时释放 分类 server-side cursor:server 把结果集暂存起来,维护一个游标,client 根据需要读取指定的行数 client-side 另一种 client-side cursor:client 把所有结果集读取到本地缓存,client 每次从缓存读取指定行数(不推荐,本质上是个伪 cursor,只实现了 cursor API。

    86630编辑于 2022-01-04
  • 来自专栏NetCore

    【翻译】Asp.net Core介绍

    A unified story for building web UI and web APIs web UI和web Apis使用统一的库 Integration of modern client-side Client-side development 前端开发 ASP.NET Core is designed to integrate seamlessly with a variety of client-side See Client-Side Development for more details. 详见Client-side Development。

    1.4K100发布于 2018-02-02
  • 来自专栏thinky

    Service Discovery In Kubernetes

    对客户端隐藏了实现细节 缺点:引入了loadbalancer组建,增加了系统故障风险,lb组件可能成为系统的性能瓶颈,该lb需要支持client与server之间的所有网络协议,增加了一次网络路由节点 Client-side Dicovery Pattern [client-side] 相对于server-side的方式,一处了loadbalancer组件,转而由client从service-register获取实例清单 也就是说,kubeproxy充当了client-side模式中的路由插件,只是不需要由服务自行实现,而是采用了流量代理的模式在外部实现,这样可以避免对服务的侵入性,同时增加了独立性与通用性。 同时IPVS支持更多的负载均衡算法 总结 kubernetes中,通过service cluster ip,DNS add-on,kube-proxy整合的方案,同时兼具了传统client-side

    1K20编辑于 2022-03-30
  • 来自专栏Development

    Web Development Tech Stack You Need In 2019

    Client-side Server Side The client-side is also known as front-end and similarly, the server-side is Front-end Development / Client-side Programming Everything your users see on their device’s screen is

    54500发布于 2019-08-22
  • 来自专栏java开发的那点事

    21-Spring Cloud 总结

    服务注册中心 link link consul中文解释:n.领事 Ribbon Ribbon is a client-side load balancer that gives you a lot of 服务网关 link link gateway中文意思:n.网关;途径;门道;手段 Config Spring Cloud Config provides server-side and client-side

    40110发布于 2021-11-16
  • 来自专栏张善友的专栏

    使用Combres 库 ASP.NET 网站优化

    Combres - WebForm & MVC Client-side Resource Combine Library 是一个 ASP.NET 网站的客户端资源js,css的压缩,合成和缓存库,基于Apache 关于Combres库的详细介绍可以看codeproject上的文章: 1.0版本 Combres - WebForm & MVC Client-side Resource Combine Library

    4.5K90发布于 2018-01-22
  • 来自专栏iOS技术

    WebKit 历史栈缓存策略探索

    . // If the source and the destination back / forward list items are the same, then this is a client-side ProcessSwapping, "suspendCurrentPageIfPossible: Not suspending current page for process pid %i because this is a client-side 添加进历史栈缓存 backForwardCache().addEntry(*fromItem, WTFMove(suspendedPage)); ... } 可以看到源码中的注释,在发生了client-side 如何理解client-side redirect? WKWebView 切换页面时,发生cross-site + client-side redirect 时会清理当前 WebProgressProxy 关联的所有历史栈缓存,后续切换到这些历史栈时都需要重新请求网络

    1K20发布于 2021-07-20
  • 来自专栏oracleace

    使用pgbench对PostgreSQL进行基准测试

    skipping NOTICE: table "pgbench_tellers" does not exist, skipping creating tables... generating data (client-side s) vacuuming... creating primary keys... done in 1.69 s (drop tables 0.00 s, create tables 0.07 s, client-side

    1.7K10编辑于 2023-09-06
  • 来自专栏张家辉的树屋

    h5-capture 使用和明细

    server.php', true); xhr.send(form); } 复制代码 使用 fileReader 和 canvas The image can also be displayed on the client-side without uploading it e.g. for client-side image editing purposes, using the FileReader and a canvas

    1.7K30发布于 2021-02-02
  • 来自专栏ZFiori Studio

    ZFiori Studio

    It eases your development with a client-side HTML5 rendering library including a rich set of controls

    58740发布于 2019-04-19
  • 来自专栏魔术师卡颂

    为了生成唯一id,React18专门引入了新Hook:useId

    客户端无法简单生成稳定、唯一的id是个由来已久的问题,早在15年就有人提过issue: Generating random/unique attributes server-side that don't break client-side 参考资料 [1]Generating random/unique attributes server-side that don't break client-side mounting: https:

    1.4K30发布于 2021-12-02
  • 来自专栏轻量级微服务

    Next.js - SSR / SSG / CSR / ISR / Dynamic Routing

    .// It won't be called on client-side, so you can even do// direct database queries.export async function `posts` as a prop at build time return { props: { posts, }, }}export default BlogCSR (Client-side

    1.6K20编辑于 2022-12-01
  • 来自专栏howtouselinux

    How to increase SSH connection timeout in Linux

    add ServerAliveInterval 20 and ServerAliveCountMax 100 on client-side in file ~/.ssh/ssh\_config or

    66510发布于 2021-03-28
  • 来自专栏用户4822892的专栏

    Java vs. JavaScript

    JavaScript used for client-side programming development. JavaScript is supported by web browsers. JavaScript is a client-side application that doesn’t require you to grab the code from any remote server

    96520发布于 2020-03-18
领券