Details
-
Aboutnone of your fucking business
-
SkillsPHP, JavaScript, bootstrap,jQuery, demandware,reactjs,bulma
-
LocationIndia
-
Website
-
Github
Joined devRant on 4/6/2017
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
the problem with product based company is the business/sales people, when they are not clear about their own product, the amount of re-work comes to n^n!
-
How should I store the current date in firebase or any database? this is my current approach
Please review
https://pastebin.com/XVtfTcC28 -
PM: have a look on this website and let me know if we can do this?
Me: Umm...the product is unfinished and it is built upon WordPress so it can be done...
PM:...
Me: Send credentials so that and requirements...
PM: 'Need to finish the website and fix errors'
Me : [that's really vague but okay] Okayyyyyyyy
Me: Send credentials
Me: Moral of the story is, do not approach me if you do not have complete details...please fuck off...
PM : we don't have it1 -
how many emails shall I send for payment reminders?
This was supposed to be a day's job and it's been a month for the delayed payment. (Also this was supposed to be a favor)5 -
found this garbage/default manifest.json in production :
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
}
],
"start_url": "./index.html",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}4 -
It's Friday morning, I haven't had my coffee yet and already stumbled upon 2 bugs in staging. How did QA miss this on development?
Oh wait, we don't have QA!2 -
> be me
> wake up 8:30 am
> sort and view notifications one by one.
> Manager sends text * can you do this? *
> * yes I can *
> goes back to notifications *so where was I? Ah this email.*
> *Please get it done by the end of the day*, another text by the manager.
> I ignore that.
> Manager spams me till I reply
> I hate my life5 -
Clients are total assholes, we all know it, just sharing my another depressed instance.
> be me, freelancing.
> client sends in an image of a webpage
> le me gently ask "What is the functionality here since this has a form?"
> Client explains
> OK let's do this because I have other stuff to do as well.
> Sends in demo
> Client: "Numerous typos, send again"
> Okay, sends again.
> Client Rages: "This still has typos. I thought you were a good developer. You look like a has-been.
I promptly quit the project and tried to explain to him the difference between a "demo" and a finished project. He was supposed to check the functionality of the fucking form, which he didn't.
Got a call to finish the project, him explaining nobody is working for him for given budget, he can't afford anybody in this town (literally), and I am not going back.3 -
> be me
> bored at work
> browse LinkedIn
> found a shitty company with 2/5 stars on glassdoor.
> apply to Laraverl + front-end interview.
> got a call for a telephonic interview scheduled 2 days from now
I plan to crash and burn the interview like a boss and say NO to the job!39 -
Can marketing (and PM) asshats take a moment, think about the word "just", the amount of time they are using it and STOP USING AT ALL. It's fucking irritation to hear that word.
for example, it just needs to be get done, OR
just do an AJAX call and it'll be done.5 -
found this interesting snippet tool for all javascript devs out there: https://github.com/30-seconds/...
found it useful! -
me vs marketing guy, again
me: yeah, the database server is not responding, so you cannot log in to post your blog, wait for it to get online.
MG: But, the website is online.
me: web host and database server are two distinct things, they are not the same, *share a screenshot of the error*
MG: Oh okay.
Literally 3 hours later this fucking idiot sends an email and I quote.
"Hi Dev,
@CTO FYI, Someone has removed this code So there is some tracking issue on it.
Please add below google analytics code on the website.
Note: Copy and paste this code as the first item into the <HEAD> of every web page that you want to track. If you already have a Global Site Tag on your page, simply add the config line from the snippet below to your existing Global Site Tag.
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://googletagmanager.com/gtag/..."></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-xxxxxxxx-1');
</script>
"
The fucking issue was of him not being able to post his shitty blog, and he shares an email like this, FOR FUCK'S SAKE!2 -
I fucking lost my motivation for what I wrote a bug (unknowingly intentionally) instead of a feature. EXACT FUCKING OPPOSITE
-
> punch into work
> get comfy on the desk
> push previous commits along with new commit
> GitLab showed only the last commit i.e. today's
> *fml*
> check logs, found nothing
> now, waiting for coffee while figuring out why it is bothering me2 -
I just want to test my PHP code using phpunit on GitLab, what am I doing wrong?
image: php:latest
before_script:
# Install & enable Xdebug for code coverage reports
- pecl install xdebug
- docker-php-ext-enable xdebug
# Run our tests
# If Xdebug was installed you can generate a coverage report and see code coverage metrics.
test:
script:
- phpunit Test.php4 -
> *WordPress website gets down Error 500: Cannot establish Connection with database*
> Marketing loses their shit: "We need the website up and working right now"
> *Me being calm *: "Nope, we cannot it's the service provider error, there's nothing we can do"
> *MK.G*: "Alright then, switch to another ISP ASAP"
> *Me, Internal rage, a volcano erupts *: "Umm..so you want to spend more money on another hosting because this one has an outage of 48 hours?"
>*MK.G *: "Yes, because we cannot run Facebook ads, just because website is down"
>*Internal lmao*: "Alright, but by the time you purchase a new service provider and host, the website will be up and running plus since the database is down we cannot migrate"
>*MK.G*: "I don't care, just make it up and working"
>*Me chilling*: "Alright, give me few hours"
> after a few hours the website is working *me being badass even though I didn't do anything*13 -
So apparently GitHub now allows you to embed any gist in any given programming language as JavaScript code.
For example
https://gist.github.com/psdtohtml5/...
will be
<script src="https://gist.github.com/psdtohtml5/..."></script>
thoughts? is GitHub another CDN?2