Just like last week, where we wanted to replace a string, we can use sed
for this task:
sed '/pouet/d' file.txt
This will output file.txt
on stdout without the lines containing pouet
.
{ | |
"LoRA_type": "Standard", | |
"adaptive_noise_scale": 0, | |
"additional_parameters": "", | |
"block_alphas": "", | |
"block_dims": "", | |
"block_lr_zero_threshold": "", | |
"bucket_no_upscale": true, | |
"bucket_reso_steps": 64, | |
"cache_latents": true, |
#!/bin/bash | |
### steps #### | |
# verify the system has a cuda-capable gpu | |
# download and install the nvidia cuda toolkit and cudnn | |
# setup environmental variables | |
# verify the installation | |
### | |
### to verify your gpu is cuda enable check |
Total: 1~5 | |
下面各项得分的平均分 | |
Experience: 1~5 | |
过往项目的客户群(ToB or ToC)、项目规模、项目中担当的角色、是否有突出贡献等等 | |
Skill: 1~5 | |
开发基础、设计能力、能否攻克中大型开发难题,能否担当 full stack 任务等等 | |
<?php | |
namespace App\Utilities\Search; | |
use App\Library\TermFrequency; | |
use NlpTools\Documents\TrainingSet; | |
/** | |
* BM25 is a class for ranking documents against a query. |
Putting cryptographic primitives together is a lot like putting a jigsaw puzzle together, where all the pieces are cut exactly the same way, but there is only one correct solution. Thankfully, there are some projects out there that are working hard to make sure developers are getting it right.
The following advice comes from years of research from leading security researchers, developers, and cryptographers. This Gist was [forked from Thomas Ptacek's Gist][1] to be more readable. Additions have been added from
tun/tap驱动程序实现了虚拟网卡的功能, tun表示虚拟的是点对点设备, tap表示虚拟的是以太网设备, 这两种设备针对网络包实施不同的封装.
经过操作系统通过TUN/TAP device发出去的包, 被deliver到一个用户空间程序, 这个用户空间程序把他自己附属于到这个device上. 一个用户空间程序也可以发送包给一个TUN/TAP device. 在这种情况, TUN/TAP device deliver(或inject)这些包到操作系统的network stack, 因此, 仿真他们的接收来自一个外部源.
利用tun/tap驱动, 可以将tcp/ip协议栈处理好的网络分包传给任何一个使用tun/tap驱动的进程, 由进程重新处理后再发到物理链路中.
There are a lot of ways to serve a Go HTTP application. The best choices depend on each use case. Currently nginx looks to be the standard web server for every new project even though there are other great web servers as well. However, how much is the overhead of serving a Go application behind an nginx server? Do we need some nginx features (vhosts, load balancing, cache, etc) or can you serve directly from Go? If you need nginx, what is the fastest connection mechanism? This are the kind of questions I'm intended to answer here. The purpose of this benchmark is not to tell that Go is faster or slower than nginx. That would be stupid.
So, these are the different settings we are going to compare:
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.