Backend Developer | Servicenow | Exploring Frontend #dev

Joined October 2019
73 Photos and videos
Hi @Paytmcare @Paytm my Paytm wallet is locked for no reason and every time I try to validate, it throws the otp failed error. I tried multiple times but had the same issue. Kindly help me to resolve this issue.
2
159
They say “knowledge is power” — but have you ever seen someone with zero idea still make millions?
9
Prompt engineering will replace coding’ — said every guy who never wrote a line of code but has a $499 course to sell you. Anyone else keep getting these scammy ads? #aiforleechies #aiprompt #ai #youtube
1
55
Bro in every YouTube ad: ‘Don’t learn coding, learn AI prompts or you’ll be jobless.’ Buddy, you didn’t even code ‘hello world.’ Stop scamming beginners with fear marketing.
1
14
US-2014: “Ukraine in NATO will make the world safer.” (Ukraine-Russia war ip...) US-2025: “Ukraine won’t be added to NATO.” So we basically got World War DLC over an empty promise. Corporate translation: Feature is priority-1.” → Later: Client dropped it. #trump #Zelensky #nato
71
Trump & Putin after 2.5 hours: no deal, but an understanding. Me & HR after 2.5 appraisal rounds: no hike, but an understanding. #AlaskaSummit #hike #increment #TrumpPutinSummit
71
4 Years in IT taught me: - Learn Fast - Document Everything - Never trust the line - "Just a small change"
27
#AngularJS, Day25, Sample code of routeProvider #connect #javascript #100daysofcode #MEAN #MERN
1
35
#AngularJS Day24, Topic: $routeProvider 🛠️ > Part of ngRoute, maps URLs to templates/controllers. > Dynamically loads views based on URL changes. > Helps structure apps with clear routing. > Handles default routes and 404 errors. > Can preload data before loading views. #connect
1
60
#AngularJS Day23, Topic: ngRoute > module used for setting up single-page applications (SPA). > It helps manage the navigation between different views without reloading the entire page. > supports clean URL routing, and offers a better user experience by reducing page reloads.
16
#AngularJS Day22, Topic: Transclusion with Callback without Callback: You can simply embed external content into your directive. with Callback: You get full control over the transcluded content. You can manipulate, clone, or modify the content before it's displayed. #connect
1
34
#AngularJS Day21, Topic: Transclusion #Transclusion allows content from outside a directive to be inserted into the directive’s template, keeping it part of the original scope. With transclude: true, Angular lets you insert external content. #100DaysOfCode #MERN #MEAN #connect
1
37
AngularJS Day20, Topic: Scopes Shared Scope: Default in AngularJS, where directives share the same scope as their parent. app.directive('sharedScope', () => ({ scope: false })); #100daysofcode #dev #frontenddevelopment #MEAN #MERN
2
30
Inherited Scope: Directive inherits the scope from its parent. Any changes affect both. > You can use $parent to access parent scope variables. app.directive('inheritedScope', () => ({ scope: true }));
1
11
Isolated Scope: Directive has its own isolated scope, preventing interference with parent scope. app.directive('isolatedScope', () => ({ scope: {} }));
11
#AngularJS Day19, Topic: $eval, $parse & $interpolate $eval: > Executes an expression in the context of the scope. > available in $scope #100daysofcode #javascript #eval #dev #connect
1
1
48
$parse: > needs to be injected. > returns a function > takes string as expression #100daysofcode #javascript #parse #dev #connect
1
27
$interpolate: > needs to be injected. > use string and angular expressions just like in view > it also returns function #100daysofcode #javascript #interpolate #dev #connect
18
#AngularJS Day18, Topic: Dirty Checking AngularJS uses Dirty Checking to track changes in data. It checks if the model values have changed on each digest cycle by comparing the previous and current values. If a change is detected, it updates the view. Cycles- min: 2, max:10

ALT Sport Driving GIF by FIA World Rally Championship

17
#AngularJS Day17, Topic: Digest Cycle. The Digest Cycle in AngularJS is key to updating the UI based on data changes in application. #100DaysOfCode #MERN #MEAN #javascript Here’s how it works:
1
13
"Digest loop": When a change is detected, AngularJS triggers a digest loop. It runs multiple times until all model values are stable (no changes left). This loop ensures consistent data-binding.
1
7
If you manually change variables, you may need to call $apply() or $digest() to trigger the digest cycle and update the view outside of Angular's built-in events.
14