Skip to content

Instantly share code, notes, and snippets.

View pavangandhi's full-sized avatar
🎯
Focusing

Pavan Gandhi pavangandhi

🎯
Focusing
View GitHub Profile
@pavangandhi
pavangandhi / Cover Letters
Created March 15, 2020 09:05
Upwork Cover Letters
# Cover Letter Sample on 3D Modeling /Design/CAD
Dear Hiring Manager,
Recently I studied all the details given in your job posting which was posted on ( Write down the name of the Freelancing Platform). From your job description, I came to understand that you need an expert 3D artist for your project. I would be highly happy to declare my candidacy for this post.
As you already know that Technical aptitude, sharp artistic talent, and productive team collaboration are all essential elements to be succeeded in 3D production and design. I am a highly skilled professional with more than seven years of experience developing and executing a wide variety of successful 3D design projects. Because of my reputed position in these work field, I am more than sure that I would be able to make a significant impact on your team as your next 3D Artist.
I would be happy to let you know that my background includes designing and delivering creative projects and also it includes services from concept through completion. I h
@pavangandhi
pavangandhi / Upwork.txt
Last active March 15, 2020 08:19
Upwork Question/Answers
Let’s see all the Upwork additional questions and answers
1. What past project or job have you had that is most like this one and why?
Ans: According to your job requirements, I have done many projects that are similar to yours. For more details you can review my portfolio, profiles and employment history where you will find projects similar to yours.
2. Do you have suggestions to make this project run successfully?
Ans: I have several suggestions for you regarding this project. According to my concepts, by updating your strategy and applying proper methods, I am very confident that we can make this project successful.
3. What part of this project most appeals to you?
Ans: There are actually two parts of this project that appeal to me more than the others. One part is that all of the requirements are in areas that have a great deal of experience in. The second part is that I really enjoy this kind of work. It is my passion and I take abundant pride and satisfaction in achieving great results.
@pavangandhi
pavangandhi / demo
Last active January 7, 2020 19:26
demo
https://kathyschwalbe.files.wordpress.com/2013/01/healthcare-pm-chapter-1.pdf
* The platform will provide tools connect people and doctors appropriately, and in timely manners.
* AI will be used to streamline and process collected information, which will help cutting cost and increase efficiency and productivities.
* The model will use AI Algorithms to help Doctors and Patients understand each other better and guide them towards better and sustaining health in future.
* The model will collect and manage data centrally with impeccable security.
http://gfxstudy.com/presentation-templates/powerpoint-templates/6699-graphicriver-six-template-3626243.html
http://gfxstudy.com/presentation-templates/powerpoint-templates/44257-advant-business-powerpoint-template.html
http://gfxstudy.com/presentation-templates/powerpoint-templates/39764-competitor-analysis-pitch-deck-powerpoint-template.html
http://gfxstudy.com/presentation-templates/powerpoint-templates/39351-modern-certificate-template-pptx.html (certificate)
http://gfxstudy.com/presentation-templates/powerpoint-templates/39316-unlimited-business-project-asset.html
@pavangandhi
pavangandhi / fastlane
Created January 26, 2018 04:15
Fastlane integration
https://img.newsrush.com/thumbnail?width=500&url=encodeURL
FastLane Integration
-> Go Terminal and fire this command
xcode-select --install
-> Fire Command For Fasttlane Ruby Setup
fastlane init
// @property (nonatomic, strong) NSArray *colors;
// macro from https://gist.github.com/uechi/7688152
//RGB color macro
#define UIColorFromRGB(rgbValue) [UIColor \
colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
green:((float)((rgbValue & 0xFF00) >> 8))/255.0 \
blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if string.isEmpty
{
search = String(search.characters.dropLast())
}
else
{
search=textField.text!+string
}
https://onedrive.live.com/?cid=C3FF9F7E906AC51B&id=C3FF9F7E906AC51B%214124&parId=C3FF9F7E906AC51B%212808&action=locate
https://ktrkathir.wordpress.com/2014/12/27/captcha-generator-for-ios/comment-page-1/
- (void)configureRestKit
{
// initialize AFNetworking HTTPClient
///pradeep/easygov/public/api/requests/show
NSURL *baseURL = [NSURL URLWithString:@"http://neuweg.co.in"];
//NSURL *baseURL = [NSURL URLWithString:@"http://jsonplaceholder.typicode.com"];
AFHTTPClient *client = [[AFHTTPClient alloc] initWithBaseURL:baseURL];
// initialize RestKit
RKObjectManager *objectManager = [[RKObjectManager alloc] initWithHTTPClient:client];