Posts

Showing posts from 2018

Thought Catalog

https://thoughtcatalog.com/heidi-priebe/2017/03/what-each-myers-briggs-personality-type-does-when-theyre-secretly-unhappy-in-a-relationship/ https://thoughtcatalog.com/heidi-priebe/2017/02/the-myers-briggs-personality-types-when-something-goes-wrong/ https://thoughtcatalog.com/heidi-priebe/2017/02/im-25-years-old-and-i-think-im-finally-learning-how-to-be-happy/ https://thoughtcatalog.com/heidi-priebe/2017/02/how-to-approach-a-conversation-with-each-myers-briggs-personality-type/ https://thoughtcatalog.com/heidi-priebe/2017/02/8-ways-of-grouping-myers-briggs-types-that-would-make-more-sense-than-keirseys-temperament-groups/ https://thoughtcatalog.com/heidi-priebe/2017/02/the-worst-way-to-manage-each-myers-briggs-personality-type/ https://thoughtcatalog.com/heidi-priebe/2017/02/how-to-make-each-myers-briggs-personality-type-want-to-work-for-you/ https://thoughtcatalog.com/heidi-priebe/2015/03/heres-why-youre-still-single-based-on-your-myers-briggs-personality-type/ https://thou

Umar Daraaj

bas itni jhijhak h ki: shikan si dikhti hai mathe pe meri aur kamal si khilti hai aankhe teri samay ke thapedo se shayad main haar jaun fir kaise khankegi paayal barso tak teri

ToDo List Updated

Data transfer policy/ Consistancy Usage of REST APIs with proper permission Monitoring of who requests what at what rate Softcopy of MAPs, Other rules Version control of all the important data EPFO documentry on youtube channel Invest in Big Data, Data mining, Data Analytics, Machine Learning, AI Have UX, UI design, etc experts Report should be automatically generated at ACC, RC level. Giving or Requesting report should be banned Report of each employee -> DA, SS, AC, RC, office with respect to work done by him or under him Staff grievance portal is not working SMS to all subscribers with UAN and other new initiatives Dummy logins Logout functionality in (Compliance MIS) Easy to compare reports (Compliance MIS)  ECR challans making Ask for 26(6) permission for establishment contributing at more than ceiling Reports in xls/xlsx/csv/pdf/html Complete report of establishment false mobile false email default membership reduction falls in 12% but contributing at

Pandas snippets

Linux commands for system information

yum install atop   atop, htop, top, glances, dstat, Collectl https://haydenjames.io/use-atop-linux-server-performance-analysis/ nmon,  uname  linux uname -n   uname -v   uname -r    uname -m  uname -a  sudo lshw sudo lshw -short sudo lshw -html > lshw.html lscpu lsblk lsblk -a lsusb cat /proc/meminfo free free -m free -mt free -gt apachetop mytop iotop ntopng iftop jnettop bandwidthd network EtherApe ethtool NetHogs iptraf ngrep MRTG bmon traceroute IPTState darkstat vnStat netstat ss -s (network statics) nmap MTR TCPDUMP justniffer lsusb -v lspci lspci -t lspci -v lsscsi lsscsi -s sudo hdparm /dev/sda1 sudo hdparm -g /dev/sda1 sudo fdisk -l sudo dmidecode -t memory sudo dmidecode -t system sudo dmidecode -t bios sudo dmidecode -t processor  

ToDo

Bug/Feature request tracking platform Data transfer policy/ Consistancy Usage of REST APIs with proper permission Proper security -> atleast https, csrf Monitoring of who requests what at what rate Softcopy of MAPs, Other rules SMS to all subscribers with UAN and other new initiatives Version control of all the important data Report should be automatically generated at ACC, RC level. Giving or Requesting report should be banned Report of each employee -> DA, SS, AC, RC, office with respect to work done by him or under him Easy to compare reports (Compliance MIS) Staff grievance portal is not working BRS without human intervention Allow copy paste in website Link logo to homepage Remove link of EO/AO forms Remove Obsolete links Invest in Big Data, Data mining, Data Analytics, Machine Learning, AI Too many URLS/Dashboards-> Single url for Each type of stackholder Don't show errors on frontend Have UX, UI design, etc experts Dummy logins Logout functio

Receipt checklist

Service period NCP days Member of pension or not Member 9.6 month or less 15G/15H for less than 60 months / PAN card Name fname DOB DOL waiting period Contribution from DOJ to DOL Atleast 6 month service account, bank code  Need to edit -> PAN card submitted unchecked 7A initiation Email Mobile Bank   8F Through Mail Token Machine Total Receipt Pre diary-> Post received at office -> User can be emailed / SMS

Regex

Pattern Legend Example match \w Any alphanumeric character, including underscores a or 0 or _ \d Any digit 1 or 2 or 4 \s Any whitespace character ' ' + One or more (greedy) of the pattern or character \d+ matches 476373 \. The . character . * Zero or more (greedy) of the character or pattern \d* matches 03289 and '' | Either the first pattern, or the next, or the next (like OR) \d|\w matches 0 or a [] or () Character classes (defining what you expect to see in one character space) and character groupings (defining what you expect to see in a group) A matches [A-C] or (A|B|C) - Binds character groups [0-9]+ matches \d+