Everything posted by Callington
-
How to deploy a project with ASP.NET MVC + vue.js with separate front-end and back-end on iis?
The backend is used mvc framework, the front-end is a independent vue framework, how to deploy on iis to run?
- Create an interface for my robotic arm project
-
Make a web page with wordpress
So if I want to create a simple web page for this project myself, what software should I use?
-
Make a web page with wordpress
I recently finished a project for an intelligent access control system, because I use ESP32 so I want to make an IoT, my friend recommended me to use wordpress, does anyone have a tutorial for newbies please? Here is a video of the project I created for reference.
-
Create an interface for my robotic arm project
- How to get data from C++ program memory in Python
The C++ program produces an array, I want to put this array into python to do some operations, and then the data processed by python is returned to the C++ program for further processing. How do I do this?- How to clear password for window7?
- Why can't I print out data?
#include using namespace std; struct node { struct node* head; int date; struct node* later; }; struct node* headnode()//Create table header { struct node* head = new struct node; head->head = head; head->later = head; return head; } //Node struct node* headnode(int dat) { struct node* headnode = new struct node; headnode->date = dat; headnode->head = NULL; headnode->later = NULL; return headnode; } // void print(struct nodehead,int date)//Head insertion method { struct node newhead = headnode(date); newhead->head = head; newhead->later = head->later; head->later->head = newhead; newhead->later = newhead; } void printf(struct node* head)//print { struct node* newnode = head->later; while(newnode != head) { cout << newnode->date << endl; newnode = newnode->head; } } int main() { struct node* head = headnode(); print(head, 44); print(head, 33); print(head, 22); printf(head); cout << "Really hard" << endl; system("pause"); return 0; }- Another program drop the support: Python 3.9.0
I can't install python on my windows 7 either. I downloaded the corresponding version of python according to the standard of windows 7, but still can't install it.- Hello everyone, newcomers reporting
- How to get data from C++ program memory in Python