Messages - relipse [ switch to compact view ]

Pages: prev1 ... 6 7 8 9 10 [11] 12 13 14 15 16 ... 22next
51
General Software Discussion / Re: 2013 Version: Browser Wars
« on: January 28, 2013, 01:58 AM »
chrome rocks!

52
N.A.N.Y. 2013 / Re: NANY 2013 PLEDGE - Contractor's Work Log
« on: January 14, 2013, 06:10 PM »
Ok originally that is what I was thinking of doing, selling the source code for private installs.
In the mean time, I have instead received advice for charging a monthly fee (which I plan on implementing in the next few months at cworklog.com).

Depending on the price or interest, I still may sell the source for private installation, but the problem is what licensing do I put on the source code, and what about upgrades? Since the main site (cworklog.com) will be updated frequently with added features, you may find you want those features.

Since the original post,  I've changed the web server to linode, I have purchased a security certificate, i have paid programmers and testers to help get cworklog.com on the road and I am in the middle of working on an windows/macos/linux time-tracker that synchronizes to the server while it is online, and still tracks your time while you are offline (the current GUI only works while online).

In short, in about 3 months, I will have a monthly payment plan to use the secure https://cworklog.com with all the updates and features.

As far as a private installation, you might want to contact me about rights and what you intend to use it for and perhaps we can come up with something. ([email protected]).

Notes* I am also looking to do an android and iphone app to also monitor offline usage.

Jim

53
if you know php you can use dompdf to convert html to pdf
comes in handy
example code below:
Spoiler

   $contents = '<html><head></head><body><h2>Your Html Here</h2><center>hi</center></body></html>';
   require_once("lib/dompdf/dompdf_config.inc.php");
  
   set_time_limit (0);
   $dompdf = new DOMPDF();
   $dompdf->load_html($contents);
   //$dompdf->set_paper('paper', 'landscape');
   $dompdf->render();
  
   $dompdf->stream("Invoice", array("Attachment" => false));
   exit(0);


i used it to generate invoices at https://cworklog.com

54
Good ol notepad++ and Chrome ctrl-shift-j for debugging for me.

55
Developer's Corner / Re: Learn C (and other things...) the Hard Way
« on: December 28, 2012, 04:22 PM »
Wow, nice resource.  I'll be looking at this later; especially the Regex's; been wanting to learn that for a while, especially as it seems a pre-requisite for Linux hackery, and I never bothered to learn much beyond the basics.
Thanks to you and Josh  :Thmbsup:

I have been using RegexBuddy for several years now, a must tool for regular expressions worth every penny i spent on it, that will teach it to you by example.


Pages: prev1 ... 6 7 8 9 10 [11] 12 13 14 15 16 ... 22next
Go to full version