Looking for a client to access arch bbs

I find reading the arch forums on bbs.archlinux.org using firefox cumbersome and slow. Is there a command line client out there, i.e. ncurses-based, which will allow me to browse the bbs more quickly and efficiently?

Below is a script I run hourly with cron.
#!/bin/bash
export LC_COLLATE=C
script=${0##*/}
af=$HOME/doc/af ## to be read
afmaster=$HOME/doc/aflist ## have been read
afexclude=$HOME/doc/afexclude ## words to exclude
_usage() { cat << EOF
usage: $script
This script will download the most recent archlinux.org forum posts.
Forum posts means the post title along with its URL. It has the ability
to track which posts the user has viewed and store the unread forum
posts in a file.
EOF
(( $# != 0 )) && { _usage && exit 1 ;}
## If $af is open; exit
ps a | grep -q "[0-9] vim -c sort /^https/ + $af" && exit 1
## Read $afmaster into an array
## Append new posts to the master list array, leaving unseen posts marked with a '>'
## Remove any duplicate posts from master list
set -f; O=$IFS IFS=$'\n'
aflist=( $(< "$afmaster") )
aflist+=( $(curl -Ls "https://bbs.archlinux.org/search.php?action=show_24h" | \
awk -F'["=<]' '/viewtopic.php\?id=/ && !/stickytext/ {printf "%06d%s\n",$5,$6}') )
aflist=( $(printf "%s\n" "${aflist[@]}" | sort | uniq -w 6) )
## Read $af into an array. Format unseen posts. Exclude posts which aren't of interest.
## Recode html and unicode to ASCII.
af_array=( $(< "$af") )
af_array+=( $(printf "%s\n" "${aflist[@]}" | \
awk -F'>' '!/^[0-9]*#/ {gsub(/^0*/, "");print "https://bbs.archlinux.org/viewtopic.php?id=" $1,$2}' | \
grep -ivEf "$afexclude" | \
recode HTML) )
IFS=$O; set +f
## Mark all posts as read and write to master file
printf "%s\n" "${aflist[@]}" | sed -e 's/^\([0-999999]*\)>/\1#/g' > "$afmaster"
## Print unseen forum posts to $af file.
printf "%s\n" "${af_array[@]}" > "$af"
## OPTIONAL
## Add mail headers so file is viewable in mutt.
mailfilenew=$HOME/.mail/ml-rss/arch/new/1271109605.5731_0.donkey
mailfilecur=${mailfilenew/new/cur}:2,S
header=$(echo -e "Date: $(date -R)\nSubject: ArchLinux Forums\nTo: User\nFrom: User\n\n---")
printf "%s\n" "$header" "${af_array[@]}" > "$mailfilecur"
## If there are new forum posts, set mail file as unread
grep -q bbs <<< "${af_array[@]}" && mv "$mailfilecur" "$mailfilenew"
## The key binding in mutt
#macro generic,index,pager E "<shell-escape>vim '-c sort /\^https/' + $HOME/doc/af<enter>" "unread archlinux forum post titles"

Similar Messages

  • Looking for NNTP client for iPhone

    looking for NNTP client for iPhone!!!
    thanks and please help. when I use Windows Mobile I can use NNTP client.

    Hey all.
    I'm actually the developer of that app--and as Irish John points out it was originally an app for the jailbroken devices.
    However, I'm currently in the process of writing it for 2.*, and hope to have it out in the coming weeks. It will be free, or very close to it.
    If you're interested in being informed of when this happens, feel free to star this issue: http://code.google.com/p/inewsgroup/issues/detail?id=56 .
    If you have any questions/comments/thoughts/feature requests, feel free to email me at [email protected] .
    Take care .

  • Looking for a client appointment app

    I'm looking for an application for a friend who is a personal trainer. And if such an application doesn't exist, I'm considering writing one (I'm a software engineer)
    The application would maintain a database of clients, and a schedule of appointments with them.
    For each client, the following data needs to be maintained: contact information, current statistics (weight, body fat percentage, strength) as well as a history of statistics. Clients pay for a package of sessions in advance, and the app would keep track of how many prepaid sessions remain, updating that number with each scheduled appointment and each payment. Every client has recurring appointments, several per week, but rescheduling is common, and needs to be easy. And the app should be able to print out a year report for taxes.
    I was thinking that it should interface with Address Book for contact information, and Calendar for appointments.
    The main app should run on Snow Leopard, but mobile access through an iOS 4 sister app would be great. (Although if it works with Address Book and Calendar, their synchronization through MobileMe might be sufficient)
    Is there any such thing? There must be other trainers, and other professionals with similar needs.
    -Ron.

    Hi Ron,
    was there a template for bento that met all of the requirements that you detailed?  My wife is a personal trainer and we've been looking for similar functionality in an app.  Currently she's using the calendar app and contact book, but as you say, rescheduling is frequent and tracking remaining sessions would be very helpful.  Let me know,
    Paul

  • Looking for a client/server that supports multiple protocol and delivery

    Hi all, I don't know if this the right place to ask my question,here it goes.
    I am looking to develop a client-server that supports multiple protocols such as HTTP, HTTPS etc. I am looking for a framework( i don't know if that is correct or I need some kind of web-service (soap etc)) that would manage connection, security etc. I would like to like to devote most of my time in developing business objects with multiple delivery mechanism such as sending serilized java objects, xml message or soap message, or in some case JMS message as well. So I need a client server that can come in via TCP/IP or HTTP or anyother industry standard protocol and I should be able to service him with pub/sub model and also request/response model as well.
    I don't know if I had explained what I need, I would like to know what technologies I should be evaluating and which direction I should be heading... Also the server I'm developing should be free of Java constraints if needed...
    Also this service is not webbased service as now but if need arises I should have a flexibilty to make them web enabled in future. Also I would like to work with open source webservers or appservers if I need

    Inxsible wrote:I installed i3 - along with the i3status - which I still have to figure out. I am liking what I see as of now. It reminds me of wmii -- when I used it way back when. However I do not like the title bar. I would much rather prefer a 1 px border around the focused window.
    "i3 was created because wmii, our favorite window manager at the time, didn't provide some features we wanted (multi-monitor done right, for example), had some bugs, didn't progress since quite some time and wasn't easy to hack at all (source code comments/documentation completely lacking). Still, we think the wmii developers and contributors did a great job. Thank you for inspiring us to create i3. "
    To change the border of the current client, you can use bn to use the normal border (including window title), bp to use a 1-pixel border (no window title) and bb to make the client borderless. There is also bt  which will toggle the different border styles.
    Examples:
    bindsym Mod1+t bn
    bindsym Mod1+y bp
    bindsym Mod1+u bb
    or put in your config file
    new_window bb
    from: http://i3.zekjur.net/docs/userguide.html (you probably already found that by now )

  • Look for SFTP client for Solaris 10x86

    We need an SFTP client which supports logins with and without passwords for sending files to remote SFTP sites.
    Up until now, we have been using a combination of Perl, Expect and sftp command but need a better solution.
    Have been unable to install into Perl the SFTP modules (Lots of problems with SSHA packates) to use it directly without Expect.
    I see a few (very few) commercial packages like one from tectia.com but am looking for perhaps an open source solution.

    You should be able to use the scp command (which is a part of ssh client on solaris, linux or cygwin/windows) in conjunction with the key based authentication
    For example, if you want a scheduled job as user1 on machine1 to be able to upload a file to a directory owned by user2 on machine2:
    On machine1, run ssh-keygen as user1 to create the RSA key pair (do not enter as password .)
    On machine2, as user2, cd .ssh, add user1's public key to the authorized_keys file.
    e.g.
    ssh-rsa dWU+bihN7kYFYoQ5ycNiIl2urtzdS5GNcCtMSz
    Nykgylo4ccfoAhJhAOVS3htN6hTXk45O9xrpLFrC7BzAq
    aQiuuKTgxT0mOVmzFjTozwQIQmy9EUt= user1@machine1
    Also, update /etc/ssh/sshd_config with
    RSAAuthentication yes
    you will need to ssh from user1 to machine2 and as user2 to machine1 to make sure the known_hosts file for each user gets updated

  • Looking for  a way to access iPod Library via Front Row

    I am looking for a way to browse my iPod library in Front while my iPod is connected to my computer.
    Does anyone know the trick?
    iMac Intel Duo Core   Mac OS X (10.4.4)   iPod

    All of my music is backed up on an external hard drive connected by FireWire to my desktop PC. I have enabled Share Music so that when I open iTunes on my iMac, I am able to access all the music on my external hard drive wirelessly. If I highlight the shared music in the Source column and then turn on Front Row, I have access to all the music on my external hard drive (wirelessly) through the remote control. I would imagine that since the iPod appears in the Source column when it's properly docked, you should have access to it through Front Row.
    I don't know if this will help, but good luck!
    iMac Intel Core Duo   Mac OS X (10.4.5)   Wireless network with Dell desktop, HP laptop, Airport Express, iPod

  • Looking for a client side JAXP-RPC HandlerChain example

    I would like to add a handler to the client side of a RPC call using 7.0.1. I
    can’t find any examples to follow for this logic in WebLogic or at Sun’s site.
    Does anyone know of some sample code I can browse to?
    I believe I want to add some files as attachments to a RPC call. To add them
    to the message, it looks like I should add them as an attachment in the handler.
    I see how this is done in the handler. However, I can’t find any useful documentation
    on setting the HandlerChain. I attempted this by following the Javadocs (HandlerRegistry,
    QName, HandlerInfo), but I must have left something out.
    Any suggestions for examples to follow?
    Thanks,
    Dave

    An example attached:
    regards,
    -manoj
    "Dave Lyons" <[email protected]> wrote in message
    news:3d9b508f$[email protected]..
    >
    >
    I would like to add a handler to the client side of a RPC call using7.0.1. I
    can't find any examples to follow for this logic in WebLogic or at Sun'ssite.
    Does anyone know of some sample code I can browse to?
    I believe I want to add some files as attachments to a RPC call. To addthem
    to the message, it looks like I should add them as an attachment in thehandler.
    I see how this is done in the handler. However, I can't find any usefuldocumentation
    on setting the HandlerChain. I attempted this by following the Javadocs(HandlerRegistry,
    QName, HandlerInfo), but I must have left something out.
    Any suggestions for examples to follow?
    Thanks,
    Dave
    [filetransfer.jar]

  • Looking for mobile app to access my acct away fom home.

    I just received a new smart phone and trying to set it up. Unfortunately it's not an iPhone. Is there an iTunes mobile phone app that is compatible with the Samsung Galaxy S3 (Android) and will allow me to access and play music and audio books from my iTunes account library (not my downloaded music on my home pc)? Can't seem to locate one. Any help is appreciated.
    Thanks,
    Barb

    If you are in side the building & using wifi, you could look into:
    http://itunes.apple.com/us/app/filebrowser-access-files-on/id364738545?mt=8
    Configure WebDave on your server.
    This thread has good info.
    https://discussions.apple.com/thread/3708341?tstart=0
    Good old FTP
    FileApp and FileApp Pro
    If you can convince them to let you near your desktop, an app like ... would let you transfer files ( according to how I read the doc..
    http://itunes.apple.com/us/app/desktop-connect-pro/id421602383?mt=8
    Robert

  • Looking for a Client Tracking App

    I have a small women's clothing boutique. I have no POS system. Is there a an app for client information and tracking purchases?  Having a way to pull info for events and in store specials from past purchases would be great.

    Hi!
    I have just seen your queries about the POS solution? I noticed you had mentioned you do not have a POS System, I believe we have something that could help you with your need to track client info and purchases.
    We are EPoS Experts based in the UK and we have an iPad EPOS Hardware bundle for £399.
    “I may receive some form of compensation, financial or otherwise, from my recommendation or link.  <Edited by Host>”
    http://www.pospayasyougo.com/products/view/ipad-epos-bundle-hospitality
    We are partnered with VEND and they have a Free Trial on their software solution, below is a link which will give you a 30 days Free trial:
    http://secure.vendhq.com/signup?partner_code=opus-retail-solutions-limited
    Here is an overview of the software on the iPad - http://youtu.be/mj7bOx660zc
    It's designed to be really easy to use & you can be up and running the same day - we would have your hardware built and tested ready to go out of the box.
    If you have any questions feel free to give me a call or drop me an e-mail as I am more than happy to help in anyway I can.
    Sean O'Hare
    EPoS Consultant
    POS Pay As You Go
    <Edited By Host>

  • Looking for a remote app

    I am looking for a remote app for my windows computer at work so I can control my music. I have Remote from my mac to use with iTunes at home and thats great. But now I was wondering do they have anything like that for windows I use windows media player. Thanks so much

    Correction from my last message-
    Are you looking for a way to control the music from your PC to Mac as in remote desktop, or are you looking for a way to access (play, delete, share) your music?
    If its the first choice, see my last post.
    If its the second choice, you can turn on Home Sharing in iTunes.
    Go to Advanced>Turn on Home Sharing
    You'll have to login with an Apple ID, and do the same thing on your other computers.
    For more information on Home Sharing, visit this link:
    http://support.apple.com/kb/HT3819

  • How many emails can I have on my account? Can I have client folders to customize for each client?

    How many emails can I have on my account?
    Can I have client folders for each client to access their own survey/forms?
    Can I customize for each client?
    Do we need multiple subcription accounts for this?

    You need to have one FormsCentral subscription per email.
    At this time FormsCentral doesn't support folders.
    Gen

  • Looking for sample code of HOW-TO use EntityFacadeImpl class

    I have created the following using JDeveloper Ver 9.0.3.1:
    1. Entity Bean
    Localinterface: userLocal.java
    Local home interface: userLocalHome.java
    Remote interface: user.java
    Remote home interface: userHome.java
    Bean implementation: userBean.java
    2. Facade Session Bean (auto generated by JDeveloper)
    userFacade.xml
    userFacadeColImpl.java
    userFacadeImpl.java
    I am looking for sample client code on how to make use the facade session bean.
    Thanks in advance.

    repost

  • Looking for a way to export full Popularity Trends data

    Greetings!
    I'm looking for a way to access all "popularity trends" data for a SharePoint 2013 publishing site in one place. I'm probably missing something pretty basic here, (I hope), but it seems if I pull up popularity trends for the site, all I get is
    the hits & unique users for the site as a whole. If I go into my pages library and choose "Most Popular Items," I'm given a search results page that I can't run reports from. And if I select the "popularity trends" link under one of
    those search results, I get a usage report for a single, specific page.
    I've thought about doing a multi-select of pages from my site's Pages library, but I have more than 100 pages in the site, so I still can't get at everything all at once. Plus, the resulting usage.xlsx file just includes a lot of  reports on individual
    pages.
    There's got to be something more all-encompassing than this...right?
    Help!

    Hi,
    According to your post, my understanding is that you wanted to see the all popularity trends data for a site.
    Where did you export the usage report?
    Did you export the report from  Popularity and Search Reports?
    To view the Popularity Trends report for a site collection
    Verify that the user account that is performing this procedure is a member of the Owners group.
    In the site collection, on the Settings menu, click Site ettings.
    On the Site Settings page, in the Site Collection Administration section, click Popularity and Search      Reports.
    On the View Usage Reports page, in the Usage Reports section,  click Usage.
    In the message box, click Open to open the report in Excel, or  click Save or Save as to save the  report.
    Click the tabs to view the usage report for the different usage event types.
    http://technet.microsoft.com/en-us/library/jj715890(v=office.15).aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Client wants access to change website

    What is the best way to approach the website design so my
    client can change pics and info from there computer? they have very
    little knowledge on computers but insist on being able to change
    and update the site themselves.
    I can build the site reasonably well in dreamweaver but am
    lost as to make it easy for my client to access
    thoughts greatly appreciated
    cheers
    michael

    As Walt indicated, Contribute will allow your client to make
    the changes
    desired.
    However, it is usually in your client's best interest if you
    build the site
    with templates (DWT), defining which areas can be edited by
    your client and
    those which are "off limits." That way, they can make
    necessary edits
    without fear of completely corrupting the site.
    I personally include a clause in my contract that states if
    the client makes
    edits to a site we build and this site gets corrupted due to
    their efforts,
    they pay us to rebuild. This is beyond any maintenance
    agreement we might
    have in place.
    Kelley Rao, Webeze
    Website Planning Guide for Developers
    http://www.web-eze.com/
    "silvertone" <[email protected]> wrote in
    message
    news:e8280r$ga4$[email protected]..
    > What is the best way to approach the website design so
    my client can
    > change
    > pics and info from there computer? they have very little
    knowledge on
    > computers
    > but insist on being able to change and update the site
    themselves.
    > I can build the site reasonably well in dreamweaver but
    am lost as to make
    > it
    > easy for my client to access
    > thoughts greatly appreciated
    > cheers
    > michael
    >

  • Doc for 10g client silent installation

    any documentation for 10g client installation (silent -installation)
    Thanks
    Ramya

    <sigh>
    Go to the traditional place for documentation, either http://docs.oracle.com or http://tahiti.oracle.com
    Get to the 10gR2 documentaiton page. (For your convenience, it is http://www.oracle.com/pls/db102/homepage)
    Click on the Installation tab at the top of the page to get to the Installation documentation.
    Look for the Client Installation Guide for your operating system.
    Use your browser to search for 'silent' - that will be in Appendix A
    Read the material there.
    Anything else?
    </sigh>

Maybe you are looking for