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

Just another techie.

12 Posted Topics

Member Avatar for pyeri

To be fair, it had already started happening much before AI came when programmer roles started getting commoditized into "Python coder", "PHP scripter", "dotnet developer", etc. Though these exact phrases weren't used in job descriptions, this is how recruiters and clients started referring programmers as such. But LLMs took it …

Member Avatar for DanielJack34
1
88
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 optimusfintech
2
530
Member Avatar for Dani

How many of you have watched [Evil Web Series](https://en.wikipedia.org/wiki/Evil_(TV_series))? It's there on Jio Hotstar and maybe few other networks like Amazon Prime. It's a very interesting story that blends the material and spiritual worlds, and makes you question at each step whether this was just another dark but mundane event …

Member Avatar for Reverend Jim
2
159
Member Avatar for pyeri

One of the first things I ask during interviews is **Are you going to micro manage how I work?** It’s me who will decide which programming language to use, what technology and framework to use, which IDE to use or just code in plain notepad.exe. You just state your requirements …

Member Avatar for Reverend Jim
0
99
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 Advika_1
0
247
Member Avatar for fx.eko

You might be able to run it for now but at some point in future, Big Tech's surveillance capitalism model will ensure that Visual Studio 6.0 will eventually stop working on modern Windows versions. The sane choice here is switching to an open source desktop development framework such as PySide/PyQt, …

Member Avatar for pyeri
0
216
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 Dani
2
146
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
1
164
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
489
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
335
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
1
251
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
91

The End.