Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~11.8K People Reached
Favorite Tags
Member Avatar for catastrophe2

I have a table that contains some cubes with servers and active status (see attached image): note: CUBE1 is repeated intentionally. The idea is the same cube is getting synced from the same server 1 as a data source (process_server) onto different target servers (query_server; say server2 is in region …

Member Avatar for pinel
0
1K
Member Avatar for catastrophe2

I wrote a script that manages services on the server and starts/stops etc...depending on the Task in the csv file, as well as changes the startuptype, again depending on the start up type in the csv file. CSV file: > Server,Service,Startup Type,Task > server1,SQL Server Analysis Services (MSSQLSERVER),automatic,start > server2,"SQL …

Member Avatar for rproffitt
0
1K
Member Avatar for catastrophe2

hi So i made a simple game app, and am implementing music now i have easy and hard mode, and game over, as well as home screen homesecreen now plays music1, loops fine and all...then once player selects to play i want to stop the current music1, and start music …

Member Avatar for Kubilay Doğukan
0
320
Member Avatar for catastrophe2

the following short program asks user to enter # of hospital rooms (between 1-5), and asks for number of flowers, which cannot be a negative number. Then, it picks based on how many rooms the price from the `hospitalRoomsPrices_Array[5]`, and it also displays the total flowers multiplied by $2.50 each. …

Member Avatar for Reverend Jim
0
302
Member Avatar for catastrophe2

Im working on this analyzer program that reads input from a file and breaks characters into various tables. Ive got the output pretty much done, except there's an issue with some of it, and Im pretty sure its due to the input problem. so heres what the input looks like …

Member Avatar for tinstaafl
0
329
Member Avatar for catastrophe2

hi So ive deployed a small website i worked on, and before deployemnt on Amazon web services, i was of course testing everything on localhost. after seeing that things are working on localhost, i changed the localhost to the deployment link provided on AWS and things looked fine and all …

Member Avatar for catastrophe2
0
491
Member Avatar for Curious Gorge

I'm pretty good with Java but I would like to learn to create interesting things with C++ or C. At the moment I have to ask: Why do all of these IDE's and libraries make it so damn difficult to set up an environment for programming? Personally I believe programming …

Member Avatar for triumphost
0
377
Member Avatar for catastrophe2

hello so we are in the process of developing a tagging program, and im building the form in c#. now how would we be able to connect the db from workbench with this form in visual studio to make queries in the program? btw the databse i hosted it at …

0
138
Member Avatar for catastrophe2

im doing a project about tagging butterflies system, in which users will login/create account, update account, insert butterfly in database, update a butterfly in database, search for a butterfly, display a leaderboard, and a graph. i havent done C# in a while, altho i can get the hang of it …

Member Avatar for ddanbe
0
173
Member Avatar for catastrophe2

hi i was adding something to my XNA project, and i downloaded the GIF animation library from https://xnagif.codeplex.com/ i added the pipeline and references as needed (i followed the sample GIF animation) and one of my gif images worked (yay) but i have decided to add more gif images and …

0
110
Member Avatar for sarauta
Member Avatar for catastrophe2

hello i have a program that was due, but i submitted what i can. however, i have a chance still at making the program fully functional, and so i need to submit it fast before its graded. i already have the program, and its running, but i just have a …

Member Avatar for happygeek
0
189
Member Avatar for catastrophe2

hi so this code here as i test it on paper provides paranthesis on every leaf node, disregarding priority (operator precedence) how can i make it add those paranthesis based on precedence of operators? void printInfix(Node n) { if (n == null) { if (n.isLeaf())//if n is a leaf, therefore …

Member Avatar for catastrophe2
0
238
Member Avatar for catastrophe2

hello I have an inquiry about reading from a file. so if i have a file and if it opens (meaning it is there) how do i check if there is data? ifstream file("example.txt"); if (file.good()) { //file.open("example.txt"); // is this necessary again???????? i read that the ".good" provide checking …

Member Avatar for catastrophe2
0
2K
Member Avatar for catastrophe2

hi so why isnt queue printing anything where it should? #include<iostream> #include<string> using namespace std; template<class ItemType> struct NodeType { ItemType info; NodeType* next; }; template<class ItemType> class Queue { private: int size; NodeType<ItemType>* front; // It points to the front of a singly-linked list NodeType<ItemType>* rear; // It points …

Member Avatar for catastrophe2
0
205
Member Avatar for catastrophe2

hi so i have to make a copy of a linked list i made last week and this time i just have to update it with a deep copy concept thus making a copy of that list i made. here is my code: #include <iostream> #include <string> using namespace std; …

Member Avatar for catastrophe2
0
296
Member Avatar for catastrophe2

hi so this project requires an input of U, M, or D and as many as you like of them (i think, might be only up to 100 based on charUMD[100] array in code) also, you have to end it with # in order to indicate the end. i am …

Member Avatar for catastrophe2
0
320
Member Avatar for catastrophe2

hello idk if this goes here, but i accidently a while ago pressed "do not receive email replies anymore from daniweb" something like that button in one of the replies i got to a discussion i had. i want it activated back, but i dont know how. i only want …

Member Avatar for catastrophe2
0
1K
Member Avatar for catastrophe2

hello everyone So i have a project to do a code about using these powers of three numbers: 1, 3, 9, 27, and 81 (we dont have to use all and a number of them can only be used up to one time per number being decomposed) and use them …

Member Avatar for catastrophe2
0
231
Member Avatar for catastrophe2

Hello I have to do a sorted list code according to some instructions. a friend and I worked on this, and we pretty much ended up with the same code, his worked, but mine isnt, even though its exactly same! I have been trying for hours figuring how to make …

Member Avatar for catastrophe2
0
1K
Member Avatar for catastrophe2

hi i have this assignment in c++, i did it, but there is one tiny error i cant figure out the solution to it. the program below is supposed to take in 3 elements value inputs from user for 3 students. so if you run it, you get input student1 …

Member Avatar for catastrophe2
0
185
Member Avatar for catastrophe2

hello we have to make a program that grades multiple choice exams from input files by the user and outputs the id of each student followed by their appropriate score. here are the input files: > exam file abcdefabcdefabcdefab 1234567 abcdefabcdefabcdefab 9876543 abddefbbbdefcbcdefac 5554446 abcdefabcdefabcdef 4445556 abcdefabcdefabcdefabcd where the first …

Member Avatar for catastrophe2
0
222
Member Avatar for catastrophe2

hello everyone new here and i am currently taking my first ever c++ class, so completely new to c++. i made an account here, in which i was able to post a question i had a bout a project for grading program, then i received email of required activation which …

Member Avatar for catastrophe2
0
213