*Permanently Deleted*
  • manifex manifex Now 66%

    crAIyon, photo style - various prompts:

    aircraft carrier flying through blue skies

    dick tracy flying using a rocket pack

    flapper dancers in front of 20th century fox spotlights

    1
  • Favorite Saga?
  • manifex manifex Now 100%

    Rereading Lovecraft's Chthulu Mythos. I've read most of his popular novellas, it's fun going and reading little 2-page shorts about going crazy and stuff.

    2
  • Me waiting for DNS changes
  • manifex manifex Now 100%

    Make sure your current TTL isn't 24hrs at least 24hrs ahead of time... I've seen so many disorganized migrations have to get delayed due to the lack of forethought.

    4
  • First!
  • manifex manifex Now 100%

    Glad you're here!

    2
  • RedHat Isolate New Code Behind RHEL Subscription
  • manifex manifex Now 66%

    Ah, so they are putting CentOS as a 'test' before RHEL. That sorta defeats the purpose of CentOS, but whatever.

    1
  • 1000 Subs
  • manifex manifex Now 100%

    Boooom Shaka laka

    2
  • RedHat Isolate New Code Behind RHEL Subscription
  • manifex manifex Now 100%

    I thought Fedora —> RHEL —> CentOS, but I could be wrong.

    1
  • RedHat Isolate New Code Behind RHEL Subscription
  • manifex manifex Now 100%

    Thanks, appreciate it.

    3
  • *Permanently Deleted*
  • manifex manifex Now 100%

    Gimping: A Primer

    23
  • *Permanently Deleted*
  • manifex manifex Now 100%

    The no-shitters keep it secret. Keep it safe.

    13
  • *Permanently Deleted*
  • manifex manifex Now 100%

    Daaaaaamn. Too soon?

    6
  • *Permanently Deleted*
  • manifex manifex Now 100%

    It's just delayed shit posting.

    7
  • Thoughts on RHEL going closed source ?
  • manifex manifex Now 100%

    Is this a fork in the stream, then at this point?

    1
  • Thoughts on RHEL going closed source ?
  • manifex manifex Now 100%

    How has Cannonical support been recently? I used Ubuntu Server for a while, but never really needed to use my support contract, but my recollection is that it was fairly light.

    1
  • Nice job, all! We have over 1,000 subscribers. Remember, this is a community, so the more submissions/posts, the more content!

    20
    -2
    RedHat Isolate New Code Behind RHEL Subscription
  • manifex manifex Now 100%

    If I'm reading this correctly, CentOS is no longer getting RHEL downstream code, essentially forking CentOS from RHEL. Not great news, but not suprising considering the IBM acquisition.

    4
  • Dear Red Hat: Are you dumb?
  • manifex manifex Now 100%

    Not to mention CentOS stream is now essentially a fork of current code... total bummer. WTF.

    1
  • Found this in a friend's house
  • manifex manifex Now 100%

    First word that came to my mind.

    2
  • Rich Lives matter
  • manifex manifex Now 100%

    Billionaire bloodline bludgeoned.

    2
  • Having feed set to 'Hot' in both Subscribed and All show posts that are over 7 days old and not updating.
  • manifex manifex Now 100%

    It's the version of code we are running. Use 'new' until the dude can update our code.

    9
  • Let's Talk Space
  • manifex manifex Now 100%

    Like a sneaker-net, but in space! I like it!

    3
  • I've been watching *For All Mankind* and it got me thinking about networking in space... TTLs, 64k packets, transmission mediums, etc. As a 'network generalist,' I find more and more niches to deep dive into... If you specialize in a certain networking niche, what is it? Would you consider networking in space? Some informative reading below: - https://www.cisco.com/c/en/us/products/collateral/interfaces-modules/ip-vsat-satellite-wan-module/product_data_sheet0900aecd804bbf6f.html - https://en.wikipedia.org/wiki/Interplanetary_Internet - https://esc.gsfc.nasa.gov/publication

    11
    8

    KillNet, Anonymous Sudan, and Pinchy Spider (a.k.a. REvil) reportedly announced a large-scale attack aimed against European and US financial institutions due to be launched on 16 June 2023. The announcement was made in a video distributed through the official Telegram channel of Anonymous Sudan. The first target will allegedly be the SWIFT payment system with the intention to “paralyze it.” This campaign appears to be a collaboration between the three known threat groups. While Killnet actors are known for their DDoS attacks, Killmilk, the group’s leader, stated this will not be a DDoS attack. Anonymous Sudan is not known for advanced attacks of this magnitude; however, Pinchy Spider, the group behind REvil ransomware, is a quite advanced actor. Killnet stated “Nothing will save you, and this is not a warning – I’m just informing you. You have not encountered such problems yet.” and “This is not a DDoS attack, games are over. “No money – no weapons – no Kyiv regime” – this formula will work.” An Anonymous Sudan spokesperson added “Many European banks will be targeted and we will hit without mercy.” These attacks appear to be in protest of the West’s financial and military support to Ukraine.

    20
    4

    Before the APIs are shut down, if you want to wipe your reddit account, I found JavaScript-based account wiper to work quite well and is aligned with security best practices called 'PowerDelete Suite.' Once logged into your reddit account, drag the [red button](https://codepen.io/j0be/pen/WMBWOW) to your bookmark bar and click it. That initiates the script that will work on your reddit account. You have options to overwrite your comments before deleting them, just deleting them, downloading your data, etc. Very thorough. **Boot Script Code** `javascript:` `(` ` function() ` ` {` ` window.bookmarkver = '1.4'; ` ` var isReddit = document.location.hostname.split('.').slice(-2).join('.') === 'reddit.com';` ` var isOverview = !! document.location.href.match(/\/overview\b/i); ` ` if (isReddit && isOverview) ` ` {` ` var cachBustUrl = 'https://raw.githubusercontent.com/j0be/PowerDeleteSuite/master/powerdeletesuite.js?' + (new Date().getDate());` ` fetch(cachBustUrl).then` ` (` ` function(response)` ` { ` ` return response.text();` ` }` ` ).then` ` (` ` function(data) ` ` { ` ` var script = document.createElement('script');` ` script.id = 'pd-script'; script.innerHTML = data;` ` document.getElementsByTagName('head')[0].appendChild(script);` ` }` ` ).catch` ` (` ` function(){alert('Error retreiving PowerDeleteSuite from github');}` ` );` ` } ` ` else if (confirm('This script can only be run from your own user profile on reddit. Would you like to go there now?'))` ` { ` ` document.location = 'https://old.reddit.com/u/me/overview';` ` } ` ` else ` ` {` ` alert('Please go to your reddit profile before running this script');` ` }` ` }` `) ` `();` **PowerDelete Suite Code** [PowerDelete Suite GitHub Repository](https://github.com/j0be/PowerDeleteSuite/)`___`

    11
    1
    www.cnn.com

    Actually well written and covers the basics of what's happening in the broader context of online social communities.

    29
    2

    I read 'The Iliad,' 'The Oddysey,' and 'Beowulf' when I was in high school. Followed by parts of 'Inferno' and 'Cantebury Tales.' In college when studying Japanese, I read 'The Tale of Genji.' The long form of 'sagas,' whether in poetic or prose form, pull me in. What are some long-form myths and tales you enjoy?

    8
    7

    What's the 'freakiest' event or situation you've experienced in production?

    14
    16

    RIP - you were purrfect.

    17
    1
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearJU
    The Clash - Straight to Hell (Official Audio)
    www.youtube.com
    2
    0

    Looked down at my ThinkPad dock to plug in a USB device and saw a 10 next to it. USB.org has specs on a 10Gbps serial bus. Time to trash the network. I'm getting a 10Gbps 24-port USB hub. :D

    10
    5

    Conceptualizing time and the spiritual realm has always been made easier for me with visuals. 'The Evolutionary Tree of Religion (Faith, Myths, & Mysticism) v2' by Simon E. Davies is probably my favorite way to explore how humans perceive the supernatural.

    15
    4

    Using Craiyon - my first attempt at AI image generation. ![](https://sh.itjust.works/pictrs/image/c11e4c28-020c-4703-83ae-06769fdef02a.png) ![](https://sh.itjust.works/pictrs/image/7e039845-b8be-400c-8e75-e4eeab74b7c6.png) ![](https://sh.itjust.works/pictrs/image/faf180a3-8a5b-4d09-8bcb-3adbbf16f0e0.png) ![](https://sh.itjust.works/pictrs/image/a655ae29-8fc9-414b-b28b-e9ef2767aa74.png)

    10
    3

    Do you have a preferred vendor for your network gear? I'll go first: - **Firewalls:** Fortinet, ASA, Palo Alto - **Route/Switch:** Cisco, HPE/Aruba - **Wireless:** Aruba, Cisco, Meraki - **Auth:** NPS, ISE, ClearPass - **Monitoring:** SolarWinds, Auvik, PRTG - **Automation:** Ansible - **SDWAN:** PA Prisma SDWAN, Fortinet, Velocloud

    8
    36
    networking
    networking manifex Now 100%
    First!

    Enterprise network and security is where I spend most of my time and thought there may be others out there who want to commiserate with me. Hello world!

    12
    10
    manifex Now
    17 185

    manifex

    sh.itjust.works

    Post-human urbanite weirdo.