-
@abrakadabra • Oct 24, 2024Oct 24, 20241.9KWith fingerprint sensors only now entering our mobile devices, it's time for other secure authentication techniques to arrive in the latest software on our computers. Keeping up with fast pace... -
@krishna-raja-CiNXFo • Oct 22, 2024Oct 22, 20241.6K
Timed Mobile Charger
I have been many times warned by my parents for switching the charger on for whole night for charging my smart phone , It would just take 2 hours from... -
@krishna-raja-CiNXFo • Oct 27, 2024Oct 27, 20241.7K
Need Gas turbines by ganesan ebook for gate exam preparation
I have read that , best text book for propulsion is gas turbines , by many of my friends , what do you suggest me friends ? -
@gerrybok-rNQCRA • Oct 27, 2024Oct 27, 20241.7K
Calibration of Gas Sensor MQ2 using PIC Microcontroller
Sir Engineers, do you have any ideas how to calibrate gas sensor mq2 using pic microcontrollers?? Any schematic or circuit for these projects? Thanks.. -
@pranav-7tdtnQ • Oct 26, 2024Oct 26, 20241.4K
Best book for BEEE
Hi guys, can anyone suggest me the best book for basic electrical and electronics engineering.Thanx -
@praseetha-pc4Imk • Oct 23, 2024Oct 23, 20241.6K
cse main project topics
hello frnds !! plz suggest me some good computer science engineering project topics...... i'm interested in networking so i would prefre topics based on that. thank you !!! -
@ramani-VR4O43 • Oct 23, 2024Oct 23, 20241.4KMicrobots poised to make Mega Impact
Quote: A relatively new type of robot is making its way into the industrial automation and electronics manufacturing sectors. Often referred to as micro-robots, these devices are as small as... -
@lovely-lavanya-V9I1rx • Oct 25, 2024Oct 25, 20241.5K
Frequency degradation
Whether frequency of a signal will reduce after travelling some distance? -
@neohacker-FP4O5e • Oct 27, 2024Oct 27, 20241.2K
string/char input
I want to take input for name of a student ... when i do char name[20]; and take input with cin>>name; it prints only upto 1st space like if i... -
@ramani-VR4O43 • Oct 21, 2024Oct 21, 20241.4KMotely Fool predicts the death of TV as we know it
This link was sent to me by a friend in Google HQ. Rather a long speech. Did not make much sense to me. However it might point to the shape... -
@guneet-PX8axz • Oct 27, 2024Oct 27, 20243.0K
Interview with Mrinal Pai, Co-Founder - Skylark Drones
Skylark Drones is a technology start-up in the unmanned aerial vehicles (UAV) industry started in the year 2014 by Mrinal Pai and Mughilan Thiru Ramasamy. They have built drones that... -
@sanyam-Nl7Zqc • Oct 27, 2024Oct 27, 20241.3K
Suggest Phone in Range 10k - 14k & Power Bank in Range 1k - 1.5k
Howdy CEans, I'm about to buy a phone, and thinking of Moto G 2nd Generation. After sales service would be much appreciated. Please don't suggest any company like Micromax, Lava,... -
@anksingla-ttYJbX • Oct 23, 2024Oct 23, 20241.3K
problem in c program..
Below program is to print the values of 2d array s. int s[][2]={12,1,13,214,3}; int i,j; int (*p)[2]; int *pint; For(i=0;i<3;++i) { p=&s; pint=(int*)p; for(j=0;j<2;++j) printf("%d",*(pint+j)); } This will print values... -
@durga-TpX3gO • Oct 27, 2024Oct 27, 20241.2KIPython + notebook + nbconvert is awesomeness!
few of us are already aware of IPython and notebook. Its basically an interactive web-interface. Sadly, I came to know about it very recently though the software has been around... -
@rishabh1234-Oi9Xdl • Oct 25, 2024Oct 25, 20241.2K
Best motor for electric racecar - How to select?
Which type of motor is best suited to be used in a formula student electric racecar ? -
@rajib-das-gupta-1MnCif • Oct 15, 2024Oct 15, 20241.2K
Career in PHP in Kolkata
I am a B.E(CSE) on 2013..i want to start my career as a php developer in kolkata..what is php career growth i can get in IT sector...after 1 or 2... -
@ramani-VR4O43 • Oct 22, 2024Oct 22, 20241.1KFree Virtual Conferences on Embedded Technology
#-Link-Snipped-# -
@ramani-VR4O43 • Oct 22, 2024Oct 22, 20241.1KUpcoming Events on Design in India
Upcoming Events on Design in India: 1. UX India 2014 Conference, 7 -9 October 2014, Bangalore #-Link-Snipped-# 2. Workshop: Illustration for Fashion Design 8-10, October 2014, NID Ahmedabad #-Link-Snipped-# 3.... -
@satya-swaroop-YDeBJM • Oct 21, 2024Oct 21, 20242.8K
[Hoax] Chinese City Gets Cell Phone User Lane: Are We Facilitating Cell Phone Addiction ?
It’s no big news that the Chinese love their gadgets, but have they pushed their obsession a little too far this time? The Chinese city of Chongqing has demarcated a... -
@anksingla-ttYJbX • Oct 22, 2024Oct 22, 20241.3K
problem in c..
int s[][2]={12,1,13,214,3}; int i,j; int (*p)[2]; int *pint; For(i=0;i<3;++i) { p=&s; pint=(int*)p; for(j=0;j<2;++j) printf("%d",*(pint+j)); } This will print values stored in array s. But in printf statement instead of *(pint+j)...