Bookmarklet for commenting on a website with dissenter.com
2 0 comments 01 Mar 2019 04:54 u/aGameCalledCountries (self.programming) in v/programmingComment on: Selenium script to delete comments and submissions on voat
0 13 Feb 2019 03:52 u/aGameCalledCountries in v/programmingComment on: Selenium script to delete comments and submissions on voat
Really I think your approach is crap, and question whether it will actually work. I can run this script on a cron job every day and not have to think about your copy/paste nonsense.
Comment on: Selenium script to delete comments and submissions on voat
Feel free to improve it, but you have to open a new window to delete the submission/comment, fyi.
Comment on: Selenium script to delete comments and submissions on voat
it might be possible to see deleted comments / posts
No it's not.
Selenium script to delete comments and submissions on voat
1 0 comments 12 Feb 2019 22:42 u/aGameCalledCountries (self.programming) in v/programmingSelenium script to delete all submissions and comments on voat.co
1 0 comments 27 Nov 2018 20:01 u/aGameCalledCountries (self.programming) in v/programmingAs of today, Microsoft officially owns GitHub
1 0 comments 26 Oct 2018 15:25 u/aGameCalledCountries (..) in v/programmingComment on: Microsoft already ruining GitHub
The latest commit and all the file change dates load via JavaScript. Without js, it's only a list of files.
Comment on: Microsoft already ruining GitHub
Javascript was required on github before Microsoft announced the acquisition, and the deal hasn't closed yet.
Comment on: Your job as a developer is to make code that makes lives of the users easy. That is your primary goal.
I program malware. You are wrong.
Comment on: C# - What is the best way to dispatch a bunch of functions all with the same signature?
That's what I ended up doing :)
Comment on: C# - What is the best way to dispatch a bunch of functions all with the same signature?
Performance wasn't the main concern with this problem. Breaking apart the 2500 line function was. I managed to solve the problem by creating a new class with static functions, then using the reflective GetMethod stuff. One thing I couldn't figure out with the dictionary of delegates route was where to put and instantiate the dictionary. Then there is the added problem of making sure all functions are in the dictionary for lookup. My way, if the method exists, it is callable.
C# - What is the best way to dispatch a bunch of functions all with the same signature?
1 0 comments 22 Feb 2018 21:50 u/aGameCalledCountries (self.programming) in v/programmingComment on: Report: 80's kids started programming at an earlier age than today's millennials
A shell came with every version of DOS/Windows until Win 95. I remember because I was just getting good at coding some stuff, and writing stuff in qbasic, and then the new version had no shell and so I started playing with linux.
Voat uses some anti-fraud stuff and the JavaScript on the page needs to run for the form to be submitted. Your/his approach won’t work. You can’t “send all the post requests” because you don’t have the generated tokens just by scraping the html. That is the reason for using selenium, because PuttItOut only gave api access to about 2 accounts.