This update was pushed with the Galaxy S3 Jellybean update. It allows the use of Muve Music without the Muve Music Memorycard. This may be specific to the Galaxy, but that is one of the features in this update.
Some Cricket Service Specific Android Apps
February 1st, 2013
Gassan LG Android Hidden Service Menu Loader
January 30th, 2013
Gassan Some LG Android phones have the hidden menu disabled. This application, once installed, can call that menu to make changes to LG Specific settings.
Just install the APK and run the application on your phone.
LG VN150 & VN271 SPC Reader
January 30th, 2013
Gassan Some of Verizon pre-paid phones do not have 00000 as their SPC, I have noticed this on some models like the LG VN150 and the LG271 for Verizon. Use this program to read the SPC from the phone for unlocking/flashing.
Cricket Muve Music 2.8.2 & 3.0.2 APK
December 24th, 2012
Gassan Samsung PST DLLs, Kyocera PST 3.8, & Kyocera Chamelion
December 20th, 2012
Gassan Some Cricket PRL 25410 35410 45710 4500
December 20th, 2012
Gassan Downloads Starting to Come Back Online
December 14th, 2012
Gassan It has been a while since I have posted here. I have been quite busy… I have been moving over all the downloads I currently offer on this website from MegaUpload (which has died..) to public shares on Google Drive. You should start to see everything coming back online here soon. I am however missing files that I would love to provide on here but I have sadly lost them, and those are the TOT files for the LG Optimus series for Sprint and MetroPCS. If you have these, email me < ghassani -at- gmail > with a link to them and I will add them here for everyone. I haven’t been able to fine them
To people who have emailed admin@idriss.us or phones@idriss.us – I had moved hosts and forgot to resetup my clients to receive those emails. I see a lot people tried to email me. Sorry I did not respond.. however just to update all of you I no longer work with MetroPCS and will not be adding ESN/MEID/IMEI to their system. I think they stopped their flashing program anyway.. I am however now working with Cricket and can enter those;) I have updated these email addresses to forward to my personal email address, so if you have any questions feel free to mail me at one of those addresses.
Anyway.. on a side note I have a nice piece of software that should be available to ya’ll here soon. It has to do with CDMA Servicing
R.I.P Mega Upload
January 24th, 2012
Gassan As you all are probably already aware, MegaUpload has been taken down by the US Government. As you also may know, pretty much all the downloads here were hosted with them. I will try with my limited spare time to move all these downloads to another file provider.
Anyone have any suggestions?
Creating a Console Command / Task in Symfony2 with Doctrine
October 13th, 2011
Gassan This is a basic console command/task that you can create for your bundles in the Symfony2 framework. Tested with 2.0.4
First, create your console command class file in Symfony/src/<MyNamespace>/<MyBundle>/Command/<CommandName>Command.php
For example, if my namespace is Spliced and my bundle name is AwesomeBundle and the command I want to create is going to be called Awesome, then I would create this file:
Symfony/src/Spliced/AwesomeBundle/Command/AwesomeCommand.php
Now, set up your class to look like this, just replace your namespaces and bundles. I will use the above exampled namespace/bundle:
namespace Spliced\AwesomeBundle\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class AwesomeCommand extends ContainerAwareCommand
{
/**
* Initialize whatever variables you may need to store beforehand, also load
* Doctrine from the Container
*/
protected function initialize(InputInterface $input, OutputInterface $output)
{
parent::initialize($input, $output); //initialize parent class method
$this->em = $this->getContainer()->get('doctrine')->getEntityManager(); // This loads Doctrine, you can load your own services as well
}
/**
* Configure the task with options and arguments
*/
protected function configure()
{
parent::configure();
$this
->setName('spliced:awesome') // this is the command you would pass to console to run the command.
->setDescription('An example Awesome Command') // Your Description
// Add an Argument
->addArgument('argument_name', InputArgument::REQUIRED, 'Argument Description', 'Argument Default Value')
// Add an Option
->addOption('option', 'o', InputOption::PARAMETER_OPTIONAL, 'Option Description', 'Option Default Value'); // Add an Option
// Here are some parameter requirement constants: InputOption::PARAMETER_OPTIONAL, InputOption::PARAMETER_REQUIRED
}
/**
* Our console/task logic
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$options = $input->getOptions(); // load options passted from console
/* DO YOUR AWESOME STUFF HERE */
//get Doctrine EntityManager we initialized in the initialize method and get a Repository to do something useful maybe
# $this->em->getRepository('SplicedAwesomeBundle:AwesomeSauce')->getAllAwsomeSauce();
// Display Some Output
$output->writeln('My Awesome Task Did Some Pretty Awesome Stuff!');
}
}
Now if I were to go to a bash line in the Symfony root directory and use the command:
php app/console spliced:awesome
Then my console command will have been successfully executed. Good for when you need or prefer a command line routine.

Posted in
Tags: 
