A Standalone Compiz Session In Ubuntu

Custom compiz session ubuntu

 

This guide has been written by WebUpd8 reader Neil Rodgers and it shows how to create your own standalone Compiz session in Ubuntu (the instructions below are for 11.10, but they may work in other Ubuntu versions). Using a custom Compiz session gives you flexibility to load only what you want, so you can get a lightweight session, while still using Compiz.

In the screenshot above you can see Unity 2D panel, Dockbarx (dockx), slingshot-launcher and Compiz drawing the wallpaper. But of course, there are many different combinations of docks, panels, etc. you can use to create your own environment. I chose to mimic Unity. Don’t ask why. I love using Unity, like to tinker and was bored one night.

Things I’ve installed:

CCSM:

sudo apt-get install compizconfig-settings-manager compiz-plugins-extra

DockBarX:

sudo add-apt-repository ppa:nilarimogard/webupd8 sudo apt-get update sudo apt-get install dockbarx dockbarx-themes-extra

Marlin (we’ll use Compiz set to draw the background, but you can skip this if you want):

sudo add-apt-repository ppa:marlin-devs/marlin-daily sudo apt-get update sudo apt-get install marlin

If you want to use DockX, you’ll also need a menu. You can use Cardapio, a menu Indicator or Slingshot launcher. To install Slingshot, use the commands below:

sudo apt-add-repository ppa:elementaryart/unstable-upstream sudo apt-get update sudo apt-get install slingshot-launcher
1) As explained here, the first step is to create the Compiz xsession. This will create a session called Compiz in your session list in LightDM.

In terminal:

gksu gedit /usr/share/xsessions/compiz-session.desktop

You now have an empty file. Copy and paste this code into it:

[Desktop Entry] Name=Compiz Comment=This session logs you into Compiz standalone Exec=/usr/local/bin/compiz-session Type=Application

 

You can call this session whatever you like by changing Name=Compiz to Name=(your custom name) in the code above. Save and close the file when you are done.

 

2) Now we will make the compiz-session launcher in /usr/local/bin. This launcher will start the compiz-session with dbus.

In terminal:

gksu gedit /usr/local/bin/compiz-session

Then copy and paste this code into the file:

#!/bin/bash if test -z "$DBUS_SESSION_BUS_ADDRESS"; then eval `dbus-launch --sh-syntax --exit-with-session` fi compiz --replace ccp & wmpid=$! sleep 1 if [ -f ~/.compiz-session ]; then source ~/.compiz-session & else xterm & fi # Wait for WM wait $wmpid

Save and close this file then make it executable using the command below.

In terminal:

sudo chmod 755 /usr/local/bin/compiz-session
3) The above code mentions the file ~/.compiz-session. This file will be read at the start of your Compiz session and will load whatever commands you put in it. We need to create it and choose what we want to load in our session. This will be a hidden file in your home folder. This is where you can get creative and piece together different components to make something unique.

In terminal:

gedit ~/.compiz-session

Or right click on an empty spot in your home folder and choose create new file. This is what I have in mine.

#!/bin/bash gnome-settings-daemon & unity-2d-panel & nm-applet & bluetooth-applet & dockx &

 

The first entry for gnome-settings-daemon will load all your system settings and themes etc. Then we have our panel, network manager, bluetooth and finally our dock. Put what you want in here (for instance, to use Nautilus for drawing the background, add “nautilus -n &”; instead of “dockx” you can use “avant-window-navigator” for instance, and so on) then save and close.
4) Now we can log out and try the new session but before you do make sure you keep reading so you know what to expect. Save this guide in your home folder so you can get back to it after logging in. When you first log in you’ll notice your panel and dock will load with a black, sometimes glitchy looking screen as your wallpaper. We’ll fix this but first lets take a few seconds to tweak DockBarX. Right click on an empty spot in the dock and choose “Properties”. You can modify whatever other settings you like but these will give you the Unity launcher clone:

Dock:
– Type = panel
– Position = left
– Behavior = panel
– Size = 42
– Offset = 24
Appearance – Theme = unite_v
Window List: uncheck previews if it is checked as they don’t seem to be working
Plugins: make sure Unity quicklists and badges are checked

5) Ok, now onto the glitchy black background. This is because Nautilus handles the desktop and wallpaper and we didn’t load it in the session. You can add it to the .compiz-session file if you want or you can have Compiz draw the wallpaper (if you use desktop icons or have to have the right click menu on the desktop then stick to loading nautilus). To start CCSM open a terminal by pressing “Ctrl+Alt+t” and type “ccsm” to launch CompizConfig Settings Manager. Add it to your dock for now (right click the icon and select “pin to launcher”.

Optional step: Create a custom profile for your session in CCSM. Compiz will load with the “default” profile which is used for other sessions such as Gnome fallback or even Unity2d if you run it in that environment. If you just use Unity3d then you don’t need to do this because Unity3d automatically loads the “Unity” profile and your changes in CCSM will not affect that session.

 

Activate the jpeg, png, svg and text plugins in the “image loading” CCSM section. Now activate the “wallpaper” plugin under “utilities”, choose “new” and select a background (don’t select the default Ubuntu wallpaper, it’s not an actual .png and it will fail to load; if it doesn’t load right away it will on the next login,more on logging off in the next step).
Now setup slingshot-launcher by enabling “commands” and entering “slingshot” (no quotes) in an empty field. Choose your preferred keys or screen edge or both. I made mine open gnome-shell style by setting the edge binding to the top left corner so it launches with the mouse (I’ve also created a launcher with an Ubuntu icon that launches slingshot and added it to my dock).
To get Slingshot not to overlap with the top panel or dock, open CCSM, make sure the “Place Windows” plugin is enabled, then on the “Fixed Window Placement” tab, under “Windows with fixed position”, click new and under “Positioned windows” enter “class=Slingshot” (without the quotes), 50 for X Position and 25 for Y Position (you can change these if these values don’t look ok for you).
Now maximize a window and you’ll see that it’s titlebar doesn’t merge with the unity2d panel. Fix this by going to Effects > Window decoration > Decoration windows and changing “all” to “!state=maxvert”. Now tweak whatever else you’d like and we’ll move to the next part.

 

6) If you try to log off the normal way through the shutdown menu it doesn’t work. Its made to log out of a gnome-session, not a compiz-session. So we can work around this a couple ways and I’m sure there are more, but the first is pretty straight forward. Kill the compiz-session process. You can do this via system monitor or by typing “pkill compiz-session” (again no quotes) in a terminal. There is a script I’ve found here,  in comment #8 that also works. You can even make a launcher that points to the script or runs the pkill command and add it to DockBarX if you want.
This is the first guide I have written about anything so please excuse me if there are mistakes or its hard to follow. I’m also not an expert with using Ubuntu and or Linux but love using it and love the choice it offers. Feel free to offer suggestions, corrections or any other feedback. Thanks! – Neil

 

How To Create A Standalone Compiz Session In Ubuntu ~ Web Upd8: Ubuntu / Linux blog.

Posted in Uncategorized | Leave a comment

The Windows 8 features "borrow" from Linux?

Though Windows 8 and Linux distributions differ greatly from each other in design, ideology and — last but not least — their primary audience, they’re all built on the same basic principles of OS design so there’s bound to be some overlap. And while Microsoft has long been accused of stealing from the open source community, according to some Linux fans, it’s getting to the point where Microsoft simply appropriates good Linux features.

1. File copy dialogue

In an effort to create more transparency, Microsoft implemented an improved copy, move, rename and delete dialog that doesn’t just show the progress of each operation, but also a throughput graph and the ability to actually pause individual copy operations.

Oh, did that cause a firestorm in the open source community! Pretty much the same dialogue has been part of Linux’s Dolphin and Nautilus file managers — the file transfer dialogue also lets users pause operations and view multiple copy jobs in one window. We’ve even got the gimmicky bandwidth graph that appears once the user hits “More details”.

The Microsoft twist: When there’s a problem with a file operation, Windows 8 doesn’t just stop the entire process but keeps these problems in the error queue. However, it’s quite obvious that Microsoft took a good, hard look at the open source world here.

What neither Linux nor Windows 8 have is a queue feature. Of course, you could manually pause and resume individual copy operations, but that’s not helping you on a massive copy job. Users of both Windows (see the comments on this post) and Linux have been waiting for this for quite a while.

2. ISO mounting

In Windows 8, Microsoft finally introduces mount ISO files. Once mounted, a new drive letter appears in Windows Explorer that represents the virtual CD/DVD ROM. And while it’s a nice addition that lets users finally get rid of annoying third-party tools such as Daemon Tools, Power ISO or Virtual CloneDrive, both Linux and Mac have had this ability for quite a while.

The Microsoft twist: No Linux distro does ISO mounting as easily as Windows 8, as it requires some command line trickery (or, again, third-party tools).

3. Windows To Go

Windows To Go allows (enterprise) users to create a bootable Windows 8 environment on a USB 2.0/3.0 flash drive. It even supports unplugging the drive, which causes the OS to freeze momentarily until you plug the Windows To Go stick back in. Awesome.

The Microsoft twist: Obviously, such “live environments” have been around for quite a while in the Linux world, but their performance was never quite up to par with a natively running OS. Since Microsoft optimized their NTFS file system for such a scenario, Windows 8 runs fluently even on USB 2.0. Upon testing Windows To Go, I found that both boot and overall speed were far superior to any Linux live distribution I have ever tested.

4. The Metro UI

The basic idea for the Metro UI appeared in Media Center and Zune hardware more than 5 years ago. When you use the Metro UI for the first time, you’ll see that it’s a very unique way of working with a device. But Microsoft didn’t pioneer the idea.

Various Linux distros, Ubuntu and GNOME in particular, have tried to overhaul the user interface to fit the “one UI to rule them all” approach before Microsoft did. There’s no denying that various updates to the UI of Linux, especially Ubuntu, were made specifically with tablets in mind. But even the most ardent Linux users admit that touch support could by no means be called anything other than half-baked.

The Microsoft twist: Microsoft is taking a very risky step in making the new Metro UI the default view of the new OS, but it’s also much more comfortable to use either with touch or a pen.

5. Social integration

Linux distributions — notably Ubuntu — have, for a long time now, included social media integration by default. The “Me” menu, which first appeared in early alpha versions of Ubuntu 10.04, allows you to update your status to all your accounts and get important feeds directly to your desktop. And when Microsoft finally added its Tweet@Rama, Photo Picker and Socialite app to the developer preview, loyal Linux users again pointed out that this has been done before.

The Microsoft twist: No twist here. Microsoft was simply late to catch on to the trend.

6. Native support for USB 3.0

In their very first blog post, the Building 8 folks explained their new native USB 3.0 stack and, of course, that news was greeted with comments of the “Linux has been doing that for three years” variety.

The Microsoft twist: Move along. Nothing to see here. USB 3.0 devices work pretty well with Windows 7 already since hardware manufacturers provide their own drivers. Microsoft just finally implemented an industry standard.

7. Cloud integration

Both Windows 8 and Linux sport features that let you sync data with the cloud. In Ubuntu 11, the Ubuntu One service offers a free online backup service with 5 GB. If you want more storage space, there’s always the option of purchasing an additional 20 GB for $2.99 a month.

The Microsoft twist: Windows 8 is going to tightly integrate with SkyDrive’s 25 GB online storage, which is not just for photos or music, but also allows for hosting your user account (personal settings, backgrounds, some data…) for you to log in from anywhere.

Ubuntu, however, counters with their new Music Streaming service.

8. ReFS

The newly introduced ReFS (Resilient File System, codenamed Protogon) is Microsoft’s next-generation file system. It will first debut in Windows Server 8, but client adoption is well underway.

The system itself is strikingly similar to ZFS (the Z File System) and the Linux-derived Btrfs (B-tree file system) as it also supports copy-on-write snapshots when coupled with Microsoft Storage Spaces. For further security, it also provides integrity checksums and B+ Trees. Also, the increased file/volume/directory sizes are also strikingly similar to Btrfs.

The Microsoft twist: Let’s just say that Microsoft didn’t do anything from scratch. While I did not dive deep into the file system drivers, I suspect that Microsoft looked very hard at some of the principles that worked years ago in both ZFS and then Btrfs and got the “inspiration” to develop something very similar.

Stealing or innovating?

While I won’t deny that Microsoft has “borrowed” many ideas from the open source world, overall they’re trying to find their own game in Windows 8.

Posted in Uncategorized | Leave a comment

This 5 reason make Windows 8 fail

Windows 8 s Metro: The face of a DOA operating system. Windows 8’s Metro: The face of a DOA operating system.

Some of my die-hard Windows friends are very excited by Windows 8 arrival later this year. Others fear that Windows 8 will be a repeat of Microsoft’s Vista disaster. Me? I know Windows 8 will be a Vista-sized fiasco.

Before jumping into why I think far more PC users will still be running Windows 7 in 2016 than Windows 8, let me explain that while I prefer Linux as my desktop operating system, I don’t see Windows 8 charge into a brick wall as being a pro-Linux or anti-Microsoft issue.

In fact, as desktop operating systems go, I rather like Windows 7.  Yes, really. Besides, it’s not like Windows 8’s forthcoming failure will help desktop Linux. Looking back, when Vista flopped, in the long run it actually hurt desktop Linux. That’s because Vista’s failure, combined with the threat of netbooks, caused Microsoft to revive Windows XP. If Windows 8 goes down the same path, I’m sure Microsoft will extend Windows 7’s lifespan.

So, why is Windows 8 destined to be a non-starter? Simple:

1. No one needs Windows 8 on the desktop.

Quick: Name one thing about Windows 8 that they don’t already get from Windows 7-or a great desktop Linux like Mint or Mac OS X Lion? I can’t.

Indeed, I can’t think of a single significant new improvement in Windows 8. The ability to refresh the operating system? Faster booting? A Windows Store? Live boot from a USB drive? Come on! All these features have been around in other operating systems for years, and while sure, they’re nice, put them all together and at most they’re worth a Windows 7 Service Patch–not a whole new operating system.

2. Metro: An ugly, useless interface.

As everyone knows, Windows 8 has a totally new default interface: Metro. When I look at Metro, however, I see gaudy colors, boxy designs, applications that can either run as a small tile or as full screen with no way to resize or move windows. Where have I seen this before? Wait, I know! Windows 1.0!

More to the point, almost everyone knows the current Windows interface. It’s changed over the years, but you could take someone who last touched Windows back in the Windows 95 days and drop that in front of them of Windows 7 and they’d be able to get work done. Metro? It’s entirely different. Heck, Microsoft has even dropped the Start button in the latest version!

In short, even if Metro was the best thing since sliced bread, which it isn’t, it will still require users to learn a new way of doing the same old thing. That’s a failure of an idea right here. Sure, you can use the ‘Classic’ desktop experience instead, but hey, I have an idea! Why not just use the Windows XP or 7 “classic” interface instead?

3. Where are the Windows 8 Applications?

The Windows 8 Consumer Preview (read Windows 8 public beta) will be here real soon now and we still don’t know next to anything about Windows 8’s applications. As Mary Jo Foley recently pointed out we still don’t even know whether Office 15 will be Metro, non-Metro, or partially Metro.

Seriously? Windows 8 will probably be out by this fall and we still don’t know jack about its apps? Not even Microsoft’s own flagship office application? Come on! How can you take this operating system seriously?

4. Vexed Windows developers.

If you’re unhappy about the state of Metro applications, think about the poor Windows programmers. You’ve spent years learning .NET, Windows Communication Foundation (WCF) and Windows Presentation Foundation (WPF), and now they have to learn WinRT and Jupiter/XAML.

Even developers who like WinRT give it “compliments” like “It’s a great time to get involved with WinRT, as the platform is still in its infancy, and will need a lot of developer support to build even more robust tools.” Really? That comment was made in January 2012, and the development tools are still in diapers!?

Last, but not least, Windows developers will need rewrite their Metro apps for the more traditional Windows-style desktop. Oh, and they’ll also need to build them for both x86 and ARM platforms. That’s a heck of a lot of work to do without a lot of time to do it in. Put it all together and I see little chance about Windows 8 having many mature, ready-to-run applications come launch day.

Heck, Brandon Watson, head of developer experiences for Windows Phone, just left Microsoft for Amazon’s Android-based Kindle team Think he might know something?

This reminds me, what do you call an operating system without developers or applications? The answer? Dead.

5. Too little, too late for the smartphone/tablet market

Metro’s real point, of course, isn’t for desktop users. It’s Microsoft’s last gasp attempt to be a player on tomorrow’s computers: smartphones and tablets. If Microsoft was bringing something truly revolutionary to mobile devices, or they were still able to strong-arm original equipment manufacturers (OEM)s into loading Windows on their devices, I think they’d have a shot at the mobile space. Neither is true.

Smartphones are a dog fight between Android and iOS. Tablets did belong to Apple, but now Samsung, Amazon and Barnes & Noble are giving the iPad a fight for the tablet marketplace. Android and iOS are mature, have enormous developer communities and are wildly popular. Heck, if you count smartphones, thanks to the iPhone Apple is now the number one “PC” vendor in the world.

On top of that, the U.S. phone carriers have no interest in a Windows Phone. Too old, too slow Microsoft is arriving much too late to the 2010s style of mobile computing to be a significant player and that means Windows 8 Metro won’t find an audience either. I see no room left for a major third-party platform. A minor player, like KDE or Ubuntu? Sure. A Microsoft? No.

Add it up. The majority of Windows users have only just switched over from XP to Windows 7 in, at best, November 2011. Microsoft is now asking for its users to switch to a platform with no significant improvements, a radically different interface, and which is very likely to have few applications. The result? Window 8 will be dead on arrival.

Originally posted by ZDnet

Posted in Uncategorized | Leave a comment

Guayadeque Music Player 0.3.5 Released With Multiple Collections, CUE Support ~ Web Upd8: Ubuntu / Linux blog

guayadeque music player 0.3.5

 

Guayadeque is a fully featured Linux music player that comes with smart / dynamic playlists, iPod and portable device support, automatically downloads album covers, lets you play and record shoutcast radios,  Mpris v2 support and many more interesting features.

Guayadeque 0.3.5 has been released recently with some new features, like:

  • Multiple collections: you can define as many collections as you want
  • CUE support
  • Album browser zoon mode that allows to view and select tracks
  • All playlists, except sorted dynamic playlists, can be sorted using column headers
  • Change language via Preferences > General
  • Load defaults in shortcuts preferences
  • Bug fixes

 

There aren’t many new features, but they’ve required a lot of work, especially the new multiple collections. With the introduction of this feature, the user interface was changed and there are now four view buttons which you can use to change between Library view, Album Browser, Tree view and Playlists.
You can use the new collections feature to create a separate audiobooks collection for instance, or define different collections for music stored in different places, etc.
To create a new collection, select Source > New collection, then enter a new collection name on the left and add some folders:

 

guayadeque collections

 

The new collections will then be displayed up under “Sources” and you can select to show them or not, among others:

 

guayadeque collections

And here’s the new album browser zoom mode that lets you view and select tracks:

guayadeque album browser zoom

Install Guayadeque

To install the latest stable Guayadeque in Ubuntu, use the commands below:

sudo add-apt-repository ppa:anonbeat/guayadeque sudo apt-get update sudo apt-get install guayadeque

If you prefer to use the latest Guayadeque from SVN, install “guayadeque-svn” instead (it’s available in the same PPA).

Arch Linux users can install the latest Guayadeque via AUR.

For other Linux distributions, check out the Guayadeque installation page.

melaluiGuayadeque Music Player 0.3.5 Released With Multiple Collections, CUE Support ~ Web Upd8: Ubuntu / Linux blog.

Posted in Uncategorized | Leave a comment

Salah pengertian mengenai Android (dan smartphone secara umum).

1. More free RAM equals no lags dan memakai task killer membuat handheld kita lebih cepat!
Bagi yang asing dengan Android, kebanyakan perangkat menengah dan perangkat jadul mempunyai RAM yang tidak terlalu banyak; sekitar 100 hingga 200 MB. Di Android Market (dan juga bawaan perangkat Samsung) ada tersedia aplikasi task killer. Fungsinya terbaca di namanya, yakni untuk “membunuh” tugas atau proses yang berlebihan. Pada keadaan idle atau standby, perangkat saya memakan sekitar setengah hingga tiga perempat dari kapasitas RAM. Di Android versi modern (2.1 keatas, sekitar 98% dari semua Android), ia memiliki semacam proses untuk melegakan RAM ketika sistem Android mengira RAM-nya terlalu sesak. Proses ini sangat mulus, sehingga si pengguna awam tidak menyadarinya.

Yang membuat saya bingung adalah mengapa ada orang yang masih menggunakan task killer pada perangkat mereka? Bolehkan saya menjelaskan:

Bagi yang asing dengan fungsi RAM, RAM adalah suatu perangkat keras penyimpanan yang memiliki kecepatan hantar data yang sangat cepat (jauh lebih cepat daripada hard disk atau flash media). Ia menyimpan aplikasi-aplikasi yang aktif dan idle agar prosesor dapat lebih cepat memanggil dan menjalankan aplikasi tersebut. RAM sama sekali tidak berperan dalam hal pemrosesan data, sehingga ia tidak signifikan pada kinerja sistem kecuali sebuah task killer berperan.
Seperti yang saya jelaskan diatas, RAM adalah sebuah tempat penampungan aplikasi agar lebih mudah dipanggil dan diproses oleh prosesor. Dengan menggunakan sebuah task killer, Anda sebenarnya membuat semua aplikasi-aplikasi aktif terhapus dari RAM, sehingga ketika sang prosesor disuruh memanggil sebuah aplikasi, ia harus mengambil dari media flash lagi.

2. More free RAM equals more battery!
Kok dari tadi permasalahannya di RAM mulu, ya?

Jawaban singkat: salah.
Jawaban panjang: malah kebalikannya. RAM yang mempunyai 200MB bebas dengan RAM yang mempunyai 80MB bebas menggunakan daya baterai yang sama besar. Bahkan, sang prosesor mengambil lebih banyak daya baterai ketika mengambil dari media penyimpanan di perangkat daripada langsung dari RAM.

3. WiFi kills battery!
Sebenarnya, ini relatif. Saya meletakkan ini disini karena ada beberapa kawan saya yang beralih dari WiFi untuk jaringan mobile data.

Pada kenyataannya, memang benar, WiFi memakan daya baterai, jika dibandingkan dengan memakai perangkat tanpa menyalakan WiFi. Tapi jika daya minum jus WiFi dibandingkan dengan koneksi 3G atau 3.5G, maka akan jauh terlihat mana yang lebih efisien.

Pengalaman saya: memakai koneksi mobile data HSDPA (3.5G) di Bandung 24/7, baterai hanya bisa tahan sekitar 10 hingga 15 jam. Sedangkan memakai koneksi WiFi di rumah (di Banjarbaru bangga dengan kota sendiri), baterai dapat tahan lebih dari 24 jam.

Sebenarnya proses dari WiFi yang memakan daya baterai paling banyak adalah ketika dia men-scan untuk jaringan yang tersedia, sedangkan unduh dan unggah data memakan baterai kurang lebih seperti jaringan 2G (EDGE), bahkan saya berani bilang lebih efisien WiFi.
Jadi, ketika kalian tahu bahwa dalam jangkauan kalian ada jaringan WiFi — misalnya di kampus/sekolah, perpustakaan atau Dunkin’ Donuts) — silahkan nyalakan WiFi dan matikan mobile data.

4. Low Quadrant score means less performance!
Untuk sebagian besar perangkat Android (mungkin semuanya), ada suatu aplikasi [yang dapat diunduh dari Android Market] yang bernama Quadrant. Ia berfungsi sebagai aplikasi benchmarking; aplikasi untuk menilai performa sebuah perangkat. Unsur-unsur yang dinilai, antara lain adalah kecepatan membaca, kecepatan menulis, kecepatan input-output, performa grafik 2D dan performa grafik 3D. Untuk perangkat yang high-end yang belum dioprek, nilai Quadrant dapat mencapai sekitar 1500; untuk perangkat yang mid-range yang belum dioprek, nilai Quadrant hanya mencapai 600. Sedangkan untuk perangkat mid-range yang sudah dioprek, nilai Quadrant dapat mencapai 2500, sedangkan perangkat high-end dapat mencapai 6000 keatas.

Namun, nilai hasil benchmarking Quadrant tidak akurat. Sama sekali tidak akurat. Bukan dalam artian melencengnya jauh, tapi karena suatu benchmark tidak hanya tergantung pada beberapa unsur. Banyak sekali, bahkan untuk sebuah smartphone, unsur-unsur yang mesti dinilai agar suatu benchmark dapat memberikan hasil yang adil.

Ada juga aplikasi yang bernama Antutu Benchmark. Angka-angka yang diberikan sedikit lebih akurat daripada Quadrant, namun pada ujungnya tidak berarti apa-apa.

Tahu nggak aplikasi benchmark yang paling akurat, paling praktis dan paling gratis? Nggak usah pake unduh dari Android Market, lagi. Namanya PENGALAMAN.

5. RAM script + RAM script + RAM script = super RAM script!
Yang sering mengoprek Androidnya pasti tahu fungsi sebuah RAM script. Bagi yang awam, sebuah RAM script berfungsi untuk mengendalikan penggunaan RAM agar seefisien mungkin karena kadang-kadang “proses” yang saya bilang dibagian sebelumnya kurang berbakat.

Untuk perangkat yang lumayan populer, pasti tersedia sejumlah RAM script untuk dicoba di forum-forum oprek Android. Namun, ada orang yang berlogika bahwa RAM script + RAM script + RAM script = super RAM script.

Ini sangat, sangat berbahaya. Pertama-tama, RAM script bukan suatu proses (yang bila ditumpuk, akan lebih gesit kerjanya); RAM script hanya “memerintah” proses yang mengendalikan penggunaan penyeimbangan RAM untuk mematuhi nilai-nilai yang telah ditentukan oleh RAM script tersebut. Bila nilai-nilai ini saling ditumpang-tindih, maka akibatnya terjadi rule conflict yang akan menyebabkan system menjadi crash.

write by : https://www.facebook.com/adEKLiPSE

Posted in Uncategorized | Leave a comment

MPD notify

Do you like MPD as your music player? and do you miss notification when song change, paused or  now playing notification?

you must try this trick , here is a script to make the nofitication

#!/bin/bash

#A simple notify script for now-playing songs
#on mpd. This script uses notify-send and
#mpc to get the current song information.

#Requirements :
# – mpd
# – mpc
# – notify-send (libnotify)

# Author : Wolfgang Mueller
# This file is considered public domain by the author.

#The following track metadata delimiters can be changed.
#You can find all possible delimiters in the ‘mpc’ manpage.

#determine file
file=$(mpc -h 127.0.0.2 -p 6600 current -f “%file%”)

#check if anything is playing at all
if [ -z “$file” ] ; then
exit 1
fi

#Get title info
title=$(mpc -h 127.0.0.2 -p 6600 current -f “%artist%[ (%album%)]”)

#Get song info
song=$(mpc -h 127.0.0.2 -p 6600 current -f “%title%”)

#Get mpd status
status=`mpc -h 127.0.0.2 -p 6600 | grep playing | cut -c2-8`
if [ “$status” == “” ]; then
status=”paused”
else
status=”playing”
fi

#replace this with your mpd music directory
art=”/home/dedy/Music/”${file%/*}”/”

#Go through every found file that matches the expression.
#My album art files are located in the directory that has the music files.
#My directory structure looks like this : main_folder/artist/album/[music files + art]
#I’ve named those files front.jpg/png. As your files will probably be named
#differently, you’ll have to change the expression.
for temp in “$art”front.jpg “$art”front.png ; do
if [ -e “$temp” ]; then
# a suitable file was found.
artfile=”$temp”
break
fi
done
#check if art is available
if [ -n “$artfile” ]; then
pkill notify-osd; notify-send -t 5000 -i rhythmbox –hint=int:transient:1 “Now Playing ($status)” “$titlen<i>$song</i>” -i “$artfile”
else
pkill notify-osd; notify-send -t 5000 -i rhythmbox –hint=int:transient:1 “Now Playing ($status)” “$titlen<i>$song</i>”
fi

copy that script above and paste to a text, make it executable.
then if you using ncmpcpp you can set it on

execute_on_song_change = “/path/to/your/script.sh”

or if you had already bind multimedia keys manually like me which using xbindkeys.

then you just add /path/to/your/script.sh
to make it executed everytime you pres the multimedia buttons 🙂

Posted in Uncategorized | Leave a comment

MENGENAL DAN MEMBANDINGKAN LINUX DENGAN OS LAIN

Sebelum mengenal lebih jauh tentang linux mungkin yang jadi pertanyaan awal anda adalah “Apa itu Linux?” disini saya akan mengenalkan sedikit tentang linux. Linux adalah nama yang diberikan kepada sistem operasi komputer bertipe Unix, Linux merupakan salah satu contoh hasil pengembangan perangkat lunak bebas dan sumber terbuka utama. Seperti perangkat lunak bebas dan sumber terbuka lainnya pada umumnya, kode sumber Linux dapat dimodifikasi, digunakan dan didistribusikan kembali secara bebas oleh siapa saja. Nama “Linux” berasal dari nama pembuatnya, yang diperkenalkan tahun 1991 oleh Linus Torvalds. 
 
ada baiknya anda mengetahui perbedaan – perbedaan antara linux dan OS lain. disini saya akan menilai secara adil, tanpa memberat- sebelahkan pihak manapun. Ada pun kami membandingkan dengan OS Windows XP/7, MAC OS, FreeBSD.

Bisa anda simpulkan perbandingan linux dengan OS lain, dengan uraian dan pembuktian beberapa poin dibawah ini :

1. Membutuhkan sumberdaya hardware yang sedikit dibanding MS Windows
Spesifikasi Hardware minimum agar system operasi X-Windows misalnya dapat berjalan dengan optimal Processor : Pentium 100 MHz, Memory (RAM) : 32 MB. SedangkanLinux bisa berjalan hanya dengan 150MB spasi hard disk, 2 MB RAM bahkan pengalaman teman saya linux bisa berjalan di flashdisk 1 Gb dengan hanya meminjam RAM dari komputer minimal Intel pentium 1 (Pentium klasik)
2. Tingkat keamanan lebih tinggi
Linux memiliki hak akses yang dapat diatur oleh administrator Linux tersebut. Jadi, data yang ada pada PC Linux bisa dijaga dari tangan jahil yang ingin melihat data Anda. Selain itu, Linux mengharuskan login terlebih dahulu jika ingin masuk ke dalam sistemnya. Berbeda dengan MS Windows 9.x/Me yang membolehkan siapa saja masuk ke dalam sistemnya.
3. Relatif lebih kebal terhadap virus
Mungkin inilah yang disukai oleh para pengguna Linux. Sistem berbasis UNIX telah dikenal lebih kebal terhadap virus komputer (kecuali saat ini telah ada virus yang merusak, namun itu sangat sedikit sekali jumlahnya dan bisa dibasmi dengan antivirus Linux). Tapi virus yang ada saat ini hanya ada virus yang telah diprogram untuk merusak sistem MS Windows, hal ini tidak dapat dilakukan olehnya pada Linux. Karena keduanya memiliki kernel yang berbeda.
4. Tampilan desktop yang variatif
Anda dapat membuat tampilan desktop yang variatif, yang sulit sekali untuk dilakukan pada MS Windows. Karena di linux ada aplikasi Compiz yang bisa mengubah tampilan desktop ditambah dengan effects bikin tambah keren jadi Jangan heran jika Anda akan melihat tampilan desktop Linux teman Anda berbeda jauh 180 derajat dengan tampilan desktop Linux yang lainnya. Keuntungannya, Anda dapat mengkostumisasi menu dan akses ke file untuk memudahkan pekerjaan Anda.
5. Harga murah
Anda dapat meng-copy Linux dengan meminjam CD installation-nya dari teman Anda, bahkan Anda dapat mengcopy CD Linux dengan hanya membayar biaya copy. Bayangkan jika Anda harus membeli MS Windows yang seharga Rp. 1.4 juta ke atas belum lagi untuk menambah aplikasi-aplikasi lain yang dibutuhkan. Ini tentunya akan sangat menekan biaya pengeluaran perusahaan Anda. Bahkan saat ini dan sudah meluas untuk menekan biaya untuk mendapatkan MS Windows terpaksa beli bajakan (membajak) sungguh sangat memalukan.
6. Stabil
Linux memiliki kernel yang stabil. Dia dapat berjalan 24 jam sehari 7 hari seminggu tanpa harus restart. Ini yang membuat Linux menjadi unggul jika dibandingkan dengan MS Windows yang kadang minimal dalam satu hari kita harus me-restart ulang untuk menyegarkannya.
7. Penggunaan software yang mudah
Software-software di linux telah dirancang khusus agar mudah dioperasikan. Dibentuk sedemikian rupa agar interface, alur bersahabat seperti software-software di windows. Sehingga para migrasi merasa nyaman dan tak merasa canggung.
8. Kompabilitas aplikasi windows
Ini hal yang membedakanLinux dengan Windows, jika anda ingin menjalankan software-software / Game-game windows. Anda bisa menjalankan nya dengan software WINE ataupun Crossover. Untuk sekarang ini hampir semua software windows berjalan di linux. Sedangkan windows tidak bisa menjalankan software asli linux terkecuali software linux tersebut dibuat basic pada windows. Biasa nya dengan ekstensi *.exe.
9. Multimedia
Sekarang ini, Linux pun tidak kalah dengan software-software BERBAYAR multimedia milik nya windows maupun mac os. Semisal untuk recording di windows harus membeli software-software produk steinberg, nativeintrumen dengan harga yang sangat mahal. Ataupun mac os dengan membeli software-sofware milik avid, digidesign dengan harga yang tinggi. Kini linux pun telah menghadirkan software-software audio untuk recording, Fx gitar, dan lain-lain. software alternatif di linux. Untuk desain grafis, 3D maupun 2D linux memliki software yang sangat powerfull. dan semua aplikasi di linux freedom GRATIS.
10. Installation
Ternyata semakin kedepan, linux pun memeberikan instalasi yang mudah. Dari instalasi OS nya dan instalasi software-software nya. Tersedia dalam GUI (Graphical User Interface) dan CUI (Character User Interface). Ada pun double klik saja seperti pada windows (.exe) jika di linux dalam pemaketan distro tertentu seperti (.deb, .rpm, .tar.gz, .sh) dll.
11. Spyware
Spyware adalah suatu masalah yang cukup umum di dunia Windows. Biasanya program spyware mengamati, mengumpulkan dan mengirimkan data Anda ke suatu server. Untuk hal yang lebih positif, program ini biasanya dipergunakan untuk keperluan marketing. Sayangnya, ada juga yang berniat buruk yaitu dengan mencuri identitas, kartu kredit, dan tindakan negatif lainnya. Tidak banyak program spyware yang menginfeksi Linux mengingat cara kerja Linux yang lebih susah untuk ditembus. PCLinux telah menyediakan pre-instal Firewall untuk melindungi sistem Anda dan bisa diaktifkan melalui PCLinux Control Panel.
12. Defrag
Di Windows, Anda mungkin sering menemui masalah menurunnya kecepatan Windows. Salah satu penyebab biasanya adalah file-file di harddisk yang sudah tidak tersusun rapi lagi. itu sebabnya Anda disarankan untuk menggunakan program Defrag. Di Linux Anda tidak akan menemukan program untuk men-defrag harddisk. Anda tidak perlu melakukan defragment di harddisk Linux! Sistem file Linux yang menangani semuanya ini secara otomatis. Namun jika harddisk Anda sudah terisi sampai 99% Anda akan mendapatkan masalah kecepatan. Pastikan Anda memiliki cukup ruang supaya Linux menangani sistemnya dan Anda tidak akan pernah mendapatkan masalah deframentasi.
13. Sistem File
Windows mempunyai dua sistem file. FAT (dari DOS dan Windows 9x) dan NTFS (dari Windows NT/2000/XP/Win7). Anda bisa membaca dan bahkan menyimpan file di sistem FAT dan NTFS milik Windows. Hal ini tidak berlaku sebaliknya, Windows tidak akan bisa membaca atau menyimpan file di sistem Linux. Seperti halnya Windows, Linux memiliki beberapa macam file sistem, diantaranya ReiserFS atau Ext3. Sistem ini dalam beberapa hal lebih bagus dari FAT atau NTFS milik Windows karena mengimplementasikan suatu tehnik yang disebut journaling. Jurnal ini menyimpan catatan tentang sistem file. Saat sistem Linux crash, kegiatan jurnal akan diselesaikan setelah proses reboot dan semua file di harddisk akan tetap berjalan lancar Seperti semula.
14. Opensource dan berlisensi GPL (General public License)
A. Pemahaman Open Source Software (OSS)
Istilah Open Source tidak asing lagi bagi pengguna Sistem Operasi (OS) Linux, tentu banyak dari kita pernah mendengar istilah open source, tetapi bagaimana pemahaman open source yang sebenarnya. Open Source sangat indentik dengan OS Linux, selain linux itu sendiri bersifat open source, hampir seluruh aplikasi yang digunakan juga bersifat open source.
Open Source Software (OSS) tidak terbatas pengguanaannya di OS Linux, berbagai aplikasi open source juga dapat berjalan di OS lainnya meskipun tidak bersifat open source. Misalnya: OpenOffice, Firefox, pidgin, VLC, dan sebagainya. Open source dalam terjemahan langsung “Sumber Terbuka”, Sumber yang dimaksud merupakan source code (kode sumber) dari sebuah aplikasi yaitu kode-kode pemrograman termasuk dokumentasi dari aplikasi tersebut.
Open source software (OSS) dapat diartikan aplikasi yang membuka (membebaskan) kode sumbernya untuk dilihat oleh siapapun serta mengizinkan siapapun mengetahui cara kerja aplikasi, memodifikasi, dan mengembangkan lebih lanjut dengan syarat-syarat tertentu, misalnya dengan tetap membuka source code, menyertakan source code asli dan lain sebagainya. Keunggulan yang paling menarik dari open source softfware yaitu bisa didapatkan secara gratis tanpa perlu membayar lisensi, umumnya aplikasi open source dapat diperoleh dari internet bahkan dari situs resmi pengembang aplikasi tersebut, sangat menarik bukan?
Untuk Lebih jelas mengenai definisi open source silahkan kesini.
B. Lisensi GPL (General Public License)
Meskipun tidak perlu membayar dan dapat diperoleh secara gratis bukan berarti aplikasi open source tidak mempunyai lisensi. Terdapat banyak lisensi yang terlah disertifikasi oleh open source Organization antara lain GNU General Public License (GNU GPL atau GPL), daftar lengkap untuk lisensi aplikasi open source dapat dilihat disini.
GNU (General Public License) dikenal juga sebagai “Copyleft” yaitu suatu lisensi perangkat lunak bebas yang pertama sekali ditulis Richard Stallman untuk proyek GNU. GNU (GNU’s Not Unix) merupakan singkatan rekursif (perulangan), dimana didalam singkatan terdapat singkatan itu sendiri. Singkatan ini memang membigungkan, tetapi ini merupakan hal yang menarik dan khas yang dimiliki oleh komunitas open source.
GNU adalah sebuah yayasan pengembang aplikasi-aplikasi gratis termasuk Linux. Seiring perkembangan, GPL tidak hanya digunakan oleh GNU dan Linux saja. Saat ini lebih dari 60.000 aplikasi yang mengklaim mareka berlilensi GPL. Khusus untuk aplikasi, telah didirikan Free Software Foundation (FSF) sebuah badan yang menaungi pengembang aplikasi gratis berbasis open source seluruh dunia.
GPL merupakan lisensi perangkat lunak bebas dan open source yang paling populer dan lisensi ini pula yang digunakan pada umumnya oleh aplikasi open source. Menurut penganut GPL, karya intelektual seperti halnya ilmu pengetahuan pada dasarnya tidak memiliki hak cipta. Anggapan ilmu pengetahuan berasal dari ide murni, jadi seharusnya dapat dinikmati oleh seluruh manusia sebab sudah menjadi hak alamiah.
Sedangkan microsoft mempunyai beberapa lisensi berbayar diantaranya : OEM (Original Equipment Manufacturer), GGK (Get Genuine Kit), GGWA (Get Genuine Windows Agreement) -terbaru, FPP (Full Packaged Product) untuk melihat keterangan lebih lanjut anda klik saja ini.
Cukup sampai disini dulu penjelasan singkat ini, Sebenarnya masih banyak sekali perbandingan yang menarik yang bisa kita jelaskan tapi lebih baik lagi kalau dicari sendiri perberbedaannya .
Sumber : http// www.opensource.org, www.klikunikom.org

Blog Linux – Sasongko: MENGENAL DAN MEMBANDINGKAN LINUX DENGAN OS LAIN.

Posted in Uncategorized | Leave a comment

gMusicBrowser 1.1.9 Adds New Layouts ~ Web Upd8: Ubuntu / Linux blog

gMusicBrowser is a highly customizable music player that works great with large music libraries. The application comes with built-in layouts which can make gMusicBrowser look like Exaile, Rhythmbox, Audacious and so on, MPRISv2 support and it even has simple mass-tagging and mass-renaming, among many other features.

gMusicBrowser 1.1.9 has been released with new layouts (some you may already know if you’ve used the Shimmer Project PPA), MPRISv2 fixes, updated cover finder plugin and more.

Most important changes in gMusicBrowser 1.1.9:

  • new layouts and layout fixes
  • add SongInfo & PictureBrowser widget
  • improve songs-from-album menu
  • mpris2 plugin fixes
  • m4a tags fixes
  • fix problems with ubuntu overlay scrollbars
  • cover finder plugin: update google image parsing
  • fix “presenting” window not working in some cases
  • fix lyrics3v2 tags ignored
  • write to all tags when multiple id3v2 tags are present
  • more

According to its developer, gMusicBrowser 1.1.9 is a release candidate so you might find bugs – if you do, report them @ GitHub.

Download gMusicBrowser (includes .deb and source files)

Arch Linux users can get the latest gMusicBrowser via AUR.

gMusicBrowser 1.1.9 Adds New Layouts ~ Web Upd8: Ubuntu / Linux blog.

Posted in Uncategorized | Leave a comment

25 things you can do with VLC Media player! | Unixmen

VLC is beyond doubts the most popular open source, cross-platform media player and multi-media framework written by VideoLAN projects. VLC player is small in size, just about 17 Mb and immensely powerful! In this post we will explore the player and list 25+ things you can do with VLC player.

 

1- Run/Install VLC from flash drives
VLC can be installed or run directly from a flash or other external drive. It is light weight and small in size.

2- Portability: Play any DVD on the go, ignoring region coding
For the new bees, I will throw some light on DVD regions. According to Wikipedia there are six different official regions and two informal variations. Any DVD discs may use one code, a combination of codes (Multi-Region), most codes (Region 0) or every code/no codes (Region All). Any commercial DVD player specification requires that a player to be sold in a given place not plays discs encoded for a different region. Put it simply;

DVDs manufactured for one region will not play in players made for a different region. Usually to play dvds from other region you often require illegal DVD region spoofing programs. However VLC player is so powerful that it can play DVD’s encoded for any region .i.e. it ignores region coding. This feature is so helpful if you are an international traveler and require playing DVD outside the country.

3- Play anything, audio or video!
VLC player can play any common audio formats (OGG, MP3, WAV ,WMA….) and almost all kinds of video file formats, including rare file formats, without installing external codecs.  VLC player is an ideal replacement for even ITunes . That is to say you would never get the annoying notifications saying it ”your player needs a codec for MP4, FLAC or Raw DV…”! play anything you want!

4- AirTune  Streaming
AirTunes is functionality for Apple’s Airport Express. This functionalities allows one to play media files on your home stereo speakers. This feature was initially developed to work with iTunes, but now VLC has officially added the support for AirTunes streaming as well.

vlc1

5- Effortlessly use VLC player with other programs

Its my personal experience that powerful players that offer flexibility are very heavy on system resources. You can only play the player and your multi-tasking is literally paralyzed.  That is just not the case with VLC. Whether you are playing ti on Mac, Windows or Linux, you will feel VLC is light and enables you to extensively multitask.

6- Minimize VLC player to system try!

vlc2

7- Convert your files using VLC
VLC is amazing!! You can convert your media files using VLC player. VLC  can also convert videos to formats it supports and one can also specify whether or not to use system codecs. I have loaded  an mp3 file that I can convert to acc, mp4, OGG,ASF TF etc!
Another interesting consequence:
Usually pdf files cannot be read with multimedia files in mobiles. You can convert your pdf files to to MP3 or MP4. This way they can be read on any multimedia plaer and also will consume much less space. To convert simply Menubar->Media->Convert/Save.

convertingfiles

8- Screenshot your video!
With VLC  one can also take screenshots of videos, even during DVD playback. This is indeed a very attractive feature. To capture a snapshot go to Menubar->Video->Snapshot

snapshot

9- Play subtitles

When playing a movie you might not always have the option of playing subtitles. In such a case you can download subtitles from website like moviesubtitles.org. You can either rename the subtitle file to match the name of your movie or you can browser the file to enable it. In the previous case (renaming the file) play the file and simply right-click on the screen and go to subtitles, you will be surprised! The subtitles are already enabled! In the later case, you can manually browse the subtitles file and enable it by File->File Open->Check the Use Subtitles checkbox ->browse the file->play.

vlc3

10- Add Logo to your video like a TV!
You can add logos to your video by following the following simple steps:

  • First install vlc-nox and mono-devel:
sudo apt-get install vlc-nox mono-devel
  • Go to the folder where you have your video + logo.png (make sure to place the logo and the video int he same directory)
  • In local type the following command :   vlc –sub-filter logo –logo-file logo.png video.avi 
  • In streaming: vlc –logo-file logo.png video.avi –sout “#transcode{vcodec=…,vb=…,sfilter=logo}:std{…}”
  • Note: Do not specify –sub-filter logo, and that you specify a vcodec= value in the transcode part
  • Save the video locally with the logo:
vlc --logo-file logo.png video.avi --sout "#transcode{vcodec=...,vb=...,sfilter=logo}:std{access=file,dst=new_video.avi }

11- Control and customize VLC
One can easily control the VLC player with keyboard/joy sick using Hotkeys and perform various fucntions like switch to full-screen, begin playback, pause playing, speedup or slow playback or skip to next section. bbb You can refer to the list of hotkeys here. The most exciting things is that you can completely customize the hotlkeys to suit your use. In later post we will let you know how you can customize the hotkeys.

customizable

12- View fullscreen videos and simultaneously control the player with hotkeys. Hotkey: Ctrl+H
13- View videos with minimal interface. i.e watch vidoes in fullscreennd keep watch on other applications in the taskbar as well. Hotkey: F11

minimal_view

14- Customize interface of VLC

VLC player gives the user the freedom to customize its interface. You may want to make the player look more colorful and fancy as by default the interface is fairly plain. You can accomplish it in 2 ways:

  • Either customize the VLC player qt interface.
  • Install skins

In the upcoming post we have introduced you to VLC players interface in detail.

interfacebust

VLCPLAYERSKINNED

The above figure is interface of VLC that is skinned.

15- Control VLC remotely!
You can control VLC player remotely from a computer that does not even have VLC. all you need to do it to enable access in the .hosts file (from 0.9.6 onwards) and follow as below:

  • Add the files to be streamed to the playlist like /home/file.mpg (unless you use the UI to select the file in the next step)
  • Add streaming destination to the server in the sout field udp://:1234, using these steps in the UI:
  • Go to File -> Open File
  • Click Browse to select the file you want to play
  • Select Stream/Save and click Settings
  • Optional: Select Play Locally to make sure everything is working correctly
  • Select UDP and fill in the client IP address and port number (default: 1234)
  • Click OK, OK, and press play
  • At the terminal, with vlc udp://@:1234
  • Start up VLC normally Go to File -> Open network stream, leave the default options (Radio button UDP selected, port set to 1234) then press OK ( See bellow)

The technique was already illustrated here.

16- Automatically Quit VLC after playing your video!

To quit the vlc after you have played your movie you can simply add vlc://quit to the play list. You can also shutdown the computer, however this is not a feature of vlc. Follow these steps to do so:

  • Create a .sh file
  • # !  /bin/sh
  •  vlc  && shutdown -h now

17- Play damaged and unfinished videos!

Because VLC is a packet-based media player, it can play the video content of some damaged, incomplete or unfinished videos. This is my favorite feature as I often end up with broken video files due to internet connection issues.

18- Play RAR files!
With VLC you can play videos zipped inside RAR files. VLC has the ability to play series of RAR files all you need to do it to load the very first part like (.part001.rar ). It will automatically take the rest of the parts and play the whole file. You can also use the seek bar!

19- Play ISO files
VLC player also has the ability to use libcdio to access .iso files so that the user can play files on a disk image, even if the user’s operating system does not have the capability of working directly with .iso images.

20- Rip DVDs
VLC player includes a basic DVD ripper. This might not be a very attractive feature today nevertheless it seeks to improve with the later versions.

21- Record videos!
With VLC, you can record videos during playback. To do so click on View>Advanced Control to show off the hidden record button. As the button appears you can record video while playing and click the button again to finish recording.

22- Record Live TV!
VLC can also record live TV from a decoder card and act as a sort of mini-DVR in that respect; provided you have TV decoder card.

23-Listen to online radio!
VLC comes with countless shortcuts to radio stations, browse any of your favorite and enjoy it!
Else you can of course always simply find a link to a radio stream and then open it as you would any other network stream in VLC. Enable the shortcuts throughMedia>Services Discovery>Shoutcast radio listings.

24- Play in ASCII mode!

You can playback any video in ascii mode. To enable ASCII mode, open VLC media player and click on Tools>Preferences. Open the section “Video” section and under “Output” select “Color ASCII art video output” from the drop down menu. Save it. Now play any video file to enjoy the ASCII art.

25- Drag and drop files to play in VLC!

Draganddrop

VLC is an acronym of VideoLAN Client, however, today VLC is far more than a simple client. VLC can act as streaming server and client . You can set up VLC to stream media from a file or from a DVD as a server, and then another client can stream that media, without having to encode the file first. VLC is the indeed the king of video and audio players and a pride fro opensource community! If you havent yet installed vlc then dont waste time anymore, download it here.

25 things you can do with VLC Media player! | Unixmen.

Posted in Uncategorized | Leave a comment

Top Ten Extensions for LibreOffice (Libre Office) | Unixmen

LibreOffice is an open source Office Suite, an excellent alternative to MS Office. If offers a number of features and the added functionalities in the form of extensions. Here are some of the useful extensions for LibreOffice.

1) iMath: Many computer users know how to use Excel or spreadsheets for carrying out different calculations using formulas, but iMath helps carrying out numeric and symbolic calculations inside a Writer document.

2) Clipart gallery of puzzle shapes: With this extension a new theme named “Puzzle 3-4-6-o” is created in LibreOffice that adds 60 puzzle shapes like triangles, squares, hexagons, and circles. The shapes are in vector graphic format allowing you to change border or filling and magnify. Almost all the possible shapes are given; just rotate them to obtain the shape you want.

3) EPC: This small extension for LibreOffice offers elements required for drawing event-driven process chains. It works best in Draw if you have enabled grid and connectors.

4) Clipart gallery of danger signs: This is a big extension that integrates four themes to your existing gallery in LibreOffice. It carries more than 400 cliparts all related to security at work. All the cliparts are in vector graphics format so there is no loss of clarity even if you magnify them. In Draw you can also modify cliparts or retrieve parts of them.

5) AddPics: If you have the pictures or images or the scanned pages, AddPics can help you create the documents from them. For all the documents created you get correct page orientation, whether portrait or landscape.

6) TexMaths: This is very useful extension for engineers and all those who have to work on the equations. TexMaths is the LaTeX equation editor for LibreOffice. TexMaths enables adding LaTeX equations in the form of images (SVG or PNG format). The LaTeX code is saved in the image for further editing it any time. Ex: x(t) = mu ^2 (t) should produce the equation x(t)=µ²(t)

7) Export as images: This is a very useful extension to convert all the Impress slides or pages created in Draw into images of format like JPG, PNG, GIF, BMP, and TIFF. After installing this extension you will be able to see option “Export as images…” in the File menu. You can select the image format, size of the image and other parameters.

8)  OpenOffice.org2GoogleDocs – export & import to Google Docs, Zoho, WebDAV: This extension enables you to export, import and edit your files from Google Docs, Zoho and WebDAV servers. The files can be documents, spreadsheets and presentations.

9) SmART Gallery: This is another very useful extension, the advanced version of previously known Diagram for both, LibreOffice as well as Open Office. By using this extension you can create your diagrams in a few clicks within Draw and Impress applications.

10) Language Tool: This is an excellent tool for the writers and all others who want to write in correct language. It is a style and grammar proofreading software for English, French, German, Polish, Dutch, Romanian and many other languages. Language Tool helps detect the errors that the spell checker cannot detect. It can detect some grammar mistakes but it cannot do spell checking.

Top Ten Extensions for LibreOffice (Libre Office) | Unixmen.

Posted in Uncategorized | Leave a comment