Community Feed
-
@matthew-attenborough-HeuADt • Oct 25, 2024Oct 25, 20241.5KMatthew Attenborough submitted a new project: #-Link-Snipped-# - The camping trailer you want to stay in! We see a new future for camping trailers. Using design and intelligent technology, The...
-
@ambarish-PQyoXg • Oct 26, 2024Oct 26, 20241.6KGerman Engineering Firm Festo Creates Doctor Octavius' Brutal Mechanica Arms! Call Spiderman, Again.
A new German project officially titled 'Bionic Handling Assistants' is a great tribute to Spidey pop-culture, what with them resembling Doctor Octavious' ferocious mechanical arms. The firm claims that the... -
@pradeep-somu-TocRN7 • Oct 22, 2024Oct 22, 20241.5K
Proud Nerd
Hi everyone, I am Pradeep Somu.😀 I am a 2nd year Mechanical Engineering student. I love Science and Learning new stuff... I consider myself an idealist and am a huge... -
@abrakadabra • Oct 26, 2024Oct 26, 20242.0KSony Xperia T2 Ultra Features 6-Inch HD Screen & 13 MP Camera, Priced At Rs. 25,990
After its mega launch at the CES 2014 this year, a lot of enthusiasts were waiting for the Sony Xperia T2 Ultra to launch in India. And lo! Here it... -
@sdking-03Di1M • Oct 26, 2024Oct 26, 20241.6K
Multilingual Chatting App Development - Help Needed!
What is necessity to design a multilingual chatting application in which the clients from multiple places can chat together in a language of their on choice. For example we may... -
@abrakadabra • Oct 25, 2024Oct 25, 20241.7KLenovo ThinkCentre M73 Tiny Desktop Now In India For Rs. 28,500
Lenovo India has today launched its new compact desktop with ThinkCentre M73 Tiny to suit the varying demands of consumers with regards to the size and features. Priced at Rs.... -
@abrakadabra • Oct 21, 2024Oct 21, 20241.5KNuzzel App Organizes The News From Your Friends On Facebook & Twitter
Nuzzel app isn't based on some out-of-the-box concept. Launched this tuesday, it can be used to view the news feeds from your Facebook and Twitter timelines in an organized manner.... -
@abrakadabra • Oct 24, 2024Oct 24, 20241.6KSony's Project Morpheus To Take The Player Physically Inside The Virtual Game World
Sony Computer Entertainment Inc. (SCE) has today launched the 'Project Morpheus' that is all set to churn out a virtual reality system designed for the PlayStation 4. Putting all its... -
@sean-ebersold-NHoX5P • Oct 26, 2024Oct 26, 20241.5K
PiScreen: A 3.5" TFT with touchscreen for the Raspberry Pi
Mark Williams submitted a new project: #-Link-Snipped-# - PiScreen TFT, 480x320 with touch control PiScreen is designed to give everyone the opportunity of adding a small 3.5" TFT (480x320) display... -
@sean-ebersold-NHoX5P • Oct 25, 2024Oct 25, 20241.5K
Carbon | Wearable Solar Charger + Analog Watch
Sean Ebersold submitted a new project: #-Link-Snipped-# - Carbon is a high tech wearable solar charger and a analog watch. Carbon charges your iPhone, Android and other mobile devices on... -
@jason-IQjfPQ • Oct 23, 2024Oct 23, 20241.7K
LifePrint - A New Way To Print And Share Photos Wirelessly
A recent Kickstarter campaign has planned to fund a new yet, unique project - #-Link-Snipped-#. LifePrint is a wireless, portable printer that lets you print pictures from your smartphone. Using... -
@rama-krishna-mSbH1P • Oct 15, 2024Oct 15, 20241.5K
Face Detection Using MATLAB
Hi frnz, im doing the project "Automatic face detection using color based segmentation and template matching" in my last semister....Can anyone give me the code for this?. I have failed... -
@satya-swaroop-YDeBJM • Oct 25, 2024Oct 25, 20241.6K
Moto 360 & LG G Watch: Two Smartwatches Powered By Android Wear To Arrive Soon
Just as Google finished rattling the smartwatch competition by <a href="https://www.crazyengineers.com/threads/google-announces-android-wear-platform-invites-developers-for-a-preview.73974">Google Announces Android Wear Platform; Invites Developers For A Preview</a>, LG and Motorola were quick to announce their plans to... -
@satya-swaroop-YDeBJM • Oct 27, 2024Oct 27, 20241.5K
Google Announces Android Wear Platform; Invites Developers For A Preview
Google has created a stir in the wearable technology market #-Link-Snipped-# Android Wear. Android Wear is a project that will extend Android to the wearable form factor. While Google is... -
@aadit-kapoor-EBxnXT • Oct 27, 2024Oct 27, 20241.4K
Strings : Why is this program not printing the first element?
Why is this program not printing the first element? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char names[][5] = { "aadit", "jobs", "mark", }; printf("%s\n",names[0]); getch(); } when... -
@divyanshu-sharma-7rIP2V • Oct 26, 2024Oct 26, 20241.7K
Facebook's Facial Verification Software Can Recognise Faces As Humans Do
With the evolution of new advancements, machines have been taking over the capabilities that were once supposed to be human-specific. Deep learning is a field of Artificial Intelligence that emphasizes... -
@deepak-gopalakrishnan-KYymit • Oct 25, 2024Oct 25, 20241.8K
-
@abhishek-fg9tRh • Oct 25, 2024Oct 25, 20241.6KGood Old Games (GOG) Recently Announced Support For Linux Platform.
<a href="https://www.gog.com/" target="_blank" rel="nofollow noopener noreferrer">GOG.com</a> formerly known as Good Old Games (owned by CD Projekt RED - The company behind super dope game series 'The Witcher'), is very well... -
@ananyaja-debadipta-8dNWuw • Oct 27, 2024Oct 27, 20241.9K
Deblurring of an image using adaptive filter in MATLAB
Sir, I want to deblurr a blurred image using adaptive filter in matlab. Please help... -
@aadit-kapoor-EBxnXT • Oct 26, 2024Oct 26, 20241.9K
SizeOf operator in C : Why is the output 6?
#include <stdio.h> #include <string.h> char name[] = "aadit"; int main(void) { printf("%d\n",sizeof(name) ); } Why is the output 6?