• Activity
  • Votes
  • Comments
  • New
  • All activity
  • Showing only topics with the tag "command line interface". Back to normal view
    1. I made a little CLI app for backing up my Tildes comments

      I made a little CLI app for backing up my tildes comments / topics. $ pip install xklb $ library tildes -h usage: library tildes DATABASE USER Backup tildes.net user comments and topics library...

      I made a little CLI app for backing up my tildes comments / topics.

      $ pip install xklb
      $ library tildes -h
      usage: library tildes DATABASE USER
      
          Backup tildes.net user comments and topics
      
              library tildes tildes.net.db xk3
      
          Without cookies you are limited to the first page. You can use cookies like this:
              https://github.com/rotemdan/ExportCookies
              library tildes tildes.net.db xk3 --cookies ~/Downloads/cookies-tildes-net.txt
      

      It creates a SQLITE file with HTML text in one of the columns. Nothing super fancy. Let me know what you think?

      9 votes
    2. Looking for a GitHub cli tool

      And no, I'm not talking about git. I'm looking for a tool that I can use in scripts to automate non-git tasks on GitHub such as creating new repositories, drafting releases, uploading assets to a...

      And no, I'm not talking about git. I'm looking for a tool that I can use in scripts to automate non-git tasks on GitHub such as creating new repositories, drafting releases, uploading assets to a release, etc.

      I started dipping my toes into gh, GitHub's official cli tool, but when I created a repository it immediately cloned it, which is not what I want. I know I can just rm -rf the repo but ideally the tool I use would do only what I tell it and nothing more.

      Reading the docs for hub, it might do what I want, although I have some reservations about the project after reading this post written by the developer: https://mislav.net/2020/01/github-cli/

      I've also come across git-hub, which doesn't support creating repos AFAICT, and git-spindle, which doesn't support uploading assets.

      Are there any other command line GitHub clients I should consider?

      Which one do you use? What's your experience with it been like?

      5 votes
    3. Recommended RSS feeds/readers?

      Inspired by this post, I was wondering what RSS feeds you all subscribe to and how you read them. Here are mine: http://feeds.reuters.com/reuters/topNews...

      Inspired by this post, I was wondering what RSS feeds you all subscribe to and how you read them.

      Here are mine:
      http://feeds.reuters.com/reuters/topNews
      https://www.pbs.org/newshour/feeds/rss/headlines
      https://www.pbs.org/newshour/feeds/rss/world
      http://feeds.nature.com/nature/rss/current

      I'm just started using Newsboat, a CLI RSS reader, to read in a few feeds (Reuters was one of them :( ) and it's pretty refreshing to get a text-based newsfeed with no distraction. Though, the feeds I'm subscribed to only give me a brief blurb of the news...

      26 votes
    4. I made a (very, very) basic Tildes scraper and cli browser ruby gem

      Here's the ruby gem page and here's the github. Right now it comes with a command line browser that can browse the front page and group pages with no sorting options, and you can view the contents...

      Here's the ruby gem page and here's the github. Right now it comes with a command line browser that can browse the front page and group pages with no sorting options, and you can view the contents of a topic (link or text) aswell as the comments. The methods defined in lib/tilde-scraper/api.rb can be used to scrape tildes pages into Group, Page, Topic, and Comment objects.

      Right now it's super basic and messy, but I figured if anyone was interested in it it would be the people here.

      9 votes