Does any know if they provide all the code to use these widget in ASP MVC
RobNO
Posts
-
Syncfusion -
Do I show my portfolio during an interview?Haha of course. Thanks for your response, I am truly grateful of it!
-
Do I show my portfolio during an interview?I am confident that I can explain everything that I would be showing and I can avoid giving that kind of response. Is it unreasonable to assume that I could potentially use their computer or my cell phone (obviously it will be off unless the they want me to demonstrate) to show web applications? I have not did to many interviews so if you can give me any advice I am grateful of it. Thanks! robNO
-
Do I show my portfolio during an interview?Okay thanks, I have not done too many interviews so I am trying to get prepared. So during the interview I could suggest to use their computer to show my portfolio if they would like to see what I've done? I don't have a reliable laptop battery. I have things I could show on my cell phone (e.g., mobile adaptive SPA), but obviously I will keep it off unless they ask. Sorry if I am asking too many questions.
-
Do I show my portfolio during an interview?So what do you mean send the URL, during the interview or would it more likely that after the interview they would checkout my work? I have the stuff I would like to show them on linkedin would it be likely that they have already looked at it? Thanks! robNO
-
Do I show my portfolio during an interview?Hi all, Do I show my portfolio during an interview? If so do I show screen prints of software application/web application or code? I have an interview coming up and I am trying to ensure I am prepared. Thanks for your time, robNO.
-
Unemployed last year graduate who has not had a "job" but wants to get oneThanks, I'll try not to get discourage. After all, as you stated, there are lots of different possibilities. I'll put this in my mind now, in case I eventually feel that way. Thanks for the encouragement! It helps me!
-
Unemployed last year graduate who has not had a "job" but wants to get oneThanks, Ill look into those.
-
Unemployed last year graduate who has not had a "job" but wants to get oneGood ideas. I will look into improving my interviewing skills and job skills.
-
Unemployed last year graduate who has not had a "job" but wants to get oneThanks for the advice. I will do just that.
-
Unemployed last year graduate who has not had a "job" but wants to get oneThanks for the great advice and thanks for trying to see it from my point of view. Health and stability are my biggest concerns and are my #1 priority. I am trying to do just as you say "Work out where you can handle living" I will look into a recruitment agency on linkedin for an area where I am comfortable. Thanks for the encouragement!
-
Unemployed last year graduate who has not had a "job" but wants to get oneGreat advice! I am not planning on commuting to the cities everyday as it is not practical. I will look into extended stay hotels, if I get a job. Thanks lots!
-
Unemployed last year graduate who has not had a "job" but wants to get oneThanks for your advice. I will look into recruitment agencies and try everyday to find that job even if I have to commute 5 hours to the nearest city!
-
Unemployed last year graduate who has not had a "job" but wants to get oneI will keep that in mind to get my foot in that door and expand from there. Great CL/CV advice. Thanks for your advice.
-
Unemployed last year graduate who has not had a "job" but wants to get oneHaha, I figured that joke was coming when I wrote that. Thanks for your idea.
-
Unemployed last year graduate who has not had a "job" but wants to get oneThat is a great idea. ECommerce is what I have been trying as there is no one who does that type of thing around here. Thanks for your idea.
-
Unemployed last year graduate who has not had a "job" but wants to get oneHi, I graduated with an advanced honors diploma in programming December of last year and I have not been employed by anyone sense then ( I do have a year co-op experience as a developer working for a large bank too). I was experiencing stress in my final years of college and I decided to move back in with my parents to take a break. Unfortunately, they live in a rural area where there is no IT work. Now I am going to start my career again. During my time off, I have been practicing the trade. I have created a Single Paged Application utilizing JavaScript, HTML, Web Services and ASP WebApi called Spell This (requires logging in: http://www.robbiebrandrick.com/Projects[^]) I have created a Blog engine (http://www.robbiebrandrick.com/[^]) I have even tried freelancing, but unfortunately, I have had problem with my clients not following through, but, I am currently working on a e-commerce website using shopify for my fathers company. My question is how can I sell my self on my resume and cover letter to show my dedication and skills? Any opinions of my situation are welcome! I know that once I got in the door I would be an asset. Thanks for your time to read this robNo
-
Object Oriented Problem.Thank you very much! Next Time I will try to indicate where the error is. :laugh: RobNO.
-
Object Oriented Problem.Hey everyone, my problem is I keep getting compile errors and i can not pin point the problem errors: 2>c:\users\rob\school work\information technology\computer programming with c++\projects\etc\ect_1\countptr.hpp(37) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 2> c:\users\rob\school work\information technology\computer programming with c++\projects\etc\ect_1\countptr.hpp(71) : see reference to class template instantiation 'CountedPtr<T>' being compiled 2>c:\users\rob\school work\information technology\computer programming with c++\projects\etc\ect_1\countptr.hpp(37) : error C2143: syntax error : missing ',' before '&' 2>c:\users\rob\school work\information technology\computer programming with c++\projects\etc\ect_1\countptr.hpp(37) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 2> c:\users\rob\school work\information technology\computer programming with c++\projects\etc\ect_1\refsem1.cpp(11) : see reference to class template instantiation 'CountedPtr<T>' being compiled 2> with 2> [ 2> T=int 2> ] 2>c:\users\rob\school work\information technology\computer programming with c++\projects\etc\ect_1\countptr.hpp(37) : error C2143: syntax error : missing ',' before '&' .hpp file
//ect/countprt.hpp
#ifndef COUNTED_PTR_HPP
#define COUNTED_PTR_HPP/*class template for smart pointer with reference semantics
* -destroys the object that is referred to when the last CountedPTr that refers to it is destroyed
*/
template <typename T>
class CountedPtr
{
private:
T* ptr; //pointer to the actual object
long* count; //reference to the number of pointers that refer to itpublic:
//initialize with ordinary pointer
// -p has to be a value returned by new
explicit CountedPtr(T* p = 0) : ptr(p), count(new long(1))
{} //copy constructor CountedPtr(const CountedPtr<T>& p) throw() : ptr(p.ptr), count(p.count) //copy object and counter { ++count; //increment number of references } //destructor ~CountedPtr() throw() { release(); //release reference to the object } //assignment CountedPtr<T>& operator= (const CounterPtr<T>& p) throw () { if (this != &p) //if not a reference to itself { release(); //release reference to old object ptr = p.ptr; //copy new object count = p.count;//copy counter
-
Object Oriented c++ Visual Studio Problem.:doh: Thank you very much :-D :-D RobNO