Skip to content
#

unix

Here are 2,173 public repositories matching this topic...

rubenofen
rubenofen commented Sep 24, 2019

Node version (or tell us if you're using electron or some other framework):

12.1.0

ShellJS version (the most recent version/Github branch you see the bug on):

0.8.3

Operating system:

Windows

Description of the bug:

sed is applied only once by line:
original archive:
import [COMPONENTNAME]Base from './[COMPONENTNAME]Base';
`const [COMPONENTNAME] = styled( [COMPONENTNAME]

d4t4king
d4t4king commented May 1, 2020

Describe the bug
Online docs for NETW-3200 are not yet implemented.

Version

  • Distribution: Ubuntu 18.04
  • Lynis version: 3.0.0

Expected behavior
A (minimal) description of the problem should exist and ideally a general direction on how to fix the issue.

Output

A new discovery!

Oops, looks like this control is not listed yet in the database.

Want to help 
Arthur-Kamau
Arthur-Kamau commented May 1, 2020

Documentation is critical to any system.
Well maintained documentation helps a few things:

  • Assists new members by enabling them to quickly go through the system details.
  • Facilitates existing members to learn more about different parts of the system.
  • Among other things.

This is more of an inquiry, could somethings like read the docs be integrated into serenity os github repository. If

krader1961
krader1961 commented Apr 17, 2020

Someone asked on IRC how if Elvish supported vi mode editing. I couldn't find any mention in the documentation and greping the source didn't return any promising results. It turns out that doing

edit:insert:binding[Ctrl-'['] = $edit:command:start~

will enable a very limited vi editing mode. See also #730 for why the features are currently limited. The currently support vi commands

julianhatwell
julianhatwell commented Mar 8, 2020

The opening code example is given as:

$ echo 'foo\nbar\nfoo' | sort | uniq -c | sort -nr
2 foo
1 bar
$ echo 'foo\nbar\nfoo' | sort | uniq -c | sort -nr |

but should be:

$ echo -e 'foo\nbar\nfoo' | sort | uniq -c | sort -nr
2 foo
1 bar
$ echo -e 'foo\nbar\nfoo' | sort | uniq -c | sort -nr |

-e switch is required for interpolating escaped \n. Without it, the example

ssrlive
ssrlive commented Aug 27, 2019

也算一个总结, 提醒后来人少走弯路.

  • 写入 socket 时的内存管理
    uv_write 函数写网口时, 写入数据的内存必须由你管理, 在 回调函数 uv_write_cb 内部释放. 如果你不信邪, 在 uv_write 执行完以后马上释放, 恭喜你掉坑里了. 我就在这坑里呆了一星期. 因为这么干的结果是, 在 Windows 下一切正常, 在 Linux 下会随机写失败. 估计 Windows 对这块写内存复制了一份以增加安全性, 类 unix 平台就不管你死活了. 这点差异性就足以逼你发疯痛不欲生了.

  • 接收数

ialbert
ialbert commented Jan 15, 2020

Upon loading the latest version (2.6.1) of the player a warning appears in the console that states:

[Deprecation] document.registerElement is deprecated and will be removed in M80, around February 2020. 
Please use window.customElements.define instead. See https://www.chromestatus.com/features/4642138092470272 and https://developers.google.com/web/updates/2019/07/web-components-time
pvyleta
pvyleta commented Jan 5, 2019

First of all: thanks for the amazing work and super easy install scripts. Now to my point:

The readme is well written, unfortunately not absolutely up to date. for example, it is missing completely the information about the very handy script 'change.sh' and how to use it.

Furthermore, it would make sense to me to include installation of the python-pip package in the install_ubuntu.sh script,

pevik
pevik commented Mar 13, 2020

It'd be good to state publicly the oldest kernel and glibc (or even other libc versions) we support.
This would allow us to remove some legacy code or force support for legacy code.

This shouldn't require test to be functional (e.g. for some cases like module drivers it could be hard),
but LTP to be compiled and when difficult/impossible to achieve this functionality, it could resulted in TCO

tgeoghegan
tgeoghegan commented Apr 2, 2020

recvfrom(2) takes an integer flags parameter, but it is missing from nix's version:

pub fn recvfrom( sockfd: RawFd, buf: &mut [u8] ) -> Result<(usize, Option<SockAddr>)>

The implementation of recvfrom unconditionally passes 0 to libc::recvfrom's flags parameter. This means I can't do something like MSG_PEEK w

whereswaldon
whereswaldon commented Oct 5, 2018

I tried Oh, and it seems interesting. Certainly the programmability aspect is cool, and I like the idea of the type system. However, there's no documentation about how to customize anything (your prompt, for instance). I could read the source code, but I decided to try the shell on a whim at work, and I can't reasonably spend the time. I think it would be pretty easy to put together some guidance

Improve this page

Add a description, image, and links to the unix topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the unix topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.