Skip to main content
Recent RFCs

Recently published RFCs

via @canory Recent RFCs www.rfc-editor.org view
  • Markdown Plaintext Embed Permalink
  • 20/50 words 7s read

    A set of requirements for active Operations, Administration, and Maintenance (OAM) for Service Function Chaining (SFC) in a network is

    #feeds
    Grumpy Website

    Do you want to cancel? – YES / CANCEL

    via @tdro Grumpy Website grumpy.website view
  • Markdown Plaintext Embed Permalink
  • 11/50 words 4s read

    nikitonsky: Everything is a Video Call if you are brave enough

    #feeds
    Bing Images

    Bing's Homepage Images Archive

    via @default Bing Images bing.com view
  • Markdown Plaintext Embed Permalink
  • 27/50 words 9s read

    Chapman Adventure Playground in the Gathering Place, Tulsa, Oklahoma (© Susan Vineyard/Alamy)

    Chapman Adventure Playground in the Gathering Place, Tulsa, Oklahoma (© Susan
    Chapman Adventure Playground in the Gathering Place, Tulsa, Oklahoma (© Susan
    Index: Cache · Source
    #feeds
    Grumpy Website

    Do you want to cancel? – YES / CANCEL

    via @tdro Grumpy Website grumpy.website view
  • Markdown Plaintext Embed Permalink
  • 8/50 words 3s read

    nikitonsky: Once you have a good thing, stop.

    #feeds
    Bing Images

    Bing's Homepage Images Archive

    via @default Bing Images bing.com view
  • Markdown Plaintext Embed Permalink
  • 20/50 words 7s read

    Alam-Pedja Nature Reserve, Estonia (© Sven Zacek/Minden Pictures)

    Alam-Pedja Nature Reserve, Estonia (© Sven Zacek/Minden Pictures)
    Alam-Pedja Nature Reserve, Estonia (© Sven Zacek/Minden Pictures)
    Index: Cache · Source
    #feeds
    Bing Images

    Bing's Homepage Images Archive

    via @default Bing Images bing.com view
  • Markdown Plaintext Embed Permalink
  • 27/50 words 9s read

    Polar bear mother and cubs, Churchill, Manitoba, Canada (© Thorsten Milse/Getty Images)

    Polar bear mother and cubs, Churchill, Manitoba, Canada (© Thorsten Milse/Getty
    Polar bear mother and cubs, Churchill, Manitoba, Canada (© Thorsten Milse/Getty
    Index: Cache · Source
    #feeds
    Grumpy Website

    Do you want to cancel? – YES / CANCEL

    via @tdro Grumpy Website grumpy.website view
  • Markdown Plaintext Embed Permalink
  • 27/50 words 9s read

    nikitonsky: It became the norm to show irrelevant search results when you run out of relevant ones. I guess the thinking goes “better show something than nothing”.

    #feeds
    Bing Images

    Bing's Homepage Images Archive

    via @default Bing Images bing.com view
  • Markdown Plaintext Embed Permalink
  • 28/50 words 9s read

    Bad River in Copper Falls State Park, Wisconsin (© Big Joe/Getty Images)

    Bad River in Copper Falls State Park, Wisconsin (© Big Joe/Getty Images)
    Bad River in Copper Falls State Park, Wisconsin (© Big Joe/Getty Images)
    Index: Cache · Source
    #feeds
    Mozilla Hacks

    hacks.mozilla.org

    via @default Mozilla Hacks hacks.mozilla.org view
  • Markdown Plaintext Embed Permalink
  • 41/50 words 14s read

    Mozilla has just launched the AI Guide, a collaborative hub for developers to join forces, inspire each other, and lead the way in groundbreaking generative AI advancements. The AI Guide’s initial focus begins with language models and the aim is to…

    #feeds
    tdro

    Another wandering soul whispering into the void. If you are looking for my blog you are in the wrong place. The profile and header pictures are brought to you by cdd20.

    tdro micro.thedroneely.com (edited) view
  • Markdown Plaintext Embed Permalink
  • 130/50 words 43s read

    An actual but where did my Linux memory go command;
    This program (repositories) came in handy while helping someone resolve an problem. Want to see memory usage and shared memory, perhaps sorted by swap?

    shell
    smem -s swap -kta
    smem --sort swap --abbreviate --totals --autosize
    What about on other categories running a --sort?
    text
    swap     (amount of swap space consumed ignoring sharing)
    command  (process command line)
    maps     (total mappings count)
    name     (process name)
    pid      (process id #)
    user     (process owner)
    pss      (proportional set size including sharing)
    rss      (resident set size ignoring sharing)
    uss      (unique set size)
    vss      (virtual set size; total virtual memory mapped)
    Bonus: A filesystem usage command to catch /tmp/ and tmpfs (temporary file storage) abusers;
    shell
    df -h | grep tmpfs
    df --human-readable | grep tmpfs
    #gists #linux

    Authors