Showing posts with label your. Show all posts
Showing posts with label your. Show all posts
Monday, March 9, 2015
Interact with your Google Docs List from Apps Script
We recently added a new feature to Apps Script: the ability to interact with your Google Docs List. With this new integration, scripts can create, rename, or move files and folders in your Google Docs. In addition, scripts can now create, modify, and clear plain-text files and search through your documents for a specified query string.
For instance, take a company whose website is hosted on Google Sites. They have a Specials page where they want to list seasonal sales depending on upcoming holidays. They store the details about the seasonal sales in plain-text files that are saved in their Google Docs List. By using the Google Docs List and and Sites services within Apps Script along with time-based triggers to run the script once per day, they can keep their Specials page updated automatically. Here’s a code snippet that demonstrates how to update the Specials page:

If this script is then set up to run using a trigger that calls it at the same time each day, then the Specials page will be kept automatically up-to-date.
To help you learn more, weve created a tutorial that demonstrates how to search and display information about files, create files, and read content from files.
Note that certain features of the DocsList service, such as creating files, are only available to Google Apps accounts. For complete information on interacting with your Google Docs List using Apps Script, see the DocsList Service documentation.
We look forward to seeing how you use this integration. If youd like to learn more about Apps Script and meet the Apps Script team in person, join us at the upcoming Apps Script hackathon in New York City on June 24.
Posted by Jan Kleinert, Google Developer Relations
Read more »
For instance, take a company whose website is hosted on Google Sites. They have a Specials page where they want to list seasonal sales depending on upcoming holidays. They store the details about the seasonal sales in plain-text files that are saved in their Google Docs List. By using the Google Docs List and and Sites services within Apps Script along with time-based triggers to run the script once per day, they can keep their Specials page updated automatically. Here’s a code snippet that demonstrates how to update the Specials page:
//The Mother’s Day sale runs from May 1 - May 7, 2011
var MOTHERS_DAY_START = new Date("May 1, 2011");
var MOTHERS_DAY_END = new Date("May 7, 2011");
//The Valentine’s Day sale runs from Feb 6 - Feb 13, 2011
var VALENTINES_DAY_START = new Date("February 6, 2011");
var VALENTINES_DAY_END = new Date("February 13, 2011");
function updateSpecials() {
var today = new Date();
var site = SitesApp.getSite("example.com", "giftshop");
// Get all the web pages in the Site
var pages = site.getWebPages();
// Loop through the web pages to find the specials page
for (var i = 0; i < pages.length; i++) {
if (pages[i].getPageName() == "specials") {
var page = pages[i];
}
}
// Set up the default wording for the specials page
var pageText = "There are no specials at this time.";
// If today’s date is within the Mother’s Day sale range
if (today >= MOTHERS_DAY_START && today <= MOTHERS_DAY_END) {
// Find the sale text that’s stored in the file mom.txt
pageText = DocsList.find("mom.txt")[0].getContentAsString();
}
// If today’s date is within the Valentine’s Day sale range
else if (today >= VALENTINES_START && today <= VALENTINES_END ) {
// Find the sale text that’s stored in the file valentines.txt
var pageText = DocsList.find("valentines.txt")[0].getContentAsString()
}
// Set the content of the specials page
page.setContent(pageText);
}

If this script is then set up to run using a trigger that calls it at the same time each day, then the Specials page will be kept automatically up-to-date.
To help you learn more, weve created a tutorial that demonstrates how to search and display information about files, create files, and read content from files.
Note that certain features of the DocsList service, such as creating files, are only available to Google Apps accounts. For complete information on interacting with your Google Docs List using Apps Script, see the DocsList Service documentation.
We look forward to seeing how you use this integration. If youd like to learn more about Apps Script and meet the Apps Script team in person, join us at the upcoming Apps Script hackathon in New York City on June 24.
Posted by Jan Kleinert, Google Developer Relations
Wednesday, February 25, 2015
How to Make Your Fonts Look Fancy in PowerPoint
I am just in love with the font options in PowerPoint! I used to do so many of these things in Photoshop, but doing it in PowerPoint makes it so much easier!

This was a definite winner on the poll!
For those of you who saw my previous tutorial on placing a pattern over your text, you can add these options on top of the pattern to make your font extra special! You can view that previous tutorial below:

Now... onto the tutorial!



You can download this tutorial as a PDF by clicking this picture!
As for next weeks poll, Im going to add a question that so many people often ask... how can I find "royalty-free" clipart, pictures, and textures for free? Be sure to vote for your favorite choice on the poll!
Read more »

This was a definite winner on the poll!

For those of you who saw my previous tutorial on placing a pattern over your text, you can add these options on top of the pattern to make your font extra special! You can view that previous tutorial below:

Now... onto the tutorial!



You can download this tutorial as a PDF by clicking this picture!

Note: This tutorial is hosted on Google Docs. To save it from there, just open the file and click File > Download to save onto your computer!
As for next weeks poll, Im going to add a question that so many people often ask... how can I find "royalty-free" clipart, pictures, and textures for free? Be sure to vote for your favorite choice on the poll!
Wednesday, February 4, 2015
Hard Reset your Torque Droidz Blast and remove password pattern lock and gmail account
This tutorial is for Torque Droidz Blast. Not the Torque Droidz Blast X. You can check out the official picture for your reference.

Hard resetting / factory resetting your phone will solve the following issues:
1. If you forgot your pattern lock
2. If you forgot your gmail account
3. If you forgot your password
4. Apps that automatically force closing
5. Stuck in Torque Logo (sometimes does not work if the firmware is totally damage)
NOTE: Performing hard reset will erase your data.
To hard reset:
1. Turn off your phone
2. Press and Hold VOLUME UP + Power button simultaneously. You must Press the Power Button first before pressing the VOLUME UP and wait until you see a phone with exclamation mark.
3. Press Power Button or Volume up to activate Android System Recovery (I forgot the exact button to press, but its either of the two button)
4. Select wipe / factory reset, press Volume rocker to navigate and press the Power Button to confirm your selection.
5. Reboot your phone.
Note: If performing hard reset did not succeed, you need to wipe the cache first in the android system recovery before performing wipe / factory reset.
I hope this tutorial helps you.. If you have any question just drop a comment. If you have time please can you confirm the button to activate the Android System Recovery, so I can update the blog post. Thank you.
Read more »

Hard resetting / factory resetting your phone will solve the following issues:
1. If you forgot your pattern lock
2. If you forgot your gmail account
3. If you forgot your password
4. Apps that automatically force closing
5. Stuck in Torque Logo (sometimes does not work if the firmware is totally damage)
NOTE: Performing hard reset will erase your data.
To hard reset:
1. Turn off your phone
2. Press and Hold VOLUME UP + Power button simultaneously. You must Press the Power Button first before pressing the VOLUME UP and wait until you see a phone with exclamation mark.
3. Press Power Button or Volume up to activate Android System Recovery (I forgot the exact button to press, but its either of the two button)
4. Select wipe / factory reset, press Volume rocker to navigate and press the Power Button to confirm your selection.
5. Reboot your phone.
Note: If performing hard reset did not succeed, you need to wipe the cache first in the android system recovery before performing wipe / factory reset.
I hope this tutorial helps you.. If you have any question just drop a comment. If you have time please can you confirm the button to activate the Android System Recovery, so I can update the blog post. Thank you.
Sunday, February 1, 2015
Hard Reset your Lenovo A690 and remove password pattern lock and gmail account
Lenovo phones are a bit rare in my area, but this Lenovo A690 came by with gmail account lock up. Ill be providing a tutorial to hard reset your Lenovo A690 this will be an easy one :D

Hard resetting / factory resetting your phone will solve the following issues:
1. If you forgot your pattern lock
2. If you forgot your gmail account
3. If you forgot your password
4. Apps that automatically force closing
5. Stuck in Lenovo Logo (sometimes does not work if the firmware is totally damage)
NOTE: Performing hard reset will erase your data.
To hard reset:
1. Turn off your phone.
2. Press and Hold VOLUME UP + Power button. Keep pressing the button until an Android robot appear in you screen. Press HOME capacitive key to activate Android System Recovery
3. Android System Recovery will appear.
4. Select wipe / factory reset, press Volume rocker to navigate and press the MENU Key (left capacitive key) to confirm your selection
5. Reboot your phone.
Note:
If performing hard reset did not succeed, you need to wipe the cache first in the android system recovery before performing wipe / factory reset.
I hope this tutorial helps you.. If you have any question just drop a
comment.
Read more »

Hard resetting / factory resetting your phone will solve the following issues:
1. If you forgot your pattern lock
2. If you forgot your gmail account
3. If you forgot your password
4. Apps that automatically force closing
5. Stuck in Lenovo Logo (sometimes does not work if the firmware is totally damage)
NOTE: Performing hard reset will erase your data.
To hard reset:
1. Turn off your phone.
2. Press and Hold VOLUME UP + Power button. Keep pressing the button until an Android robot appear in you screen. Press HOME capacitive key to activate Android System Recovery
3. Android System Recovery will appear.
4. Select wipe / factory reset, press Volume rocker to navigate and press the MENU Key (left capacitive key) to confirm your selection
5. Reboot your phone.
Note:
If performing hard reset did not succeed, you need to wipe the cache first in the android system recovery before performing wipe / factory reset.
I hope this tutorial helps you.. If you have any question just drop a
comment.
Friday, January 30, 2015
O 8 52 stock rom to unbrick your phone
Hey ho!,Im done uploading the stock rom for O+ 8.52... I have also uploaded a video on how to flash your O+ 8.52. After flashing your phone, make sure to hard reset your phone.

Firmware Here -->O+ 8.52
VCOM Driver -->VCOM Manual
Alternative Driver --> AutoInstaller
Alternative Driver --> AutoInstaller
SPFlashTool --> SPFlashTool
SPFlashTool --> LatestVersion
"Extract the files to your desired folder" See picture below"
"If you encounter error in flashtool, use different version of it."
Installing Driver
First try the Alternative Driver, which is the AutoInstaller. Just open the install.bat then it will automatically install the driver. Then proceed to flashing. If it did not work then proceed with VCOM driver that you had downloaded. Then install it manually follow the guide below.
Video Reference using Driver Auto Installer (watch in HD)
When installing it manually your phone must be turned off, then connect it to your computer/laptop while pressing VOLUME UP or VOLUME DOWN. This will detect and look for the driver.
1. This is the first time that you will connect your phone and it will search for the correct driver.
2. Check include this location ... ... and click on browse. Look for USB VCOM Driver and Click on 2K_XP_COM folder if you are using Windows XP or Win7 for Windows 7 and then press OK when you are done picking the right folder for the driver.
3. If the driver is successfully installed MediaTek DA USB VCOM will appear in the New Hardware Wizard.
Video Installing VCOM Driver (please watch in HD)
Video Flashing your phone (please watch in HD)
Your phone must be turned off when Flashing
Flashing
1. Launch FlashTool
2. Click on Scatter-Loading, and load your scatter file. (see example below with loaded file in Flash Tool
Video Reference Using FlashTool version 5.xxx (watch in HD)
3. After you load the file, press F9 or Press Download to Flash your Phone.
4. If Download is not possible, you can press Firmware Upgrade.
5. After you press Download or Firmware Upgrade re-insert your battery and connect your Phone to the PC. Press Volume Down or Volume Up while connecting to PC.
"Hard reset your phone after flashing"
I hope this tutorial help you. Please drop a comment if something is not clear to you.
Wednesday, January 28, 2015
Hard Reset your Alcatel One Touch Tab 7 HD and remove pattern lock password and gmail account
An Alcatel Tablet came into my workplace. It is the Alcatel One Touch Tab 7 HD. A tutorial to hard reset your tablet is coming your way ;)

Hard resetting / factory resetting your phone will solve the following issues:
1. If you forgot your pattern lock
2. If you forgot your gmail account
3. If you forgot your password
4. Apps that automatically force closing
5. Stuck in Alcatel Logo (sometimes does not work if the firmware is totally damage)
NOTE: Performing hard reset will erase your data.
To hard reset:
1. Turn off your tablet.
2. Press and Hold VOLUME UP + VOLUME DOWN + Power button. Release the power Button only when the tablet power up. Just wait until the Android Robot appear.
3. To activate Android System Recovery, press VOLUME UP and POWER button simultaneously. Keep pressing until the Android System Recovery appear.
4. Select wipe / factory reset, press Volume rocker to navigate and press the Power Button to confirm your selection.
4. Reboot your tablet.
Note: If performing hard reset did not succeed, you need to wipe the cache first in the android system recovery before performing wipe / factory reset.
I hope this tutorial helps you.. If you have any question just drop a comment.
Read more »

Hard resetting / factory resetting your phone will solve the following issues:
1. If you forgot your pattern lock
2. If you forgot your gmail account
3. If you forgot your password
4. Apps that automatically force closing
5. Stuck in Alcatel Logo (sometimes does not work if the firmware is totally damage)
NOTE: Performing hard reset will erase your data.
To hard reset:
1. Turn off your tablet.
2. Press and Hold VOLUME UP + VOLUME DOWN + Power button. Release the power Button only when the tablet power up. Just wait until the Android Robot appear.
3. To activate Android System Recovery, press VOLUME UP and POWER button simultaneously. Keep pressing until the Android System Recovery appear.
4. Select wipe / factory reset, press Volume rocker to navigate and press the Power Button to confirm your selection.
4. Reboot your tablet.
Note: If performing hard reset did not succeed, you need to wipe the cache first in the android system recovery before performing wipe / factory reset.
I hope this tutorial helps you.. If you have any question just drop a comment.
Remove password pattern lock gmail account in your Torque Droidz Avatar TV
Alright another tutorial for Torque, and this one is for Torque Droidz Avatar TV. This phone is like Galaxy S3.

Hard resetting / factory resetting your phone will solve the following issues:
1. If you forgot your pattern lock
2. If you forgot your gmail account
3. If you forgot your password
4. Apps that automatically force closing
5. Stuck in Torque Logo (sometimes does not work if the firmware is totally damage)
NOTE: Performing hard reset will erase your data.
To hard reset:
1. Turn off your phone
2. Press and Hold Volume UP +Power Button simultaneously
3. An Android with exclamation mark will appear, Press Power Button to activate recovery mode
4. Select wipe / factory reset, to navigate press the Volume DOWN, to select press VOLUME UP
5. Reboot your phone.
Note: If performing hard reset did not succeed, you need to wipe the cache first in the android system recovery before performing wipe / factory reset.
I hope this tutorial helps you.
Read more »

Hard resetting / factory resetting your phone will solve the following issues:
1. If you forgot your pattern lock
2. If you forgot your gmail account
3. If you forgot your password
4. Apps that automatically force closing
5. Stuck in Torque Logo (sometimes does not work if the firmware is totally damage)
NOTE: Performing hard reset will erase your data.
To hard reset:
1. Turn off your phone
2. Press and Hold Volume UP +Power Button simultaneously
3. An Android with exclamation mark will appear, Press Power Button to activate recovery mode
4. Select wipe / factory reset, to navigate press the Volume DOWN, to select press VOLUME UP
5. Reboot your phone.
Note: If performing hard reset did not succeed, you need to wipe the cache first in the android system recovery before performing wipe / factory reset.
I hope this tutorial helps you.
Saturday, January 24, 2015
O 8 36z firmware stock rom to unbrick your phone
This firmware is for O+ 8.36z, you can flash this firmware / stock rom via Flashtool. It has already the CWM or Clock Work Mod Recovery, so if you cant to install custom you can use it.

Firmware Here -->O+ 8.36z
"Extract the files to your desired folder" See picture below"
"If you encounter error in flashtool, use different version of it."
Installing Driver
First try the Alternative Driver, which is the AutoInstaller. Just open the install.bat then it will automatically install the driver. Then proceed to flashing. If it did not work then proceed with VCOM driver that you had downloaded. Then install it manually follow the guide below.
Video Reference using Driver Auto Installer (watch in HD)
When installing it manually your phone must be turned off, then connect it to your computer/laptop while pressing VOLUME UP or VOLUME DOWN. This will detect and look for the driver.

1. This is the first time that you will connect your phone and it will search for the correct driver.


3. If the driver is successfully installed MediaTek DA USB VCOM will appear in the New Hardware Wizard.
Video Flashing your phone (please watch in HD)
Flashing

Video Reference Using FlashTool version 5.xxx (watch in HD)
3. After you load the file, press F9 or Press Download to Flash your Phone.
"Hard reset your phone after flashing"
I hope this tutorial help you. Please drop a comment if something is not clear to you.
Read more »

Firmware Here -->O+ 8.36z
VCOM Driver -->VCOM Manual
Alternative Driver --> AutoInstaller
Alternative Driver --> AutoInstaller
SPFlashTool --> SPFlashTool
SPFlashTool --> LatestVersion
"Extract the files to your desired folder" See picture below"
"If you encounter error in flashtool, use different version of it."
Installing Driver
First try the Alternative Driver, which is the AutoInstaller. Just open the install.bat then it will automatically install the driver. Then proceed to flashing. If it did not work then proceed with VCOM driver that you had downloaded. Then install it manually follow the guide below.
Video Reference using Driver Auto Installer (watch in HD)
When installing it manually your phone must be turned off, then connect it to your computer/laptop while pressing VOLUME UP or VOLUME DOWN. This will detect and look for the driver.
1. This is the first time that you will connect your phone and it will search for the correct driver.
2. Check include this location ... ... and click on browse. Look for USB VCOM Driver and Click on 2K_XP_COM folder if you are using Windows XP or Win7 for Windows 7 and then press OK when you are done picking the right folder for the driver.
3. If the driver is successfully installed MediaTek DA USB VCOM will appear in the New Hardware Wizard.
Video Installing VCOM Driver (please watch in HD)
Video Flashing your phone (please watch in HD)
"Your Phone must be turned off when you are ready to connect and flash your phone"
Flashing
1. Launch FlashTool
2. Click on Scatter-Loading, and load your scatter file. (see example below with loaded file in Flash Tool
Video Reference Using FlashTool version 5.xxx (watch in HD)
3. After you load the file, press F9 or Press Download to Flash your Phone.
4. If Download is not possible, you can press Firmware Upgrade.
5. After you press Download or Firmware Upgrade re-insert your battery and connect your Phone to the PC. Press Volume Down or Volume Up while connecting to PC.
"Hard reset your phone after flashing"
I hope this tutorial help you. Please drop a comment if something is not clear to you.
Friday, January 23, 2015
Check Your Antivirus Is Working Or Not


Your Antivirus is Working Or Not?
Asalam o Alaikum Friends!!!
Dosto aaj main ap Logo k leye aik Boht achi Tip lain kar aya hou jis ki Madad se ap jan sake ge k Ap ka Antivirus Work kerha hai k nahi??
To Dosto is k leye kerna ye hoga k Niche dye gaye CODE ko Notepad main Write kar k Check Virus.exe k Name se Save kerna kesi b folder main, Ager wo file Save hote he Delete hojaye toh ap ka Antivirus Work kerha hain, or ager wo file Delete na hou toh ap ka Antivirus work nahi kerha ha.
I hope ap ko ye Tip passand aye hogi, ager ap ko ye Tip passand aye hai to Comments kerna mat Bohlye ga :)
♥ Code ♥
X5O!P%@AP[4PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
Tuesday, January 20, 2015
Remove password pattern lock gmail account in your Samsung Galaxy Note 3 N9000
Reset your gigantic Samsung Galaxy Note 3 N9000.

Hard resetting / factory resetting your phone will solve the following issues:
1. If you forgot your pattern lock
2. If you forgot your gmail account
3. If you forgot your password
4. Apps that automatically force closing
5. Stuck in Samsung Logo (sometimes does not work if the firmware is totally damage)
NOTE: Performing hard reset will erase your data.
To hard reset:
1. Turn off your phone
2. Press and Hold Volume UP + Home Button + Power Button simultaneously
3. Release the buttons when you see the Samsung Galaxy Logo
4. Android System Recovery should appear
5. Select wipe / factory reset, to navigate press the Volume Rocker, to select press the Power Button
6. Reboot your phone.
Note: If performing hard reset did not succeed, you need to wipe the cache first in the android system recovery before performing wipe / factory reset.
I hope this tutorial helps you Samsung Galaxy Note 3 users :)
Read more »

Hard resetting / factory resetting your phone will solve the following issues:
1. If you forgot your pattern lock
2. If you forgot your gmail account
3. If you forgot your password
4. Apps that automatically force closing
5. Stuck in Samsung Logo (sometimes does not work if the firmware is totally damage)
NOTE: Performing hard reset will erase your data.
To hard reset:
1. Turn off your phone
2. Press and Hold Volume UP + Home Button + Power Button simultaneously
3. Release the buttons when you see the Samsung Galaxy Logo
4. Android System Recovery should appear
5. Select wipe / factory reset, to navigate press the Volume Rocker, to select press the Power Button
6. Reboot your phone.
Note: If performing hard reset did not succeed, you need to wipe the cache first in the android system recovery before performing wipe / factory reset.
I hope this tutorial helps you Samsung Galaxy Note 3 users :)
Sunday, January 18, 2015
Hard Reset your SKK Phoenix and remove password pattern lock gmail account
An SKK tablet came into my workplace and made a tutorial on how to hard reset your SKK Phone+. This tablet has a MTK 6582 chipset, and I also made a back up of its ROM. I will upload it the ROM when Im done uploading with my pending uplaods. To hard reset your tablet check out the tutorial below.

Hard resetting / factory resetting your phone will solve the following issues:
1. If you forgot your pattern lock
2. If you forgot your gmail account
3. If you forgot your password
4. Apps that automatically force closing
5. Stuck in SKK Logo (sometimes does not work if the firmware is totally damage)
NOTE: Performing hard reset will erase your data.
To hard reset:
1. Turn off your tablet
2. Press and Hold first the POWER Button and then immediately Press and HOLD VOLUME DOWN, it will enter in factory mode
3. Factory Mode, select the chinese character with eMMC on it.
4. Wait for it to erase the data in your tablet, it will take about 3 to five minutes and It will automatically reboot.
5. If it did not automatically reboot, you can press the power button until your tablet power off.Note:
If performing hard reset did not succeed, you need to wipe the cache first in the android system recovery before performing wipe / factory reset.
I hope this tutorial helps you.. If you have any question just drop a comment.
Read more »

Hard resetting / factory resetting your phone will solve the following issues:
1. If you forgot your pattern lock
2. If you forgot your gmail account
3. If you forgot your password
4. Apps that automatically force closing
5. Stuck in SKK Logo (sometimes does not work if the firmware is totally damage)
NOTE: Performing hard reset will erase your data.
To hard reset:
1. Turn off your tablet
2. Press and Hold first the POWER Button and then immediately Press and HOLD VOLUME DOWN, it will enter in factory mode
3. Factory Mode, select the chinese character with eMMC on it.
4. Wait for it to erase the data in your tablet, it will take about 3 to five minutes and It will automatically reboot.
5. If it did not automatically reboot, you can press the power button until your tablet power off.Note:
If performing hard reset did not succeed, you need to wipe the cache first in the android system recovery before performing wipe / factory reset.
I hope this tutorial helps you.. If you have any question just drop a comment.
Subscribe to:
Posts (Atom)