Jump to content
Sal's RuneScape Forum

zooey

Forum Member
  • Posts

    5828
  • Joined

  • Last visited

  • Days Won

    52

zooey last won the day on March 1 2015

zooey had the most liked content!

Reputation

733 Extraordinary

About zooey

  • Birthday 07/21/1995

Contact Methods

  • Website URL
    http://www.salscraft.com

Profile Information

  • Location
    Texas

About My Character

  • RuneScape Name
    Zyo
  • RuneScape Status
    Retired
  • RuneScape Version
    I Don't Play
  • RuneScape God
    Don't Care
  • Favourite Skill
    Fishing
  • Combat Type
    Melee
  • Combat Level
    91
  • Overall Skill Level
    1634

Recent Profile Visitors

6796 profile views
  1. I changed my answer: yes I've built the (v0) backend to accept any text input via Discord bot, and then go through 2 or 3 different layers and it eventually comes to the local pen plotter, and it gets randomly placed. Wanted this concept working for YEARS, super proud to have v0 working. Next version will hopefully be on my website and allow a little more customization, and hopefully a pseudo-live webcam feed of the actual plotter. I built a super basic module that was supposed to handle censoring, but I think on the first few versions I'll just do manual checking or something. My code kept thinking "fook" was offensive.
  2. Hello I am making this topic because the last one still shows up everywhere on the forum you just can't click it https://runescape.salmoneus.net/forums/topic/368659-permanent-removal-of-adam/?do=findComment&comment=4171940 Anyways where did we land on this?
  3. https://osrs.joeys.app/ Live log of Sal's OSRS clan events (if someone with the Runelite plugin is online!) Remembered Common Sense set up something similar for the release of Oldschool Runescape here. this one's live with some cool plugin shenanigans going on in the background
  4. For reference, if it’s a computing issue e.g. you’re paying $50/mo for a single VM driving Sal’s and it couldn’t handle me trying to upload a file several times within the rate limiting rule, locked up and there’s no way to just block the request from the shard’s compute power — I’ll 100% chip in $25 a month or whatever to help out. I would love to do that, you’ve been doing a huge thing for forever (and I don’t think direct donations would garner any attention, unless?) and I’ve been learning distributed networking at scale for cheap. I’m working on boring elliptic curve SSL crypto TLS1/1.3 (I guess) for my home network to open up my 80/443 ports. I’ve been relearning c and heap memory stuff hooking up a bunch of $2 esp8266s on my wifi - they’re just blasting udp packets about temperature and light levels, but I have this “cool” websocket protocol I’ve been working on that links up those arduinos and anyone on localserver via tcp socket Edit: Honestly - I’ll spend my own time to help fix the rate limiting problem in any possible way - static screenshots of the cloudflare config and me debugging, asking my startup’s infrastructure guy, going through stackoverflow. I promise I have no ill will here, I know there was a lot going behind the scenes. It would be a great learning experience for me. I don’t know how much ad revenue you get from old school but the oldschool game is still very active 10 years from launch and the old ~100k members come back sometimes. The wiki probably stole the limelight of guides, but it has no community. Bob has the “Sal’s Realm” discord running with a ~hundred daily active users. They run masses. Adam sucks, he does nothing. Please remove him. My GitHub activity, we’re a Django/Redis/react shop running on AWS lambdas/ec2s/elasticsearch. I think sal’s is php/nginx? I admit I’m young but I would love to help if there’s an inkling there in Sal’s head. much love otherwise, sayonnayayara posting from my phone is painful
  5. Hey, I already made a status update about this and spoke with Yuan, I’m aware he’s aware and Sal’s busy and probably married with children but I figured I’d post this here just for future reference for everyone People get banned (Micael Fatia recently, me just now, me in 2018, a few others) with a Cloudflare 1006 response which is a rate limiting challenge/managed challenge configuration, like “user 1 clicked a button too quickly, do X in response” and the X action is configured to be a flat ban from what I can tell. I’m posting from my phone - I got banned on my home IPv4 address, but if I was on my phone, like Mic was, those have IPv6 addresses which are globally unique. Can’t do much then, your phone is perma-banned from sal’s, you need a new phone, or cloudflare has a massive outage/reset My situation: I was uploading 180kb file of Adam for a status update and the site hung, so I closed out my browser and waited 30 seconds or so, opened a new window and tried to do the same action, then ban l I 1000% get rate limiting, we do it at my job so we never get hit. I just think there might be a 1-hour-of-effort-fix somewhere in there if Sal’s still up to it. I totally get not being, 20 years into hosting a site
  6. can I buy a custom pip like adam did

    1. Show previous comments  2 more
    2. zooey
    3. zooey

      zooey

      (I have reason to believe Heb0 is in danger by the hand of Adam?)

    4. Fatalysm

      Fatalysm

      I have a reason to believe..#gnostichristianbishop

  7. why can't i comment on me changing my avatar

    1. Show previous comments  1 more
    2. zooey

      zooey

      (this is not a dig at sal or administration i am just amused changing my avatar profile is now on the effective `View New Content` view)

    3. zooey

      zooey

      imagine the havoc in a 2006 era feed (sorry i joined late i had to wait for the 12 year old rule)

    4. Adam?
  8. sobend could you reply to us on the discord
  9. Mic has been banned again, taking bets on 3rd ban

    1. Show previous comments  12 more
    2. zooey

      zooey

      @Yuanrang The scenario you describe - clicking a button too quickly - is the first item I linked to, "Rate Limiting".

      I am a software engineer and we use Amazon Web Services for our load balancing, so I can only give you 90% of the solution. If you look at what "Rate Limiting Rules" are, they handle users pressing buttons too quickly.

      Here is an example:

      Rate limiting rule #1
      If incoming requests match:
      http.request.uri.path eq "*"

      Choose action: Block
      Duration (mitigation timeout): 10 minutes
      Requests: 1
      Period: 10 seconds+
      With the same value of (characteristics):

      • Data center ID (included by default when creating the rule in the dashboard)
      • IP
      • Headers > User-agent


      If you read the above example, and look into the Rate Limiting Rules set in the Cloudflare configuration, I imagine you will find the root cause of the issue. I am guessing the ACTION is set to a CHALLENGE or MANAGED_CHALLENGE when it should just be BLOCK.

      Sal was correct in configuring the Rate Limiting Rule as it does handle the scenario you describe, I think the ACTION is the only issue. If there are scenarios of bots or otherwise bad actors that he needs to ban, that would be with a separate, more complex Rate Limiting Rule.

      References

      1. “Rate Limiting Parameters · Cloudflare Web Application Firewall (WAF) Docs.” Developers.cloudflare.com, 29 June 2023, developers.cloudflare.com/waf/rate-limiting-rules/parameters/. Accessed 7 July 2023.
      2. “Determining the Rate · Cloudflare Web Application Firewall (WAF) Docs.” Developers.cloudflare.com, 22 May 2023, developers.cloudflare.com/waf/rate-limiting-rules/request-rate/#example-a. Accessed 7 July 2023.
      3. “Cloudflare Challenges · Cloudflare Fundamentals Docs.” Developers.cloudflare.com, 30 June 2023, developers.cloudflare.com/fundamentals/get-started/concepts/cloudflare-challenges/#managed-challenge-recommended. Accessed 7 July 2023.
    3. Yuanrang

      Yuanrang

      @Zooey I actually must have missed your entire first comment, and even Adam?'s first comment. I cannot recall seeing or reading those two at all. Sorry! :facepalm:

      For the record, I assume your assessment is (mostly) right and I would have incorporated a fix if I could, but as far as I know, only Sal has that kind of access, so I am powerless to go in and fix things, even if I knew how to fix it. I am unsure if LIlshu has that kind of access, but I suspect he might not either. :sad: 

    4. zooey

      zooey

      I thought that'd be the likely scenario. Oh well, thanks for reading!

  10. Adam is a bad man, he hurts me in the discord they're definitely gone, the casual chat is mostly oldies and a handful of new recruits bob's found. it's cool to see where everyone's at in life, except adam
  11. yes if you reply to my message on IRC, I sent you a friend request EDIT: but we can't unban him here, definitely not here this is @oranguwang's personal erotic memoir website now only meant for his reading and his alone
×
×
  • Create New...

Important Information

By using this site, you agree to our Guidelines and Privacy Policy.