Suggestion regarding website usability, and the AUR

Hey everyone, lately i've been doing some thinking on how to improve the website and integrating things as easily and best as possible. Before the flames on this being commercial software begin, just hear me out.
With minimal - no effort and hacking of the source code we can have these features:
· Single login/registration for everything below
· Announcements on front page piping automatically piping discussion to it's own thread in specified forum
· Blogs
· Gallery
· shared login with mediawiki
· An improved AUR system, with an accurate way to gauge package usage (which i'll describe and show below)
· Shop
· Donations system which displays in real time and adds user to a thank you page (unless they choose to be anonymous)
· Forum system lightyears better than phpbb (current info and userbase simple to import)
· Very powerful (and easy) administration/privelage system
· RSS Feeds on every Area you choose to have them for
· even our user map can be integrated with no effort
· mailing list threads piped to specified forum and vise versa
What i'm proposing is vBulletin. An owned license (one time lifetime fee) is only 160$, and i feel with the extra donations this is well worth it, in pretty much every way i can think of.
AUR system:
It probably will be easiest to show by example, so here it is - http://www.vbulletin.org/forum/showthre … did=108515 . The best feature this offers us (along of course with being centralized), is the way the voting would work. Right now, i know i'm guilty, but i just get too lazy and forget to always click to vote on a package i use. And also alot of the time i stop using said package.
With this system, you click install, when you have installed a package, the contributor can see exactly who installed and who hasnt (Which is good as a way to nudge people who post for support, yet havent clicked install/voted). People will be much more likely to vote/click install a package here, since doing so will enable them to be notified via email every time the package is updated. and when they uninstall and no longer wish to be notified of updates, they just click uninstall.
I know currently we have the rss feed for the aur which does similar, but afaik it only shows new packages and not updated ones?. Which can be a pain to always check to stay up to date.
Anyways, give it some thought. I've been using and hacking up vB for quite some time, so if you guys have any questions on other areas, just ask. I'm posting this to the mailing list as well. Don't take this as a flame on the current website efforts. I just feel this would make things easier to manage and stay organized, and better for the end user for the same reason.
Thanks for making it through my novel,
-- Chris O'Reilly

Ok guys, I'm gonna butt in here, I've seen this happen several times before.  While you can discuss all you want, I guarantee nothing will happen unless somebody actually chooses to do something. We talked for ages about a wiki, but it didn't happen until rasat set it up. We talked for ages about a NEW wiki, but that didn't happen until cactus set it up. We talked for ages about forum mods, but that didn't happen until dibble set it up. We talked for ages about Arch64 before syamajala and now andyRTR took on the project. We talked for ages about a custom kernel PKGBUILD before I and later dibble tackled the project. We've talked for ages about gui frontends to pacman and people have set them up and the project usually falls apart, barring jacman. and so on.
Now, if anyone is *serious* about this project, and I mean serious as in you've thought about it and realize that its HUGE, I would suggest one of two things:
1) talk to Judd and see if he has any ideas
2) start hacking something together and show it to Judd
Now, from previous experience in Arch-related development, I can guarantee that Judd won't just accept or assign someone to start this project. What he will do, however, is provide answers and feedback if someone is working on it, and if he likes the results, he will accept them as well. This is typical arch development.
I would say that since the website is such a visual first impression of Arch, Judd might want more input into it, but I doubt this is true.... if he was that concerned, something would have been done with the front page before now. ;-)
Basically, I'm saying talk all you like, but it won't do any good.
Dusty

Similar Messages

  • I can't sign out of iCloud on my iPhone 4 because I have the locator turned on for my phone and don't know the old password for my old Apple ID.  I've tried all of the suggestions seen on here and the Apple ID site and cannot delete the cloud.  Help?

    I can't sign out of iCloud on my iPhone 4 because I have the locator turned on for my phone and don't know the old password for my old Apple ID.  I've tried all of the suggestions seen on here and the Apple ID site and cannot delete the cloud.  Help?

    LPC1979 wrote:
    ... it keeps asking me for the OLD password (2 email addresses ago) and then when entered correct tells me the account does not exist...which I already know. ...
    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...

  • My shop website hacked and the hackers use my clients credit cards on itunes

    my shop website hacked and the hackers use my clients credit cards on itunes
    as they publish the credit cards to public
    i dont know what to do ?
    <Link Edited by Host>

    Maureen_Anderson wrote:
    my shop website hacked and the hackers use my clients credit cards on itunes
    as they publish the credit cards to public]
    Pretty cool that you also publish this stuff online and post a link to it!

  • Need suggestion regarding File compression and splititng

    Hi,
    I want to split and compress the big files into small chucks. On later any standard zip utility i.e. winzip, 7z etc can merge(extract) all the chunks to generate the original file. I am looking for any java library which provide the split and compression functionality.
    As Java also supports in built compression utility. Should I use those library or any other open source is available to do this? I welcome your suggestion regarding how can I start.
    Thanks

    If you're just looking for something to be used internally, it'd be pretty simple:
    1. Open your source InputStream.
    2. Create a standard read/write loop to pump the stream.
    3. Add a counter that determines how much you've pushed into your current target. After you reach a certain value, close your current target, create a new target stream, and reset the counter.
    4. Conclude by closing your source and your current target.
    For compression, you can use the built-in GZIPOutputStream or a third-party library of your choice. I usually find GZIP sufficient for my needs.
    Of course, if you want the output to be compatible with other programs like 7-Zip, you've got a lot more work on your hands complying with the file format spec. :)

  • Two suggestions regarding table columns in the Oracle database

    Oracle,
    I have two suggestions to make.
    First, it would be of great value to be able to add a new column at an arbitrary position in a table and not simply add it to the end of the column list. Quite frequently we have to drop and recreate tables in order to accomplish this.
    Second, we often add 4 columns to the end of every table's column list (and accompanying triggers in order to keep them updated) which would seem suitable as Oracle pseudo-columns (in the same fashion as ROWID, etc.) These 4 columns would be:
    - Row created date
    - Row created by Oracle user
    - Row updated date
    - Row updated by Oracle user
    Regards,
    Dan D'Andrea
    [email protected]

    Dan,
    I don't work for Oracle, but, just some thoughts/reactions to your ideas.
    I don't think inserting a column in any arbitrary position is feasible, because it doesn't scale. It would require a reorganization of every block in the table. One reasonable workaround is to add the columns at the end of the table, then create a view on top of the table that has the columns in the desired order.
    As to the second suggestion, yes, we do something similar, add the same 4 columns to every table. I think the reason that Oracle doesn't support these types of pseudocolummns, is the overhead this would incur. Not only in terms of the extra resources, to maintain the data, but also storage overhead.
    So, just my unofficial opinion, but, I don't see how either of those suggestions would make it.
    Also, FYI, if you want to officially enter an enhancement request, see Doc ID 214168.1 on MetaLink.
    Hope that helps,
    -Mark

  • Regarding Airplay Mirroring and the decision to upgrade to Mountain Lion....

    I am interested in Airplay Mirroring from my iMac.  I currently run Snow Leopard.  Is there any way I can check in my computer to see if it is new enough for this?  This might effect my decision regarding upgrading to Mountain Lion

    OS X v10.6.8 or later
    2GB of memory
    8GB of available space
    Some features require an Apple ID; terms apply.
    Some features require a compatible Internet service provider; fees may apply.
    Supported
    Models
    iMac (Mid 2007 or newer)
    MacBook (Late 2008 Aluminum, or Early 2009 or newer)
    MacBook Pro (Mid/Late 2007 or newer)
    Xserve (Early 2009)
    MacBook Air (Late 2008 or newer)
    Mac mini (Early 2009 or newer)
    Mac Pro (Early 2008 or newer)
    Feature-Specific Requirements
    Time Machine
    Requires an additional hard drive or Time Capsule (sold separately).
    Photo Booth
    Requires a FaceTime or iSight camera (built in or external), USB video class (UVC) camera, or FireWire DV camcorder. Backdrop effects when using a DV camcorder require fixed focus, exposure, and white balance.
    FaceTime
    Video calls require a built-in FaceTime camera, an iSight camera (built in or external), a USB video class (UVC) camera, or a FireWire DV camcorder, and a 128-Kbps upstream and downstream Internet connection. Making HD video calls requires a built-in FaceTime HD camera and a 1-Mbps upstream and downstream Internet connection. Receiving HD video calls requires a supported Intel-based Mac.
    AirDrop
    Supports the following Mac models:
    MacBook Pro (Late 2008 or newer)
    MacBook Air (Late 2010 or newer)
    MacBook (Late 2008 or newer)
    iMac (Early 2009 or newer)
    Mac mini (Mid 2010 or newer)
    Mac Pro (Early 2009 with AirPort Extreme card, or Mid 2010)
    Boot Camp
    Supports existing Boot Camp installations with Windows XP Service Pack 2, Windows Vista, or Windows 7. New Boot Camp installations require Windows 7 (sold separately).
    Exchange Support
    Requires Microsoft Exchange Server 2007 Service Pack 1 Update Rollup 4 or Exchange Server 2010. Auto-setup requires enabling the Autodiscovery feature of Microsoft Exchange Server.
    AirPlay Mirroring
    Requires a second-generation Apple TV or later. Supports the following Mac models:
    iMac (Mid 2011 or newer)
    Mac mini (Mid 2011 or newer)
    MacBook Air (Mid 2011 or newer)
    MacBook Pro (Early 2011 or newer)
    Power Nap
    Supports MacBook Air (Mid 2011 or newer), MacBook Pro with Retina display.
    Gestures
    Requires a Multi-Touch trackpad, Magic Trackpad, or Magic Mouse.
    VoiceOver Gestures
    Requires a Multi-Touch trackpad or Magic Trackpad.
    Mac App Store
    Available only to persons age 13 or older in the U.S. and many other countries. Requires compatible hardware and software and Internet access; broadband recommended (fees may apply). Terms apply.
    Dictation
    Requires a microphone (built in or external) and a broadband Internet connection.

  • Can only choose attachments one at a time for webmail and for entries to an art organization website.  And the site's "Upload File" button will not respond, so I can't even upload the one jpg I have chosen.

    I am the only one who can't upload to the submissions page. Javascript is turned on, not java, with Safari 5.0.6 and Leopard. Thanks for helping.

    Thanks for your response.  I do have javascript turned on (not java).  To answer your question,
    I was trying to upload 3 jpgs to the submissions page of a visual arts website. I could only highlight one jpg at a time in the "Choose File" option, and then the "Upload File" button of the submissions page would not respond.
    It's an ongoing problem with this site (I'm the only one with this issue and there are a lot of submissions). I have to send the images as email attachements to the administrator of the site.  When doing this via webmail, I still the one attachment at a time problem, but the images get to the administrator.  Thanks for helping.

  • Suggestion regarding running preparedstatement and batchupdate

    I have to insert many rows in database therefore i use preparedstatement and for loop.I want to know if i add all the query in batch and then execute will it give better performance .Will sql statement is still in compiled form when execute in batch .Let if i add another sql statement which is different from previous sql statement in batch what the effect it has on performance.
    Thanks

    hi.,
    check this out..
    http://forum.java.sun.com/thread.jspa?threadID=154870&start=15&tstart=0

  • Regarding refurbished iPods and the %10 student discount

    Does apple offer the student discount with refurbished iPods?

    Doubtful. Refurb's are already discounted pretty steeply, so I wouldn't think so.

  • [SLVD]How do I download a package that's in the AUR but not in pacman?

    I feel like I'm asking the newbiest question in this forum, but I'm a little lost. I found google-chrome in the AUR, but when I try to install it with pacman, it tells me it can't find it. I thought that pacman just pulled from the AUR. I guess I don't really understand what the AUR is or how it works.
    Last edited by imnotfred (2013-02-19 01:09:35)

    ewaller wrote:As a friendly suggestion, do learn how use the AUR by hand.  Helpers are nice, but it is good to understand the basics.
    I'd like to echo this. Building packages from AUR is really not difficult, and using a helper really obscures several of the steps. If you build "by hand" you will learn more about tar, and about pacman. The AUR page in the wiki makes all this very clear. https://wiki.archlinux.org/index.php/AUR
    (edit) I have never used cower, but for step 1 in headkase's post above mine all you need is this bash function:
    get-aur() {
    echo 'getting package '$1' from AUR'
    wget -q "https://aur.archlinux.org/packages/${1:0:2}/$1/$1.tar.gz"
    tar xf "$1.tar.gz"
    rm "$1.tar.gz"
    cd $1
    ls
    Last edited by 2ManyDogs (2013-02-19 01:58:33)

  • How to record with "guvcview" from the AUR.

    http://wiki.archlinux.org/index.php/Web … uvcview.29
    In the Archwiki on the webcam page, it suggests GTK UVC Viewer from the AUR. I don't quite like cheese for video recording. I was excited after I played with the resolution and framerate and such in guvcview for the first time. I then was ready to start recording a test video. However, I can't find how to start/stop recording once I've started guvcview. I would appreciate knowing how to record video in it.

    Hi! I just saw this image: http://screenshots.debian.net/screensho … _large.png
    I seem to be missing the bottom row of buttons.
    As I was typing this, I thought to stretch the window down... There they are! Sorry for bothering the forum with such a silly mistake. >.<

  • Want suggestion regarding a bulk deletion

    Hi,
    I need some suggestion regarding a deletion and i have the following scenario.
    tab1 contains 100 items.
    for one item tab2..6 tables contain 4000 rows.So the loop will run for each item and will delete 20,000 lines and will do a commit.
    Currently for 5,00,000 deletion it is taking 1 hr.All the tables and indexes are analysied.
    CURSOR C_CHECK_DELETE_IND
    IS
    SELECT api.item FROM tab1 api WHERE api.delete_item_ind = 'Y';
    type p_item IS TABLE OF tab1.item%type;
    act_p_item p_item;
    BEGIN
    OPEN C_CHECK_DELETE_IND;
    LOOP
    FETCH C_CHECK_DELETE_IND bulk collect INTO act_p_item limit 5000;
    FOR i IN 1..act_p_item.count
    LOOP
    DELETE FROM tab2 WHERE item = act_p_item(i);
    DELETE FROM tab3 WHERE item = act_p_item(i);
    DELETE FROM tab4 WHERE item = act_p_item(i);
    DELETE FROM tab5 WHERE item = act_p_item(i);
    DELETE FROM tab6 WHERE item = act_p_item(i);
    COMMIT;
    END IF;
    END LOOP;
    exit when C_CHECK_DELETE_IND%notfound;
    END LOOP;
    Hope i have explained the scenario.Can you please suggest me the right approach.
    Thanks in advance.

    Hi,
    why not just use straight sql. ie
    DELETE FROM tabn
    WHERE  item in (
      SELECT api.item
      FROM   tab1 api
      WHERE  api.delete_item_ind = 'Y');For bulk deletes other techniques include -
    disabling constraints then reenabling them
    making indexes unusable and then rebuilding them
    creating temporary tables with the data you want left, dropping the source table and renaming the temp table
    partitioning
    Which of these is most useful depends on a lot of factors such as data volumes versus delete volumes, system outage availability, concurrency issues etc.
    Regards
    Andre

  • [SOLVED] Is Ok to put "abandonware" on the AUR?

    Recently, I found out that searching "abandon" on AUR, lots of results with "abandonia" on their description show up.
    now, even the abandonia website state the following:
    What is Abandonware? Is it legal?
    Wikipedia: "Abandonware is computer software which is no longer being sold or supported by its copyright holder. Alternately, the term is also used for software which is still available, but on which further support and development has been deliberately discontinued."
    Since the software is no longer sold or supported, the copyright holders are not directly harmed in any way. This is why abandonware sites are, for the most part, ignored by the law.
    The distribution of copyrighted software however is, and will allways be, illegal!
    Pretty much means "well... is illegal, but hey, we don't affect the author and the law ignore us!".
    IF those games where shareware/trial versions OR freeware but-not-open-source games, it would be a different story. I know those are OK. (since the author allows -or even foments- distribution)
    But they are abandoned FULL versions of non-freeware games.
    so I want to know if is ok to keep those packages on the AUR. Maybe is actually ok, since there is not rule against that or something?
    if that is the case, how about more recent software? it would be against the rules if someone uploads a full, cracked version of a coreldraw to some site, and a wine based PKGBUILD on the AUR to automatically download it and install it? is that ok?
    I don't think is ok. I don't think it should be ok.
    The guidelines (https://wiki.archlinux.org/index.php/AU … Guidelines) don't say anything about abandonware or warez.
    maybe it should be specified.
    Last edited by chris_l (2011-10-29 00:44:26)

    This thread is going to go on for pages and pages, then the mods are going to lock it cause they're sick of people not "getting it" and don't want to deal with it anymore.  But while I have the chance, I'll throw in my $0.02.
    FOSS is built on two things: freedom and community.  With freedom comes the ability to look through all the code and know exactly what your software is doing, and with community comes the common interest in sharing code, collaborating, etc.  Piracy is just about the same thing, but with law sprinkled everywhere in-between.  Freedom to copy and download whatever you'd like, and all the information you can handle, especially when it comes to where you can copy and download even more data.  Combine the similarities with FOSS junkies that believe in a free world, and you'll find many that'll pirate software without caring because of their opposition about closed source software and copyrights (although many others just find no interest or passion in proprietary code).
    So we have two matters at hand here, the piracy, and the information about the piracy.  Stealing software is illegal, but if you knew a website online that sold bootleg copies, is your knowledge dangerous?  Think of it like locksmiths: they make a living off helping people who are locked out of their cars, homes, etc., but if they had the same knowledge without holding the same professional license, would they be a criminal simply because they know about tumblers and their experience with picking tools?  Or even a very common interest among us: IT security.  If you understood that you shouldn't depend on MD5 algorithms due to MD5 collisions, are you a cracker?  Where is the line drawn?
    In my personal opinion (as a US citizen), your knowledge is a constitutional right.  Technical abilities should not be frowned upon, but encouraged.  The most important difference is the other side of that fence: using that knowledge.  Knowing wireless security vs. cracking networks that aren't yours.  Knowing how to count cards vs. actually doing it.  Or how about one we are depended on every day: knowing the trade secrets at the company we work for vs. exploiting them.  That line is drawn right down the middle of where these two concepts merge: trust.
    Now let's get into the conversation about piracy and the AUR.  Informational side: there is nothing wrong at all about taking propriety, copyrighted code and nicely packing up a pacman-installable file for you and others that legally support the company's software.  You're moving files, writing scripts, and compressing them in a way that makes life easier for you.  Epic isn't going to come after you for moving Unreal Tournament to a $pkgdir directory ... that doesn't make any sense.
    So let's push the lines a little further.  Say the UT CD you have was stepped on by a friend.  At this point, you have one valid license without any installation media.  This means that you are legally in the right to download the installation media and install it on one computer.  In this case, you created a PKGBUILD that downloaded the game from the Internet.  This is still legal.  This is a rare exception that is usually a sorry excuse for pirating a game than recovering from a loss, but again, still legal.
    But--allowing my opinion to come in here--it stops there.  If there was a plethora of PKGBUILDs up on the AUR that linked to copyrighted software, a realistic person would understand that it's there to help pirates.  If this was the case, there really wouldn't be much of a difference from the AUR and a torrent site.  Hell, PKGBUILDs could even download from a torrent file as part of the build() function.  Until a law is broken, it's not illegal, but any bit of information is just a pyramid wrapped of its own red tape you have to cut through before you get to the top, and then you've realized it was all to steal something.
    Personally, I can't stand the idea that torrent sites are getting taken down left and right because they contain no data, just information, and free information should be rejoiced, not discouraged.  But stealing software is nothing but illegal, and illegal activities should be stopped and accounted for.  The grey area is huge and there's no way you can draw a line through it, unlike having that unique skill or knowing trade secrets from working for that company.  And for the same reason this thread will eventually get closed by people who can't take it anymore, so will our false sense of freedom of information to pirate.
    Last edited by synthead (2011-10-28 01:03:29)

  • Safari bug regarding "Website Data"

    I've run into a bug with Safari on iOS 6 with my 4th generation iPad where performance noticeably degrades after a certain amount of time using Safari. It becomes noticeable when multiple tabs no longer hold their information so that when you go back to a tab it has to reload the site page data. This will occur even with just a two or three tabs. Another symptom, and the one that caught my attention first, is when scrolling up and down through pages images do not smoothly come into view but have to partially reload causing like a snapping movement as you scroll through images on the page. It's more noticeable the faster you scroll.
    Those two symptoms seemed to point to a memory issue in Safari so I tried closing the app completely and restarting it with no success. I also tried restarting the iPad and still no success. All that was left that I could do was to try deleting "History" and "Cookies and Data" in Safari's settings. Again, no success. Then I went into "Advanced" on the same settings screen and under that option you have "Website Data" and the option to view and delete that data. So, I deleted all of it and shazam, success! Safari then worked smoothly with the fastest scrolling showing images and pages as they should when scrolling and many tabs then being able to be open without them being blanked out.
    It's still apparently a memory issue though that is somehow tied into "Website Data," which is strange because that data is very tiny in size for all sites. The issue is not progressive in appearance as it activates randomly. In other words, one moment the browser is working just fine and then it isn't. It has nothing to do with how long you use Safari. It also doesn't have anything to do with the amount of "Website Data" but looks to be the data from specific sites since the bug will pop up with just a handful of site's in "Website Data" and at other times when there are a lot more sites listed.
    Anyway, this bug has been reported to Apple Feedback and I just wanted to share it with the forum for others that are experiencing the same thing and have not been able to resolve the issue. The solution of deleting all "Website Data" is 100% repeatable and 100% resolves the issue. Safari performance is completely restored.

    Just wanted to add that I have just reproduced the same issue when there was no "Website Data" stored. I closed Safari and then cleared history and cookies and data and it was back to normal, unlike the first time I encountered it when doing that did nothing until I deleted "Website Data." So there seems to be some connection in resolving the issue as "Website Data" may needs to deleted or empty to begin with before deleting history and cookies and data has any effect.
    Again, it looks like some kind of memory issue affecting Safari that when doing the steps I described it releases memory in some way.

  • I have a new laptop and I am trying to download CS3. The site on adobe gives an error message and the one I tried from this forum downloaded CS3 extended, so my serial number does not work. Does anyone have any suggestions. Regards Vicki

    Hi,
    I have a new laptop and I am trying to download CS3. The site on adobe gives an error message and the one I tried from this forum downloaded CS3 extended, so my serial number does not work. Does anyone have any suggestions. Regards Vicki

    The trial is always extended. The serial number you enter determines whether it runs as standard or extended.
    I'm getting through fine with that link, so it must be a browser issue or some such thing. Try another browser.

Maybe you are looking for

  • Iphoto on ipad no longer sees my photostream since IOS 7 upgrade

    iPhoto on my ipad no longer sees my photostream in the albums page of the iPhoto app since IOS 7 upgrade?? I can see my photostream and shared photostreams in the ordinary Apple photo app on the iPad. Prior to IOS 7, all these photostreams were visib

  • IWeb created website can no longer be opened by iWeb

    I created a website with iWeb several years ago.  I am attempting to update that website but the iWeb "Open" option is no longer highlighted and therefore cannot be selected.  When I use finder, I tried using the "Open With" capability, but I get an

  • Sync Async without BPM and JMS.

    Hi Guys, Searched SDN a lot but in vain... i have soap(Sync) to File(Async) synario...Soap response can have like this "PI system received message".. How can i, with out BPM? Thanks Prabhakar

  • Long Text in Main Window

    Hi, I am trying to print 'Item Text' from invoice just below each item description(same cell of 'item descripotion' is used to print 'Item Text' in MAIN WINDOW )  in smartform. I had used an include text. For Ex: long text maintained is TEXT1 TEXT1TE

  • FICO question

    Hi all, is there a reason for the following, I need to know why is this good or bad. reasons against and impact of having a go-live date in the middle of a financial period rather than at period end? thanks all