Nov 21, 2009
Pages: 1, 2

Pickel -- Note-taking Program - written in C++

free web hosting

Read Latest Entries..: (Post #14) by truefusion on Jun 8 2009, 11:41 AM.
I have modified the program and it is now written in C++. This should improve performance and it no longer requires Python and PyQt4. It doesn't necessarily contain all of the features as the Python version did, but it introduces more convenient features, like multiple note editing, and is a more complete product. I have updated the screenshot of the program. Before i release an archive containing the source code, i will create a desktop file and a bash script for "installing" the ...
read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion > MODERATED AREA > Freebie Stuff

Pickel -- Note-taking Program - written in C++

truefusion
I have been using KNotes mostly to manage my notes, but i needed something more organized due to the amount of notes i have. I know there's KJots, and it's pretty much what i'm looking for, but it has a similar note-storing theory as KNotes which i'm not interested in. And since i wanted to practice more Python and get into PyQt4, i decided to code my own note-taking program. Though a slightly bigger learning curve than PyGtk, i found PyQt4 to be quite convenient in many areas. This work is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License. This work has only been tested under Linux, but should be able to work under Windows and other operating systems with the proper dependencies installed. This program is still in its early stages but can perform basic note-taking actions. All features currently not implemented the actions for them have been disabled.

As of version 1.0.0, PicKel is no longer written in Python and it is no longer under the CC-NC-SA license.

Required dependencies:
  • Qt4 (C++) (Makes use of QtCore, QtGUI and QtXML)

PicKel Project Page

Visit the project page to find out how to download the C++ source code with subversion. I will soon be releasing archives of the source code. If i can get my hands on a Windows (XP) installation, then i'll try to provide an already compiled executable for Windows. This program has been tested under Linux and Windows 7. It has not been thoroughly tested, however, under Windows 7, but for what has been tested you shouldn't have any problems with general use. Since the Qt4 library works with all major operating systems, this can also be used under the Mac OS.

Please report any bugs to the issues section of the project page.

To provide a screenshot of the program:


To compile under Unix like systems, you must cd into the directory where it has been downloaded to and run:
CONSOLE
qmake; make

After it is done compiling, the executable should be found under the build directory from where it was built. There is currently no install script or desktop file, so running the program will require digging to the build directory or if you're on Windows, making a desktop shortcut.

 

 

 


Comment/Reply (w/o sign-up)

Forbez
Nice find, I'll be checking this out later. Just based on the screen shot it looks pretty impressive already. If it loads as fast as Microsoft Notepad and is as easy to use as Microsoft Notepad, it will defiantly be my most favourite program.

Comment/Reply (w/o sign-up)

rpgsearcherz
This looks pretty good for notes but what would make it better than, say, Openoffice? Can you do things like bookmark things, highlight, etc. with this program as well?

It looks pretty good from the organization standpoint as you could do one 'note' per day or whatever and then keep everything organized like that.

Comment/Reply (w/o sign-up)

truefusion
QUOTE(rpgsearcherz @ Oct 16 2008, 03:43 PM) *
This looks pretty good for notes but what would make it better than, say, Openoffice? Can you do things like bookmark things, highlight, etc. with this program as well?

Highlight and text color will be implemented once i implement a color wheel widget. Different fonts and text sizes will be implemented later along with other text styles. Currently i'm trying to figure out how to dock the program into the system tray, where you can right click and get a list of all the notes you have. Clicking on a note there would (will) pop up the program with that note selected. Another future plan for the script is when you click on a category in the list, you'll see in the right side basically an overview of what's in that category, like in KJots. The bookmark idea, i don't really understand the concept or its purpose concerning notes.

As for what makes it better than OpenOffice: smaller file size, shorter compilation time—if any (especially if you use a distro that comes with KDE4 as its default DE; most distros already bring Python installed)—less resource hungery, and what-not. Also, i would say OpenOffice is a bit over the top for simple note-taking. I would say a better comparison with my program would be with KJots. If i'm not mistaken, KJots requires the KDE libraries to be installed, where mine doesn't and i'm trying to avoid using any KDE-specific widgets. Unfortunately that is the only apparent advantage my program has over KJots.

 

 

 


Comment/Reply (w/o sign-up)

jlhaslip
Any success running this in Ubuntu Hardy Heron that you are aware of?
Are those dependencies part of a fairly typical default Install?
If not, are they difficult to track-down and have installed? (Linux Noobie)

Any chance you can post up a method for installing this? Assume I have a copy of the Zip file on my desktop. Thanks.

Comment/Reply (w/o sign-up)

truefusion
QUOTE (jlhaslip @ Oct 17 2008, 07:44 PM) *
Any success running this in Ubuntu Hardy Heron that you are aware of?
Are those dependencies part of a fairly typical default Install?
If not, are they difficult to track-down and have installed? (Linux Noobie)

Any chance you can post up a method for installing this? Assume I have a copy of the Zip file on my desktop. Thanks.

Python should already be installed by default. In Kubuntu 8.10 (since they're defaulting to KDE4), Qt4 should be installed by default. But to install most of the dependencies required for this program, just install the package "python-qt4."
CONSOLE
sudo apt-get install python-qt4

Then you'll have to download the latest version of SIP and install that. To install it, extract the archive, open the terminal in the extracted folder, and type in
CONSOLE
python ./configure.py && make && sudo make install

That should make the program work.

Comment/Reply (w/o sign-up)

rpgsearcherz
QUOTE(truefusion @ Oct 16 2008, 10:46 PM) *
Highlight and text color will be implemented once i implement a color wheel widget. Different fonts and text sizes will be implemented later along with other text styles. Currently i'm trying to figure out how to dock the program into the system tray, where you can right click and get a list of all the notes you have. Clicking on a note there would (will) pop up the program with that note selected. Another future plan for the script is when you click on a category in the list, you'll see in the right side basically an overview of what's in that category, like in KJots. The bookmark idea, i don't really understand the concept or its purpose concerning notes.

As for what makes it better than OpenOffice: smaller file size, shorter compilation time—if any (especially if you use a distro that comes with KDE4 as its default DE; most distros already bring Python installed)—less resource hungery, and what-not. Also, i would say OpenOffice is a bit over the top for simple note-taking. I would say a better comparison with my program would be with KJots. If i'm not mistaken, KJots requires the KDE libraries to be installed, where mine doesn't and i'm trying to avoid using any KDE-specific widgets. Unfortunately that is the only apparent advantage my program has over KJots.



Thanks a lot for the reply about this! It does seem to be pretty good. I didn't notice that you were the one who made it, which is actually pretty good with you asking for input about it. It shows that you want it to improve.

As for the bookmarks, they are for...Let's say you take an hour of notes in a class, that takes up around 3-4 pages. Bookmarks would allow you to separate it based on subject or whatever, after the fact. This way you could spend your class time doing the typing and then organize it afterwards. It would be somewhat like an anchor in html I guess.

Comment/Reply (w/o sign-up)

Lyon2
I like it, it is simple and user friendly, but i will not trade it for the using notezilla, notezilla is much more complete for me, for what i what i need and for what i want sometimes, so thanks anyway.

Thanks for sharing though.

Comment/Reply (w/o sign-up)

harrison858
Hmm.. looks pretty good and useful. I will check this out when I have time, though.

Comment/Reply (w/o sign-up)

truefusion
I've released a newer version of PicKel—version 0.9. It contains more rich text support, system tray icon with its own context menu, etc. Although bullet items is not yet possible via a push button or from the Format menu, you can initiate one by attempting to insert an asterik (*). Concerning SIP and Ubuntu, Ubuntu 8.10 has a more up-to-date version of SIP, therefore you don't need to compile SIP yourself in order to use this program in Ubuntu 8.10.

Comment/Reply (w/o sign-up)

Latest Entries

truefusion
I have modified the program and it is now written in C++. This should improve performance and it no longer requires Python and PyQt4. It doesn't necessarily contain all of the features as the Python version did, but it introduces more convenient features, like multiple note editing, and is a more complete product. I have updated the screenshot of the program. Before i release an archive containing the source code, i will create a desktop file and a bash script for "installing" the program.

Features that have been requested, like bookmarking and reminders will be left for later versions.

Comment/Reply (w/o sign-up)

anwiii
all i was talking about were the couple programs i've used in the past that i'm used to. they are easy because they have all the features needed and took the time to understand it so i can enter all information fast and efficient. any new program will probably already do what 'm used to using.

like i said though. i like the simpicity of the screenshot. i support simplicity because a lot of programmers will try to add everything in to one program that isn't needed and it makes mastering that program more difficult than it has to be

i never really needed just a note organizer....but a deadline/reminder service as well

if you ever impliment that, i may just have to take a look at it

speaking of note taking software, i've never used anything similar, but i know there is note software that can post stickies on your desktop. that was what i meant by something more up to date....but i do feel a deadline/reminder service within the note program is essential

Comment/Reply (w/o sign-up)

truefusion
QUOTE (anwiii @ Nov 20 2008, 03:43 PM) *
... there are a lot easier ways to take notes that can be saved and brought up when needed

You've just made me think of another feature i should add, which i'm a bit surprised i missed. Thanks. And could you inform me of these easier ways for note taking, so that i may consider implementing these ways?

QUOTE (miladinoski @ Nov 20 2008, 04:04 PM) *
Hey, this is trully, trully cool! But too bad I use Gnome or other DM's as my DE's I don't really like KDE y'know.

The screenshot was taken in a LXDE environment. I don't know why, but i'm starting to like LXDE over the other three. Since LXDE runs off of GTK, i had to use qtconfig-qt4 to have all the Qt4 programs look like my GTK programs. The Nimbus theme (the one in the screenshot) rocks.

Comment/Reply (w/o sign-up)

miladinoski
Hey, this is trully, trully cool! But too bad I use Gnome or other DM's as my DE's I don't really like KDE y'know.

I'll test this and post my impressions in here, but as I see in the screenshots this is quite good and it looks pretty tight.

Will edit my post if I don't forget to add more feedback about it. Cheers! biggrin.gif

Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Pages: 1, 2
Similar Topics

Keywords : pickel, note, taking, program

  1. Free All Media To All Media Converter
    A free program like you never seen! (7)
  2. Www.limewire.com
    fastest file sharing program (11)
    www.limewire.com it's the fastest file sharing program on the planet proxy support users
    can now use web proxies to route their downloads to protect their identity-FASTEST NETWORK
    CONNECTIONONS,using new UDP host catches starts up connect then ever before and BITTORRENT SUPPORT
    BUILT IN many ways to get files all in one application! so many things UNIVERSAL PLUG' N
    'PLAY to have faster downloads UPnP support,Support forinternational searches and
    international groups/ creative common intergration /firewall to firewall transfers and much more
    check i....
  3. Thumbnail Utility Program
    Free from Fookes.com (2)
    An easy to use, free thumbnail creator. I have used it for the last few years for preparing pictures
    for web site presentations and it works very well. Highly recommended.
    http://www.fookes.com/ezthumbs/ ....
  4. A Really Great Program For Spriting/pixel Art
    (5)
    Graphics Gale Free Edition This program is similar to paint, only it's actually useful :b It Has
    some really cool features, and makes it really easy to get what colors you want. The company's
    website is humanbalance.net ....
  5. A New Free Speech Program
    CoolInfo (1)
    It's a free Speech program, it's CoolInfo.. With CoolInfo you'll forget your mouse and
    keyboard you'll be able to navigate and search the web using your speech even working with
    programs.. it has an option that you can add commands to it with different programs.. you can get
    it here ....
  6. Gimpshop!
    Free Photoshop-like program for download (3)
    www.GIMPshop.com This program works with Windows, Mac, Linux, etc., so don't worry I consider
    it a hot deal myself, considering I love the program and promote it wherever I go, so here's the
    scoop for any of you who are used to using Photoshop, but don't like the hefty price-tag:
    there's another option. The program is called GIMPshop, and it's an add-on to the popular
    image-editing program called The GIMP. I'm sure a lot of you have heard about The GIMP before,
    but for those of you who haven't, it's a powerful multi-OS based program us....
  7. Free Pc To Phone Calls
    A program that allows you to make free phone calls (13)
    I found a progarm called vopistunt that allows you to make free phone calls from pc to homephone or
    cell phone. Here is the url: VoipStunt This is the rate table, just look for "FREE" Rates ....
  8. Convert 500mb To 2 Mb With Any File Extension!
    No joke. It's a new program. Hot news! (69)
    Yes, it is true! Now we can convert games, movies, programs of 400MB to 1 GB to a ridiculous size
    of 2MB or even 5MB, the point is that this unbelivable new program as an unbelievable high
    compression rate. I know, i know, i was thinking like you are now, but the fact is that i installed
    this program and tryed it and it really compresses much and much more then the well known programs:
    - Winrar - 7-Zip - Winzip But how is that possible, i don't know, i really don't, but
    when i download a file with 2MB and when i extracted it, it took me hours to extract th....
  9. Free Proxy Server Program
    (18)
    its called proxy switcher, i had to find something so i could get back into websites where my ip
    number as been banned, so i found this program, best thing about the full version is free too so you
    don't have pay the $30US for it so here is the website. www.proxyswitcher.com enjoy.....
  10. Awesome Proxie Program
    JAP (5)
    A freind of mine tuned me into this its called JAP its prolly not special but i really enjoy
    it....Im not even going to pretend to know how it works, i just know it does and its very easy and
    its work a look......AND ITS FAST!!! JAP ....
  11. Need A Program That Can Save Mp3's
    (9)
    Well, I am currently looking after a program that can open files like .wav or .wma, and then save
    them as .mp3. My MP3 player can't play wav or wma files, so I need them in MP3. I know there are
    many free programs to do that, but I don't know which programs... So, just load a wma or wav
    file, then save it as mp3. Can't be hard? Hope I get a reply soon /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> ....
  12. Seo Studio
    Excellent program for SE submission,ranking,analysis,etc... (0)
    SEO Studio Lite Free Edition Here is what you get in SEO Studio Lite Free Edition : QUOTE
    Search Engine Submission: Free search engine submission to over 60 major search engines and
    directories for an unlimited number of websites. (Unlimited submission features are available)
    Search Engine Ranking: Free search engine ranking reports with unlimited keywords and websites on
    over 260 major and International search engines. Google API support for safe ranking checks. (Search
    the first 30 results only) Keyword Analysis: Advanced keyword analysis with actionable in....
  13. Blinkx - A Free Search Program
    Some kind of free desktop search tool (3)
    Blinkx is a kind of search engine that will search your PC for relevant information at the same time
    as it is searching the web. It is a 100% free program, get to Blinkx's homepage to download the
    free add-on program n get using it. I don't think it contains spyware/adware, or it is a scam,
    because there was a feature news about this freebie on ComputerActive - a PC magazine. The URL of
    Blinkx's homepage: http://www.blinkx.com If you are a begginer or don't how to get this
    free thing working on your pc, just follow the steps below: 1. Launch your web....
  14. Free Vb Coding Program
    Trying to find one (10)
    does anyone know where I can find a free copy of vb, but no luck. Is there a program that I can
    download to code in vb? I probably wont be using it to make cash, but you know.....
  15. What For Program Do You Use For Making Webdesigns?
    wich Program do you use for it? (28)
    I am making WebDesigns with Adobe Photoshop 7.0 I Slice with it and i Code it whit Ace HTML 5.0
    (free ware) wich programm do you use for it? My Designed Site's whit Adobe:
    http://www.Xtreme-Crew.nl and http://www.Serious-Gaming-Clan.tk Rate and Comment please!....

    1. Looking for pickel, note, taking, program

Searching Video's for pickel, note, taking, program
See Also,
advertisement


Pickel -- Note-taking Program - written in C++

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com