Skip to main content

Posts

Showing posts from 2020

IMC Product List Rate June 2020

 IMC Product List Rate June 2020 FOR JOINING  IMC  CALL OR  WHATSAPP  @  9954745416

How to withdraw PF from Exempted Trust?

FOR YOUR INFORMATION MANDATORY DOCUMENT REQUIRED FOR PF WITHDRAWAL (SOFT COPY) (2 COPIES OF DOCUMENTS IF SERVICE PERIOD IS MORE THAN 6 MONTHS) 1. AADHAR CARD (FRONT & BACK SIDE) 2. PAN CARD 3. NAME PRINTED CHEQUE 4. LAST MONTH PAY SLIP ***IF SERVICE PERIOD IS MORE THAN 10 YEARS*** Above mentioned docs + Age Proof Certificate of member and his/her family members. [Pension scheme certificate will be issued by RPFC so that employee can apply for monthly pension at the age of 58 years] NOTE • JOINT BANK ACCOUNT NOT ACCEPTED • ALL DOCUMENTS SHOULD BE SELF-ATTESTED • NAME OF THE CANDIDATE, ADDRESS OF THE BANK, A/C NO. & IFSC CODE MUST BE CLEARLY VISIBLE ON THE CHEQUE • IN THE FORM THE REASON OF LEAVING SERVICE SHOULD BE RESIGNATION ONLY • THE NAME ON THE CHEQUE AND ON THE AADHAAR OR PAN CARD SHOULD BE SAME • PLEASE FILL UP THE FORM WITH A PEN (TYPED LETTERS NOT ACCEPTED) • PASSBOOK / STATEMENT NOT ACCEPTED • ANY TYPE OF OVERWRITING ON PF FORM WIL

Strange Planetary Circle Like Solar Eclipse Effects Seen in Tinsukia Assam

Strange planetary circle like solar eclipse effects has seen in Rupai Siding, Doom Dooma Tinsukia, Assam today i.e 28-05-2020 a purple circle can also be seen in between, HALO is the name for a family of optical phenomena produced by light interacting with ice crystals suspended in the atmosphere. Halos can have many forms, ranging from colored or white rings to arcs and spots in the sky, people can comment for more explanation regarding the phenomenon, below picture credit's local residence.

UART Receiver in FPGA using Verilog

A UART Receiver follows a UART Transmitter. It receives the serialized data and converts it back to a parallel form. The working of the receiver is a bit more complicated than the transmitter. Since UART is an Asynchronous Protocol, no clock is transmitted along the data. Therefore, the receiver has to identify the start of the incoming data frame to properly convert it to parallel form. To do this the transmitter and the receiver have to agree to the baud rate and the number of bits per frame. The transmitter and the receiver also have to agree with the length of the stop period (1 bit, 1.5 bit or 2 bits). In the given project the UART Receiver is configured for the baud rate of 1 Mbit/s, 1 stop bit, no parity or flow control. The receiver looks for the Rx_pin to go low which indicates the start bit. As the Rx_pin goes low, a Flip_Flop is Set which enables a counter which starts counting as the Rx_pin goes low. When the Counter reaches 25 (The counter is clocked at 50 Mhz in the give

UART Transmitter using FPGA in Verilog

UART stands for Universal Asynchronous Receive Transmit. It is one of the most popular Asynchronous Serial Communication protocols. It is not only simple to implement but also economical to use. It uses only two wires to communicate between two devices. UART can also be implemented in a multi-drop configuration but then proper termination is necessary (see  RS-485 Wikipedia Link ). UART is capable of approximately 2-MBit/s in single-ended configuration but upto 10-Mbit/s in Differential Configuration. Higher speeds usually come at the penalty of using shorter transmission lines (also Impedance Matching is recommended). In this project ,we shall implement a UART Transmitter in an FPGA. The FPGA which was used for testing was a Xilinx Spartan-6 XC6SLX9 FPGA. The FPGA was clocked by a 50Mhz Crystal. In the project the Verilog module implemented has an 8-bit Input and the UART-Tx Output along with a Tx_Enable Input . The UART transmitter works in this way-- A Shift Register is used to co

PI Network Invitation Code "babbal"

What is Pi? Pi is a new cryptocurrency for and by everyday people that you can “mine” (or earn) from your phone. Cryptocurrencies are new form of digital money that are maintained and secured by a community, instead of by governments or banks. Today, you can mine (or earn) Pi by helping to secure the currency and by growing Pi’s trusted network. While most cryptocurrencies (like Bitcoin) have been very hard for everyday people to use and access, Pi puts the power of cryptocurrency into the palm of your hand. Is this real? Is Pi a scam? Pi is not a scam. It is a genuine effort by a team of Stanford graduates to give everyday people greater access to cryptocurrency. Pi’s core team is led by two Stanford PhDs and one Stanford MBA, all of whom helped build Stanford’s blockchain community. We cannot guarantee that the project will succeed. However, we do promise to work our hardest to make our shared dreams a reality, while maintaining the highest standards of integrity. You c

Pan India State Wise Current Minimum Wages

State Wise Current Minimum Wages   :

How To Earn Free Bitcoin?

Earning free Bitcoin as per current scenario is not easy still if you are searching a way then their is a hope,  FreeBitco  is the website from where you can earn very less hourly wise bitcoin and some lottery tickets for free through which you can win some big amount of bitcoin for absolutely free also you can earn by bidding and referring your friends and family through which you can multiply your bitcoin earning.   Click Here to Join FreeBitcoin

Excel Macro code for Converting Indian Currency Digit In Words Without Paise Remarks

Microsoft Excel macro code for converting digit into words in Indian currency format without paise remarks: For using the code enable macro in Excel sheet copy past below codes: Option Explicit 'Main Function  Function SpellNumber_Indian(ByVal MyNumber)     Dim Dollars, Cents, Temp     Dim DecimalPlace, Count, x     ReDim Place(9) As String     Place(2) = " Thousand "     Place(3) = " Lacs "     Place(4) = " Crores "     Place(5) = " Hundred Crores " ' String representation of amount.     MyNumber = Trim(Str(MyNumber)) ' Position of decimal place 0 if none.     DecimalPlace = InStr(MyNumber, ".") ' Convert cents and set MyNumber to dollar amount.     If DecimalPlace > 0 Then         Cents = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _         "00", 2))         MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))     End If     Count = 1     Do While MyN

3D Transformation Matrix for Projection and Rotation in C++

3D transformations are the most basic building blocks of modern games and physics simulations. Here we look at how to project and the 3D Matrix of a Cuboid and and rotate it about the 3 planes i.e XY, YZ, ZX using linear transformations. Projection of a 3D object is necessary as the calculations are done for a 3D object and the final scene is displayed on a 2D screen. The 3D transformations are the most basic functions performed by the GPU for rendering a 3D scene. The entire 3D object is divided into multiple polygons, mostly triangles as they are the most basic polygon but in this example we will we using rectangles. The code is written in C++ using the graphics.h header file. The code transforms each vertex individually and then draws the edges. The code can also be used for understanding the working of a simple 3D GPU and can be further implemented in an FPGA using suitable HDL code. The code runs in Console Graphics Mode. All the header files must be properly installed for t