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

I like to work on networks. Sometimes I dabble in application development?

Member Avatar for Paulmescal

You'd be surprised, but if you spend over a year on a shopping app here are two things you will have wished to have spent more time planning on: sales tax calculation payment gateway integration Best of luck!

Member Avatar for khushnuma_1
2
197
Member Avatar for Ryan Morgan

Assuming you intend to ignore the sound advice of your compatriots here, I recommend having a look at a tool called Foremost. I'm a specialist and that's what I would use.

Member Avatar for astroraamaji
3
384
Member Avatar for cored0mp

Recently made a decision for an app I'm working on to accumulate data in batches AND THEN to insert it into the database with one statement rather than adding 1,000 records through one thousand separate inserts. Is this done better through file or memory? If I write the segments of …

Member Avatar for DGPickett
1
147
Member Avatar for cored0mp

Hey Gang! I'm hitting a point with my (python/mysql/linux) app for processing large amounts of network records where I need to make a design decision. I definitely want my app to have high performance. Because optimization as a skill set is so rare there is no reason not to employ …

Member Avatar for Pelorus_1
2
58
Member Avatar for cored0mp

I had some fun this weekend having a go at pdfkit with mixed results. Can anyone nominate a candidate for best PDF writing?

Member Avatar for pyeri
0
65
Member Avatar for Ariful_5

Maybe this is an outside of the box answer? I think there have been many good suggestions so far, but a custom answer might depend upon what topic you are SEO'ing a website for. Like if we were about to SEO a website about turtles, we might want to try …

Member Avatar for Bunker
6
628
Member Avatar for FarrisFahad

Interesting question. I happen to like Qwant better for everything except maps. I don't feel that Google is any longer the leader in search, but probably the leader for maps as of now. Maps and ads.

Member Avatar for brandlyglobal
1
111
Member Avatar for cored0mp

I was thinking that one way that a coding team could work would be that coders would be rotated through several roles. This would prevent people from getting too comfortable towards the goal of preventing problem areas (code quality wise) from developing in the department. * Architecture * Production Coding …

Member Avatar for chuckc
1
107
Member Avatar for riyajohnson70

"With so many options available, it can be challenging to determine the best fit for the project's needs. " Yes, that's why so many people rush through planning. I now think that the longer you go without writing your first line of code, the better.

Member Avatar for trueframe
1
49
Member Avatar for cored0mp

I'll admit that I have an opinion about this. Is the point of professional coding to write creative software or to write software that adheres closely to standards?

Member Avatar for cored0mp
0
117
Member Avatar for cored0mp

Hey Gang! OK today I am having trouble with my transaction processing application implemented in python/MySQL. Here is some "working" testing code. import psycopg2 from psycopg2 import Error import binascii from binascii import unhexlify import mysql.connector as mysql sql='''CREATE PROCEDURE testprocedure(OUT tacos INT) BEGIN show tables; SET tacos := 1 …

Member Avatar for Dani
1
74
Member Avatar for FarrisFahad

Realistically your choice is going to be dominated by two factors, for most people making this decision. **Maintainability **- Finding help to maintain an app written in the older of the two languages will become increasingly difficult over time. **Library Support** - Which of the two languages has better library …

Member Avatar for Dani
2
55
Member Avatar for FarrisFahad
Member Avatar for cored0mp

Hey! I've been asked to store some data from a client in mysql in an encoded format using python. Nothing could be easier, right? I will later need to decode the same data using mysql exclusively. Given that constraint, I thought that base64 would be the go to since nearly …

Member Avatar for cored0mp
2
354
Member Avatar for Ronald417

I had decent luck with Hostinger, but like some of us here I'll admit that I'm shopping around.

Member Avatar for cored0mp
1
91
Member Avatar for rproffitt
Member Avatar for carriejo810
4
1K
Member Avatar for Cameron_12

I agree with what Dani said. Debug code is so easy to write if you're not used to doing that. I used to think it was only for experts, but it can about double your productivity really. Also, if you try to run the database statements by hand in the …

Member Avatar for AndreRet
3
155
Member Avatar for cored0mp

More programming fun! OK this time around I'm trying to create a table with the statement, CREATE TABLE tablename ( recnumber SERIAL PRIMARY KEY, recordvalues VARCHAR ( 500 ) NOT NULL, datecreated DATE ) And it basically works, and I can add records using the dba account. However when I …

Member Avatar for cored0mp
1
96
Member Avatar for cored0mp

I'm working on an application, certainly not my first. Some aspects of my coding background are quite informal, for example I have only a rudimentary understanding of source code repositories. Take library formation, for example? I'm reasonably proud that my source is of sufficient quality and organization to pass an …

Member Avatar for Dani
2
113
Member Avatar for cored0mp

How do I create a table in postgres that's associated with a specific database? Obviously from the command line one can do Create table tablename (); But how do I make sure that the table is associated with the correct database? CREATE table dbname.tablename(); is giving me the error: ERROR: …

Member Avatar for Dani
1
135