Re: How do I delete duplicate photos on my Mac for free? Programming Software Development by Camila_6 Just use duplicate file finder software that will help you to delete duplicate photos. You can also sort the images based on the name and date taken but it will take a lot of time. ABC for Github-programs and Python Programming Software Development by Audun … like this that I can put in a website? Some sort of template code that you can shimmy into HTML ? Thanks Lots of new members but no one posts Community Center Meta DaniWeb by Dani As [you can see here](https://www.daniweb.com/stats/members?country=&filter=&sort=timestamp), we get lots of new members signing up every day, but nearly no one posts. This has been true for decades and decades now. Anyone care to hypothesize why all these people sign up if not to contribute? #Lurker '30% of Activities Performed by Humans Could Be Automated with AI' Community Center by Johannes C. …. In the post-AI agent world, everyone will have some sort of AI assistant or digital co-worker. ## 8. Do you… Re: i donĀ“t understand this syntax error when using OpenCV Programming Databases by Audun …? It says syntax error a lot on there too. What sort of programs do you use for this? Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … expense they have to incur when they run into ths sort of problem. >Good thing, molex connectors are still a… Re: App development - Lobby functionality optimisation Programming Mobile Development by toneewa … what the idea or thought is. Please paint us some sort of pseudo code of your design. Not optimized: class App… Re: Extract Tabular Data from PDF Images using Hugging Face Table Transformer Programming Computer Science by Harini sri Hi, Thank you so much for the above code. Its giving better results compared to other libraries. I have few questions. In some tables, I have common column name for three columns and further I have sub columns like below.... in these cases the tables are not getting extracted properly...Do you have any suggestions for handling such cases? Also … Re: ABC for Github-programs and Python Programming Software Development by Reverend Jim I have an apps folder on D: where I keep all my portable/homegrown software. Let's say I want to create a virtual enviromnent in `D:\apps\MyVirtual`. To do this I open a command shell and do D:\>cd apps D:\apps>python -m venv MyVirtual If I install any packages in this session, they will be installed in the virtual python. … Re: ABC for Github-programs and Python Programming Software Development by Reverend Jim I have developed a number of GUI applications in python. I found that the wxpython package was far better than tkinter. wxpython is based on wxwidgets which is essentially windows controls. Because wxwidgets are compiled for each major system, controls rendered by wxpython look like the native controls for whatever system is hosting. Re: Lots of new members but no one posts Community Center Meta DaniWeb by pritaeas Spammers? Perhaps auto-deleted? Re: Lots of new members but no one posts Community Center Meta DaniWeb by Dani I can confirm that's not happening. I can confirm they're just signing up and then leaving, and can also confirm they're not bots. There can't be *that* many people creating sleeper accounts for future spam attacks, so I'm ruling that out too. Plus, it's always been this way. Sort random Programming Software Development by andreas.petrou.967 Sort numbers random in array import java.util.*; class FillAndSort…i = i + 1; } print( nums ); //** print array Arrays.sort( nums ); //** sort array print( nums ); //** print again } static void print( double[ ]… Re: Sort function in javascript Programming Web Development by pritaeas … string comparison by default. You can specify a sort function as parameter to the function. The compare function takes … smaller. function compare(x, y) { return x - y; } println(drinks1.sort(compare)); Re: sort on field names; refresh page? Programming Web Development by PoA Sort by LastName [PHP]$result = mysql_query("SELECT * FROM contacts ORDERBY LastName");[/PHP] Sort by State [PHP]$result = mysql_query("SELECT * FROM contacts ORDERBY State");[/PHP] Re: sort Programming Software Development by Sa_FF … } . . . printf("end of game!\n"); sort(players, n_players); printf("classification:\n\n"); for(i…PLAYER data; data = players[i_player]; return data; } /*selection sort - decreasing*/ void sort(PLAYER *players, int n_players) { int i, j, k, … sort? Programming Software Development by nope3d … run it the output is correct but i need to sort it to feel much better...... here is my program....…(ms.getElementAt(i))) { mySet.addElement(ms.getElementAt(i)); } } //MySet.sort(mySet); return mySet; } public MySet difference(MySet ms) { MySet set… sort() Programming Software Development by sofia85 Hi, I have a file containing one column with values: 3.258 1.345 5.769 1.00 etc... I want to sort this data. I tried to use sort() directly on my raw data but I get error message saying 'str' object has no attribute 'sort'. I now it's basic, but I'm a beginner at Python and now I don't know how to proceed. sort Programming Software Development by emilio …, arrP3, arrP4 , NULL};[/CODE] what is the best way to sort all strings in arrPP in lexicographical order so i can… them all in this order. if it helps i can sort each *arr[] seperatly sort Programming Software Development by Trckst3 Hey guys i'm still having trouble with my bubble sort in else if(choice==2). Where am i going wrong ….Display original data.\n"; cout<<"2.Sort the data into descending order\n"; cout<<… Re: sort Programming Software Development by VernonDozier ….Display original data.\n"; cout<<"2.Sort the data into descending order\n"; cout<<… the sorting code is perfect. Display the numbers AFTER the sort is over. Lines 40, 43 and 44: You are going… Re: sort Programming Software Development by Sky Diploma … <algorithm>[/CODE] In your program. 2) The Bubble Sort Function in your program is faulty. I will give you… other numbers in the array. Then you will have the Sort. Hint: You can do this by using 2 "For… Re: sort Programming Software Development by dougy83 … whole lot more iterations. you could use your immediate neighbour sort if you change the loops to the order of:[code…] Consider the array [5 4 3 2 1] for ascending sort. How many swaps will it take to get the rightmost… Re: sort Programming Software Development by VernonDozier [QUOTE=Trckst3;578217]Ok i tried using the immediate neighbor sort like you suggested and it works fine as long as … you put your cout statements in the middle of the sort like you have, you are not going to get a… sort Programming Software Development by Sa_FF … decreasing order? i did the sort is in increasing order [CODE=c] typedef struct{ char name[… Re: SORT Programming Software Development by Doughnuts … an input/output function. Otherwise, your sort function is fine. Here is my sort function: [CODE]void Sort(int Array[], int NumUsed) { int… Re: sort Programming Software Development by Ancient Dragon >>what is the best way to sort all strings in arrPP Declare them all in one big array and in sorted order then you won't have to worry about that. Re: sort Programming Software Development by dougy83 I thought bubble sort was more often done using the loop structure: [code] for(int i = 1; i < N; i++){ for(int j = 0; j < i; j++){ if(x[i] < x[j]){ swap(x[i], x[j]); } } } [/code] Re: sort Programming Software Development by Trckst3 Ok i tried using the immediate neighbor sort like you suggested and it works fine as long as you input the numbers in order from 1-20 it'll assign them fine but if you mix the numbers up and use larger numbers it lists them like 50 times and doesn't put them in any order is it because of the way i have lines 42-46 setup? Re: sort Programming Software Development by Trckst3 ….Display original data.\n"; cout<<"2.Sort the data into descending order\n"; cout<<…