Skip to main content

Posts

Hands-on with Gemini: Interacting with multimodal AI

AI is quickly finding its way into everybody's lives in not so far future. An astonishing example of how Google Gemini engages in a live discussion with dynamic content...! 😱 😱 Hands-on with Gemini: Interacting with multimodal AI https://youtu.be/UIZAiXYceBI?si=1KHHrPOmUJNN5Bj6 via YouTube #GoogleAI #Gemini
Recent posts

Gnome Dark Theme on Eclipse Luna

Hi, Most of you might still looking for a way to enable Gnome Dark Theme on Eclipse. Well you just have to follow 2 steps to get it done. Run Eclipse with following command env SWT_GTK3=1 /path-to-eclipse/eclipse Enable Dark theme on Eclipse Window -> Preferences -> General -> Appearance Select "Dark" as theme Let me know how it goes for you. Enjoy the Dark Theme ;)

Graphical Grub/Boot Screen Not Coming Up?

If you are a Fedora user you might have experienced that the nice and cool graphical grub menu we had in Fedora 18 is missing in Fedora 19. Wanna get it back? OK. Follow these steps as root user. Check if the /boot/brug2/themes/system/theme.txt is available. If not issue the following command yum install grub2-starfield-theme Open /etc/defaults/grub Add/Change the value of GRUB_TERMINAL_OUTPUT  to "gfxterm" Add/Change the value of GRUB_THEME to "/boot/grub2/themes/system/theme.txt" So the final out put would be something like this. Note the highlighted lines. GRUB_TIMEOUT=5 GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" GRUB_DEFAULT=saved GRUB_DISABLE_SUBMENU=true GRUB_TERMINAL_OUTPUT="gfxterm" GRUB_CMDLINE_LINUX="rd.lvm.lv=fedora/swap rd.md=0 rd.dm=0 vconsole.keymap=us $([ -x /usr/sbin/rhcrashkernel-param ] && /usr/sbin/rhcrashkernel-param || :) rd.luks=0 vconsole.font=latarcyrheb-sun16 rd.lv

Subclipse Not Working with Eclipse 3.7 (Indigo) on Fedora 17

Hi Everybody, I believe that most of the Eclipse lovers might have come across this issue by now. Couple of days back I moved to Fedora 17. As expected it was nice. But SVN function was broken on my Eclipse. Reason was all the svn libraries has been upgraded to version 1.7.5. Therefore all of the tools written to work with svn 1.6 libraries are useless now. You have to upgrade your Subclipse to version 1.8.7 . To do so first you have to uninstall the old Subclipse and related plug-ins from Eclipse and reinstall them using the Marketplace client which is so easy. Make sure you install the JavaHL Native Library Adapter (v1.7.4) for SVN too. You May easily do it with Yum (on RedHat based) or Aptitude (On Dabian based) Fedora users need to install the subversion-javahl package ( # yum install subversion-javahl ) Debian (Ubuntu) users need to install the libsvn-java package ( # aptitude install libsvn-java ) Not just that. If you are planing to stick to SVN 1.7 then you have

Capturing echo Output into a Variable in PHP

Hi Guys, This is cool stuff. Did you ever know that you can capture the echo output in your PHP code? Since the echo function is void (which means returns nothing) you might have thought that is not possible on this Earth right? I thought that too. But guess what, this as easy as 4 lines.. :O Code:    ob_start();    echo 'Hello World!';    $hello_str   = ob_get_contents();    ob_end_clean(); That will store your "Hello World!" string into the $hello_str variable without actually echoing it on the browser. Give it a try fellas! ;-) Cheers.

How to fix Eclipse Helios Crash on Fedora 15

Hi Techies, If you are a Eclipse user, I believe that you would have already faced to this issue by now. I got the same issue and found this great article . It actually worked for me. So why don't you go ahead and give it a try.... ;-) Link : http://www.korri.net/blog/2011/5/6-how-to-fix-eclipse-helios-crashes-on-fedora-15.html Happy Coding Guys..... :-)

BandLuxe Dongle is not Working on Fedora Linux?

Isn't your 3G USB Dongle/Modem is not working on Fedora Linux? Don't worry there is a simple solution for this. But remember BandLuxe is supported by Fedora 13 onwards. Issue is sometimes it can't identify the proper mode for your dongle. Your dongle has 2 interfaces. CD-ROM 3G Modem On a windows operating system these modes are switched easily with the shipped driver. Early days on Fedora 13 it perfectly identified my USB dongle as a 3G Modem. Right after I plugged in the device the NetworkManger Applet started showing the 3G network. For some reason this functionality isn't there now. The usb_modswitch  (for those who don't know about this. This is the tool that do the mode switch for your device. Apparently this works as the driver) is still there though, and all the configurations are seems to be ok. Somehow its not doing what its expected to do anymore. So I had to find a solution for this. Finally I've found one. The trick is done using sd