Skip to content

Here's what's popular on GitHub today...

Trending repository
aborruso
aborruso commented May 24, 2021

If I run trim

echo [[Column1]; ["  Value1   a lot of spaces  "] [Value3]] | str trim

it trims only "wrong" withe spaced at the beginning and at the end

───┬──────────────────────────
 # │         Column1
───┼──────────────────────────
 0 │ Value1   a lot of spaces
 1 │ Value3
───┴──────────────────────────

It it would be great a complete white spaces cleaning

thanos
Trending repository
GiedriusS
GiedriusS commented May 27, 2021

Is your proposal related to a problem?

Replication is currently slow.

Describe the solution you'd like

tools bucket replicate could upload a few objects at a time instead of one by one

Describe alternatives you've considered

Copying the objects with some other tool but tools bucket replicate is way too convenient because you can use two completely different object st

Release Radar - May 2021
Release Radar

We’ve seen some amazing community projects this last month. This was a huge month for the community with hundreds of new releases. There’s everything from world-changing tech to weekend hobbies.

scikit-learn logo
Popular topic
scikit-learn is a Python module for machine learning.
Trending repository
next.js
Trending repository
GitHub Virtual Meetup: Korea
Upcoming event recommended by GitHub
Jun
11

GitHub Virtual Meetup: Korea

June 11, 2021 - June 20, 2021 • Online

이에 한국깃허브에서 한국어를 사용하는 개발자들을 위한 첫번째 가상 meetup 이벤트를 발표하게 되어 기쁩니다. 이번 가상 meetup은 한국시간, 6월 15일 화요일 오후 19시에 진행 됩니다.
POEditor screenshot
App recommended by GitHub

POEditor

POEditor is a highly scalable localization management service designed for translating software products, such as apps, sites and games.

Integrated with GitHub, it syncs with your repos automatically. You don't ever need to touch a language file.

Slack and HipChat integrations make it easy to get realtime updates about the localization process and the translation progress.

javascript-questions
Trending repository
oldbootz
oldbootz commented Aug 6, 2020

Errors:
126. new Intl.NumberFormat is not supposed to get passed a single object as param. The first param must be a string and the second param can be an object.
135. Spelling error ('tis' should be 'this').

Suggestion:
86. Needs to be more explicit by calling the function in the example. Calling getName() with any falsy value would not set hasName to true with your correct answer.

jina
Trending repository
JoanFM
JoanFM commented Jul 22, 2020

Description
We have to continuously push for quality, thus we always need to improve our testing and test coverage. Any improvement of testing is a great contribution to jina.

If you have no idea how to get started on this, here there are some ideas that could be good to have.

Trending repository
G-LION-G
G-LION-G commented May 28, 2021

Why you need it?

目前 1.4.2 版本 使用consul做配置中心时, 读取配置是从consul 根目录读取的,还不支持从自定义的目录读取配置,
这让配置中心的数据难以归类管理。

How it could be?

希望能够支持自定义配置目录

Other related information

Add any other context or screenshots about the feature request here.

Trending repository
danieldeutsch
danieldeutsch commented Jun 2, 2021

Is your feature request related to a problem? Please describe.
I typically used compressed datasets (e.g. gzipped) to save disk space. This works fine with AllenNLP during training because I can write my dataset reader to load the compressed data. However, the predict command opens the file and reads lines for the Predictor. This fails when it tries to load data from my compressed files.