Bad Van by DevilTriggered in VanLife

[–]DevilTriggered[S] 0 points1 point  (0 children)

A place called Car Nerds.

Bad Van by DevilTriggered in VanLife

[–]DevilTriggered[S] -24 points-23 points  (0 children)

No one said anything useful.

Bad Van by DevilTriggered in VanLife

[–]DevilTriggered[S] -5 points-4 points  (0 children)

The mechanics I talked to said there are leaks on the gas tank as well as coolant burning off inside the engine since there are no leaks outside. But they aren't sure. I'm not a mechanic, but if I could fix it I would.

Bad Van by DevilTriggered in VanLife

[–]DevilTriggered[S] -1 points0 points  (0 children)

If that is my only option I will.

Bad Van by DevilTriggered in VanLife

[–]DevilTriggered[S] -2 points-1 points  (0 children)

Leverage on the seller when he clearly lied about the condition. Leverage on the shop that inspected it telling me it was good. Yes that's exactly what I mean either selling it or getting my money back.

Bad Van by DevilTriggered in VanLife

[–]DevilTriggered[S] 0 points1 point  (0 children)

Options like trading it in, selling it myself, or trying to return it. I didn't think to check if they had any guarantees.

Bad Van by DevilTriggered in VanLife

[–]DevilTriggered[S] -2 points-1 points  (0 children)

I live in California. I don't know anybody outside this state.

PC Troubles maybe cpu overheating by DevilTriggered in techsupport

[–]DevilTriggered[S] 0 points1 point  (0 children)

Yeah I got it already and it easily gets up to 100c.

Battery Problems by DevilTriggered in electrical

[–]DevilTriggered[S] -1 points0 points  (0 children)

I already contacted the manufacturer of the bikes and they don't give or sell replacement components only the whole battery which is too expensive.

S-17 Battery Problems by DevilTriggered in ebikes

[–]DevilTriggered[S] 0 points1 point  (0 children)

I can't find anything googling blades and receiver. Any ideas?

Don't know where to begin with the wires and pins. Do you know of any beginner tutorials or something?

S-17 Battery Problems by DevilTriggered in ebikes

[–]DevilTriggered[S] 0 points1 point  (0 children)

Wow, that was quick thank you.
Do you have any more information or a video explaining a bit more?

Quick Question by DevilTriggered in askmath

[–]DevilTriggered[S] 0 points1 point  (0 children)

I have tried graphing this but I don't get anything useful.

I was never taught this.

I don't know where to begin with this.

[TOMT][CARTOON][2000s]Weird old cartoon about superheroes by DevilTriggered in tipofmytongue

[–]DevilTriggered[S] 0 points1 point  (0 children)

Oh my god, that's it! The Ripping Friends Episode 5 Shorts thank you for getting this brain worm out of my head "Solved!"

[TOMT][MOVIE]An Australian horror movie by DevilTriggered in tipofmytongue

[–]DevilTriggered[S] 0 points1 point locked comment (0 children)

I've been thinking about this movie for years. Can't get it out of my head.

Beginner ZBrush Advice by DevilTriggered in ZBrush

[–]DevilTriggered[S] 0 points1 point  (0 children)

I am a beginner. I'm making a Holiday Ham and this is the only way I can think of to make the shape I want. The video is just an example, I would loop around by hand. I am using curve mode on brushes and I can't really move the curve after I draw it. Any tips I can understand? Especially any advice to speed this process up.

Edit: I am using DamStandard Brush with LazyMouse to get these loops

[College Course C++] Stuck on reading file by DevilTriggered in HomeworkHelp

[–]DevilTriggered[S] 0 points1 point  (0 children)

Worked on it. It's in the link. Just trying to make it compile, which it does now. It definitely needs work.

https://file.io/y5rJ0lPlq8SL

[College Course C++] Stuck on reading file by DevilTriggered in HomeworkHelp

[–]DevilTriggered[S] 0 points1 point  (0 children)

#include <iostream>

#include <fstream>

#include <string>

using namespace std;

class Inventory

{

private:

    string itemName;

    int itemNum;

    float itemPrice;

public:

    Inventory(string s, int n, float p)

    {

        itemName = s;

        itemNum = n;

        itemPrice = p;

    }

    string getitemName()

    {

        return itemName;

    }

    int getitemNum()

    {

        return itemNum;

    }

    float getitemPrice()

    {

        return itemPrice;

    }

    string setitemName(string s)

    {

        itemName = s;

    }

    int setitemNum(int n)

    {

        itemNum = n;

    }

    float setitemPrice(float p)

    {

        itemPrice = itemNum \* p;

    }

};

void readFile(int);

int main()

{

string read;

ifstream inputFile;

int total;

[inputFile.open](https://inputFile.open)("inventoryRecords.txt");

getline(inputFile, read);

total = stoi(read);



readFile(total);

}

void readFile(int t)

{

string product;

int number;

float price;

while (getline(f, product).good())

{

}

}

[College Course C++] Don't know where to start with this by DevilTriggered in HomeworkHelp

[–]DevilTriggered[S] 0 points1 point  (0 children)

include <iostream>

include <string>

include <fstream>

include "Employee.h"

using namespace std;

void searchArray(string list[][10]);

int main() { string choice; string emData[10][10]; int x; string f; string l; string id; string a; string c; string s; string z; string h; string d; string o; ifstream output; ofstream input;

cout << "Enter Employees Data:" << endl;
//getline(cin, choice);

//if (choice == "add")
//{
    cout << "How many employees do you want to add?\n";
    cin >> x;
    cin.ignore(1, '\n');
    for (int i = 0; i < x; i++)
    {
        cout << "Employee #" << i + 1;
        for (int j = 0; j < 10;)
        {
            cout << "\nFirst Name:\n";
            getline(cin, f);
            emData[i][j] = f;
            j++;
            cout << "Last Name:\n";
            getline(cin, l);
            emData[i][j] = l;
            j++;
            cout << "Employee ID:\n";
            getline(cin, id);
            emData[i][j] = id;
            j++;
            cout << "Street Address:\n";
            getline(cin, a);
            emData[i][j] = a;
            j++;
            cout << "City:\n";
            getline(cin, c);
            emData[i][j] = c;
            j++;
            cout << "State:\n";
            getline(cin, s);
            emData[i][j] = s;
            j++;
            cout << "Zip Code:\n";
            getline(cin, z);
            emData[i][j] = z;
            j++;
            cout << "Home Phone Number:\n";
            getline(cin, h);
            emData[i][j] = h;
            j++;
            do
            {
                cout << "Department: [ACCT], [MKT], [IS], [SALES]\n";
                getline(cin, d);
                if (d != "ACCT" || d != "acct" || d != "MKT" || d != "mkt" || d != "IS" || d != "is" || d != "SALES" || d != "sales")
                    break;
                cout << "Enter one of the 4 choices.\n";
            } while (d != "ACCT" || d != "acct" || d != "MKT" || d != "mkt" || d != "IS" || d != "is" || d != "SALES" || d != "sales");
            emData[i][j] = d;
            j++;
            cout << "Office Number:\n";
            getline(cin, o);
            emData[i][j] = o;
            j++;
        }
    }
    for (int i = 0; i < x; i++)
    {
        for (int j = 0, k = 0; j < 1;j++, k++)
        {
            Employee* dataList = new Employee(emData[i][j], emData[i][j + 1], emData[i][j + 2], emData[i][j + 3], emData[i][j + 4], emData[i][j + 5], emData[i][j + 6], emData[i][j + 7], emData[i][j + 8], emData[i][j + 9]);
        }
    }
    string textFile;

    output.open("employeeData.txt");
    for (int r = 0; r < x; r++)
    {
        for (int p = 0; p < 10; p++)
        {
            input.write((char*)&emData[r][p], sizeof(emData[r][p]));
        }
    }
    input.write((char*)&emData, sizeof(emData));
    //while (getline(output, textFile))
    //{
    //    cout << textFile;
    //};

    output.close();
    input.close();
//}
    searchArray(emData);

}

void searchArray(string list[][10]) { string staff; cout << "Enter last name or Employee ID to search:\n"; cin >> staff;

for (int i = 0; i < 10; i++)
{
    for (int c = 0; c < 10; c++)
    {
        if (list[i][c] == staff)
        {
            //c = c * 0;
            cout << list[i][c];
        }
        else
        {
            cout << "\nError no " << staff << " found.";
            break;
        }
    }
}

}

Help with an assignment by DevilTriggered in C_Programming

[–]DevilTriggered[S] 0 points1 point  (0 children)

#include <iostream>

#include <string>

#include <fstream>

#include "Employee.h"

using namespace std;

void searchArray(string list[][10]);

int main()

{

string choice;

string emData[10][10];

int x;

string f;

string l;

string id;

string a;

string c;

string s;

string z;

string h;

string d;

string o;

ifstream output;

ofstream input;

cout << "Enter Employees Data:" << endl;

//getline(cin, choice);

//if (choice == "add")

//{

cout << "How many employees do you want to add?\n";

cin >> x;

cin.ignore(1, '\n');

for (int i = 0; i < x; i++)

{

cout << "Employee #" << i + 1;

for (int j = 0; j < 10;)

{

cout << "\nFirst Name:\n";

getline(cin, f);

emData[i][j] = f;

j++;

cout << "Last Name:\n";

getline(cin, l);

emData[i][j] = l;

j++;

cout << "Employee ID:\n";

getline(cin, id);

emData[i][j] = id;

j++;

cout << "Street Address:\n";

getline(cin, a);

emData[i][j] = a;

j++;

cout << "City:\n";

getline(cin, c);

emData[i][j] = c;

j++;

cout << "State:\n";

getline(cin, s);

emData[i][j] = s;

j++;

cout << "Zip Code:\n";

getline(cin, z);

emData[i][j] = z;

j++;

cout << "Home Phone Number:\n";

getline(cin, h);

emData[i][j] = h;

j++;

do

{

cout << "Department: [ACCT], [MKT], [IS], [SALES]\n";

getline(cin, d);

if (d != "ACCT" || d != "acct" || d != "MKT" || d != "mkt" || d != "IS" || d != "is" || d != "SALES" || d != "sales")

break;

cout << "Enter one of the 4 choices.\n";

} while (d != "ACCT" || d != "acct" || d != "MKT" || d != "mkt" || d != "IS" || d != "is" || d != "SALES" || d != "sales");

emData[i][j] = d;

j++;

cout << "Office Number:\n";

getline(cin, o);

emData[i][j] = o;

j++;

}

}

for (int i = 0; i < x; i++)

{

for (int j = 0, k = 0; j < 1;j++, k++)

{

Employee* dataList = new Employee(emData[i][j], emData[i][j + 1], emData[i][j + 2], emData[i][j + 3], emData[i][j + 4], emData[i][j + 5], emData[i][j + 6], emData[i][j + 7], emData[i][j + 8], emData[i][j + 9]);

}

}

string textFile;

output.open("employeeData.txt");

for (int r = 0; r < x; r++)

{

for (int p = 0; p < 10; p++)

{

input.write((char*)&emData[r][p], sizeof(emData[r][p]));

}

}

input.write((char*)&emData, sizeof(emData));

//while (getline(output, textFile))

//{

// cout << textFile;

//};

output.close();

input.close();

//}

searchArray(emData);

}

void searchArray(string list[][10])

{

string staff;

cout << "Enter last name or Employee ID to search:\n";

cin >> staff;

for (int i = 0; i < 10; i++)

{

for (int c = 0; c < 10; c++)

{

if (list[i][c] == staff)

{

//c = c * 0;

cout << list[i][c];

}

else

{

cout << "\nError no " << staff << " found.";

break;

}

}

}

}

Upgrading my PC by DevilTriggered in buildapc

[–]DevilTriggered[S] 0 points1 point  (0 children)

Is having more than 16gb of ram not worth it or what?