Posts
 
Reputation
Joined
Last Seen
Ranked #481
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
~1K People Reached
About Me

Just another techie.

Favorite Tags
Member Avatar for pyeri

Folks, We already know about CodeIgniter and its enormous capabilities as a PHP framework, this very site being a testament of it. But what about an even smaller micro-framework for PHP? Something along the lines of Flask or Bottle? Something you can use to develop things like REST API, prototyping …

Member Avatar for Dani
0
82
Member Avatar for SoniyaJonas

There are many good recommendations in this thread but the long term solution here is to simply switch to Android. It's a more free platform and ecosystem where apps are available in the Google Play Store for almost everything. And if you want your own custom solution, you can even …

Member Avatar for simhakidsden
4
339
Member Avatar for pyeri

Greetings Folks! I had signed up on Daniweb many years ago but never bothered to seriously post until now. Only when the "social networks" of the world like Reddit and Quora and Twitter started disappointing me beyond the usual excruciating limits did I decide to explore some other programming forums …

Member Avatar for pyeri
1
60
Member Avatar for Dani

Glad to know that Daniweb uses CodeIgniter! It's a very minimal but robust framework and has all the bells and whistles which other so called "modern" frameworks keep talking about. I myself use CI3 for most of my freelance projects. For database interaction, I usually don't use the CI models, …

Member Avatar for pyeri
2
199
Member Avatar for Seema_7

There are several like Quickbooks, Freshbooks, etc. as others have said. Specifically in the Indian context, I think Tally and Zoho Books are two popular apps which are known to work. Then there are web-based ERPs offered by various vendors which take care of several modules like Inventory, HR and …

Member Avatar for pyeri
2
391
Member Avatar for cored0mp

I've had pretty decent experience with [xhtml2pdf](https://xhtml2pdf.readthedocs.io/). The best part about this PDF library is that you don't have to worry about the low level nitty-gritty of PDF creation, you can simply generate a PDF from your HTML formatted content.

Member Avatar for pyeri
0
58
Member Avatar for tricket_7

> if username = "Cust_Name" and if password = "Cust_Pass" > then msgbox" you are logged in" > else > msgbox"login error" This part is syntactically wrong. It should be something like this: if (username=="Cust_Name" && password=="Cust_Pass") { MessageBox.Show("You are logged in"); } else { MessageBox.Show("Error"); }

Member Avatar for notconfirmed
0
245
Member Avatar for pyeri

I have written a simple and minimalist HTTP proxy server that runs on command line. In the Start() method, a TcpListener blocks until it gets a client request and creates a new thread (ThreadHandleClient method) that processes this client, fetches its url and relays data. The trouble is in the …

0
83