Category Archives: Uncategorized
Hi,
recently building a app i was need to suggest data to the user when trying to fill a input. so i look for a js script for this. i usually use mootools for my development in js, so looking for a plugin i found this: Meio.Autocomplete plugin for mootools
is a really nice plugin, between their features, support the inbuilt ajax calls using the Request.JSON method from the mootools framework. also support to set up filter for the returned data, the set of field parameter to look for the input by the user, the minimum of characters that the user need to enter to start looking for it, delay between the ajax call and the search in the data and many other properties. you can also customize the look and feel of how the options are displayed.
from their web page you can download the source code and the compressed version for production environments. also there you can see plenty of documentation explaining each property of the plugin and several examples to see and try online.
i hope it help you in some way
Regards,
Shadow.
Related Post
Hi,
if you are looking a easy way to root your android phone, i found this app yesterday:
Universal androot. the app let you root or unroot the phone with 1 tap. it do not work with all phone (in mine, motorola backflip didn’t worked) but there are success case in several HTC and motorola phone, in almost all android versions.
you can download it from here
i hope it help you in some way
Regards,
Shadow.
Related Post
Hi,
recently i saw several new linux powered distributions come up oriented for the end-user, so i wanted to test them to see if the linux OS made some progress in the way to get closer to the common user, those users that just know how to turn on the computer, send a email and check their facebook. between those new distributions, are the ubuntu netbook with the unity interface, meego and jolicloud, that has been a while with us and i wanted to make a test today. i tried to test the other 2 this days but none of them worked on a virtual machine, so when i have some time to try it in a real computer, i get it tested.
What is jolicloud
Jolicloud is a linux based operating system, oriented to the web services. the aim of the os is to make the use of a computer painless and easy to use, and also make it full integrated to the web, with integration with facebook, twitter, google, dropbox etc..
after the jump can see the rest
Random Posts
Hi,
i just received a email from a site that i win a award to be one of the best programming blogs (?) you can see it here
i need to say, i think the site is a little crap, but at least they give me nice badge
at least know that someone read all the no senses i write
Regards,
Shadow.
Related Post
Hi,
yesterday i found this program, called SuperOneClick, that in theory let you root your android phone with 1 click. i tried it myself with a motorola backflip and it didn’t worked, so i’m not sure if it works or not (even other say that have worked for them). if you want, can download it from here (require you create a user in the forum)
the process to root the phone is:
- set the phone under the debug mode: go to configurations -> applications -> developer -> usb debug mode
- connect the phone to the pc
- start SuperOneClick, and click on Root and wait till it finish
and also, if you have a motorola phone, you need the ADB driver, that can be downloaded from here.
i hope it works for you.
Regards,
Shadow.
Source | Genbeta
Related Post
Hi,
recently i was needed to set up a ftp account in a test server, so i made it basically adding a user as always. the problem have come when this user, needed to access to a folder located in a higher level than her user directory (basically on /, the root of the system) so, there was only 2 options, or give him root account and access using scp or having that folder under the home directory in some way. so of course i choose the second option. my first thing to try was to create a symbolic link from the folder that was needed to access to a one in the user home directory. after several tries, and in different ways, when i tried to access to the folder, alway told me that the file was not found. so searching a little in the proftp documentation i discover that is impossible to access for a user to access to a folder that is in a upper level than her user directory, but that in linux system, you still could “mount” the folder into another. so i made it like this:
mount –bind /folder/upper/level /home/user/directory/for/folder
this will mount the folder on a another in the user home directory and could be accessed from the ftp account. if you want this mount to be permanent, you need to add it to your fstab in this way:
/folder/upper/level /home/user/directory/for/folder none rw,bind 0 0
and that’s all folks, i hope this help you in some way
Regards,
Shadow.
Related Post
Hi,
today i noticed on my recently brought android phone that when i made a app search, android paid app’s showed as options, something that before didn’t happened.
so i made a quick search and i found this on the official android blog.
so now, 20 more countries can buy and sell app’s including argentina
Regards,
Shadow.
Related Post
Hi,
today a quick post, basically only to share this link that has been a great help to solve the bottleneck problem that could happen on postfix.
the bottleneck happen when the queue are stuck’s with too many request for some particular reason (like dictionary attacks or spam’s that make the active queue too busy) or something failed at processing the emails that put the request on incorrect queue.
as example, yesterday, for some reason clamav failed for lack of memory, something weird as the box have enough for everything (something that i need to look about) so, as result, the postfix failed at connect amavis, so the mail system but all the emails into deferred queue. after the restore of clamav, amavis and postifx, y run a postfix reload, that will run the cleanup daemon, to process all the emails that was on deferred and put them on the active queue.
you can diagnose this with the qshape tool, all explained on the link above, is a but difficult to understand at the beginning, but is really useful
i hope it help you in some way
Regards.
Related Post
Hi,
as i said in a earlier post, i brought a android phone, and some days ago looking for the app’s to install, i was looking for some MSN app. in my first search i found ebuddy, a service that i never used but i know that hey existed for years. so i installed the app, created a new account and link my hotmail credentials. all worked flawless so i continued doing my stuff. hours later, i starting to receive bounced emails from my contacts, send from my hotmail account, that was more than obvious that was spam. so then i changed my hotmail password and the spam emails stopped.
how i know that the fault was from ebuddy? i’m more than careful with my mails and important accounts, all of them have a different passwords that i change time to time, i do not use any web service, all open source app’s as AMSN in case of msn, and i only login on my computer or in this case phone, i never login on a public or strange computer for any reason. and BTW, my computer is running ubuntu, so virus are not a possibility
so, i don’t know if they sell your data to the spam people or have a big and important security breach, but avoid using ebuddy at all cost, from my side i reported the app and downloaded an app that directly connect to the msn service called “MSN Talk”.
Regards,
Shadow.
Related Post
Hi,
just a quick code snippet to filter any text inserted by the user, useful for only numbers (and symbols) fields like for the user phone in a form.
function checkLetters(elem){
var val=elem.value;
elem.value=val.replace(/[a-z]+/gi,”");
}
you can add this function to any input like this:
onkeypress=”checkLetters(this);”
a very basic and simple code example, but very useful some times
Regards,
Shadow.







