https://linen.dev logo
Join Slack
Powered by
# ask-ai
  • s

    s

    09/10/2020, 2:42 AM
    https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md TIL all this stuff is available via github actions 🤯
    • 1
    • 1
  • a

    Artem Astapenko

    09/10/2020, 4:03 PM
    just a question: why this workspace looks different comparing to other slack workspaces 🙂
    j
    j
    m
    • 4
    • 8
  • s

    s

    09/14/2020, 5:30 AM
    https://medium.com/@joshuakelly/affiga-is-shutting-down-13a8d6351d57
    • 1
    • 1
  • j

    John (Airbyte)

    09/20/2020, 2:07 AM
    Drawing octopuses with the kids
    ❤️ 1
    s
    m
    • 3
    • 10
  • j

    Jared Rhizor (Airbyte)

    09/23/2020, 3:26 AM
    Gitbook doesn't let me edit pages if it's at 50% width on my screen.
    m
    • 2
    • 3
  • m

    Michel

    10/13/2020, 11:34 PM
    Thought of the day: Do you think google calendar sometime changes the order of zoom/google meet when you want to add your meeting details? A nice way to create micro-frustration and thus promoting their "default"
    s
    • 2
    • 6
  • j

    John (Airbyte)

    10/15/2020, 9:20 PM
    https://www.feverbee.com/18-hour-rule/ I guess we will need to be very responsive 😛
    s
    c
    • 3
    • 5
  • m

    Michel

    11/14/2020, 12:19 AM
    Screen Shot 2020-11-13 at 4.19.47 PM.png
    • 1
    • 1
  • j

    John (Airbyte)

    11/28/2020, 12:18 AM
    Please meet Byto, my daughter’s new plush toy 😉
    😍 5
    🐙 7
    • 1
    • 1
  • j

    James Peterson

    12/10/2020, 3:14 AM
    Hi all! Given GCP buying Dataform, looking to revisit this. This change means my main employer may now consider it the default (vs. my beloved dbt). Does anyone have any insight into: • Their experience with Dataform vs. dbt? • If the GCP commitment to furthering Dataform is genuine?
    c
    t
    • 3
    • 3
  • c

    Christian Franklin

    12/14/2020, 10:49 PM
    Random question: at the pace Airbyte is developing, what is the best way to keep up with code / version updates when running in AWS VPC? Do I re-install every time?
    c
    • 2
    • 2
  • c

    charles

    12/14/2020, 11:31 PM
    I learned something today. Anyone able to guess what this code snippet prints out? It's a stream flatmapped inside a stream flatmapped inside a stream. I'll put the answer in the thread, so don't open the thread if you want to puzzle about it first.
    Copy code
    public static void main(String[] args) {
        final Stream<Integer> stream = Stream.of(1)
            .peek(i -> System.out.println("outer stream"))
            .flatMap(i -> {
              return Stream.of(1)
                  .peek(i1 -> System.out.println("middle stream"))
                  .flatMap(i2 -> {
                    return Stream.of(1).peek(i3 -> System.out.println("inner stream"))
                        .onClose(() -> System.out.println("inner stream closed"));
                  })
                  .onClose(() -> System.out.println("middle stream closed"));
            }).onClose(() -> System.out.println("outer stream closed"));
    
        System.out.println("collection is about to start");
        stream.collect(Collectors.toList());
        System.out.println("collection is done");
      }
    j
    r
    • 3
    • 41
  • s

    s

    12/14/2020, 11:33 PM
    my answer
    c
    • 2
    • 5
  • c

    charles

    12/16/2020, 6:51 PM
    I learned another thing about java streams today. Anyone want to guess what this code snippet prints out? I'll put the answer in the thread, so don't open the thread if you want to puzzle about it first.
    Copy code
    public static void main(String[] args) {
        final List<Integer> integers = List.of(1, 2, 3, 4);
    
        final long count = integers
            .stream()
            .peek(i -> System.out.println("i = " + i))
            .count();
        System.out.println("count = " + count);
      }
    🙌 1
    m
    r
    • 3
    • 6
  • j

    John (Airbyte)

    12/22/2020, 6:19 AM
    we're also now featured here: https://blog.panoply.io/17-great-etl-tools-and-the-case-for-saying-no-to-etl
    🙌🏼 5
    p
    • 2
    • 17
  • m

    Michel

    01/04/2021, 5:53 PM
    Cool project from a YC company: https://www.infracost.io/
    👍 2
    b
    h
    • 3
    • 2
  • j

    Jins Kadwood

    01/13/2021, 7:15 AM
    Random question about log storage, On a serious note, why would you not store log data in a time-series DB and then apply some sort of visualisation tool ontop of it? How do others store logs and then query / visualisation / monitor those logs
    c
    j
    • 3
    • 11
  • m

    Michel

    01/14/2021, 12:50 AM
    fun product: https://gather.town/
    j
    • 2
    • 3
  • c

    charles

    01/14/2021, 5:35 PM
    on this episode of interesting behavior in java streams.... what do you expect this code snippet to print:
    Copy code
    // this is just the standard way of turning an iterator of unknown size into a stream.
      public static <T> Stream<T> toStream(Iterator<T> iterator) {
        return StreamSupport.stream(Spliterators.spliteratorUnknownSize(iterator, Spliterator.ORDERED), false);
      }
    
      public static void main(String[] args) {
        final Stream<Integer> ints1 = Stream.of(1,2,3)
            .peek(value -> System.out.println("peek1.value = " + value));
    
        final Stream<Integer> ints2 = Stream.of(1).flatMap(s -> ints1)
            .peek(value -> System.out.println("peek2.value = " + value));
    
        final List<Integer> collect = toStream(ints2.iterator())
            .peek(value -> System.out.println("peek3.value = " + value))
            .collect(Collectors.toList());
    
        System.out.println("collect.size() = " + collect.size());
      }
    hint: it is probably not what you would assume it is and is likely the culprit of this issue: https://github.com/airbytehq/airbyte/issues/1582. will put answer in thread.
    📺 2
    j
    • 2
    • 6
  • s

    s

    01/14/2021, 5:52 PM
    [ITT] my answer
    • 1
    • 1
  • m

    Maxime Lavoie

    01/15/2021, 10:12 AM
    Newb here: Is it normal that when I run
    docker-compose up
    that I have zero Connectors available under Admin? Do you need to add connectors on a per need basis?
    c
    • 2
    • 3
  • r

    ruslan

    01/21/2021, 12:38 PM
    @charles @John (Airbyte) @Michel I tried to google but didn't find good answer for it. Do you have blog post that compares Airbyte and Pipelinewise? Assuming that customer only needs sources and destinations that are already supported by Pipelinewise what argument would you use in favor of Airbyte ?
    c
    j
    • 3
    • 12
  • i

    Iasonas Tragakis

    02/03/2021, 2:53 PM
    Like today in 1998 : The “open source” label was created at a strategy session held on February 3rd, 1998 in Palo Alto, California https://opensource.org/history
    😮 4
    j
    • 2
    • 1
  • j

    John (Airbyte)

    02/09/2021, 6:26 PM
    https://www.indexventures.com/opensource/ happening right now
    👀 2
    • 1
    • 1
  • s

    s

    02/11/2021, 9:17 PM
    https://www.prnewswire.com/news-releases/datadog-signs-definitive-agreement-to-acquire-sqreen-301227252.html
    m
    • 2
    • 1
  • m

    Michel

    02/17/2021, 4:10 AM
    2021-02-16_20-10-00.png
    c
    • 2
    • 4
  • j

    John (Airbyte)

    02/18/2021, 1:02 PM
    https://link.medium.com/fzi9WfdEYdb
    c
    • 2
    • 3
  • s

    Samuel Gordalina

    03/02/2021, 6:24 PM
    I'm launching a new library to manage secrets securely in elixir: https://news.ycombinator.com/item?id=26318489
    👍 4
    airbyte rocket 1
    airbyte heart 1
    m
    • 2
    • 1
  • s

    Srini Kadamati

    03/08/2021, 6:36 PM
    We just published our manifesto on open source BI 🙂 I’m hoping these ideas will resonate with the Airbyte community! https://twitter.com/preset_data/status/1368988670863228928
    🎉 3
    👍 4
    j
    • 2
    • 2
  • s

    s

    03/09/2021, 10:49 PM
    https://www.oracle.com/news/announcement/blog/google-privacy-sandbox-030721.html
    d
    z
    s
    • 4
    • 5
12345...48Latest