Showing posts with label how. Show all posts
Showing posts with label how. Show all posts

How do we prepare the students of today to be tomorrow’s digital leaders

| 0 comments |

(Cross-posted on the Google for Education Blog.)

Editors note: To understand the extent to which the skills taught in education systems around the world are changing, and whether they meet the needs of employers and society more widely, Google commissioned research from The Economist Intelligence Unit (EIU). The EIU surveyed senior business executives, teachers and students. The key findings of the survey and the main issues raised by educators and students were discussed by a diverse panel at the opening session of Education on Air, the free online conference from Google on May 8th. Read the full report here.

With rapidly evolving business needs, technological advances and new work structures, the skills that will be needed in the future are shifting. In response to these changes, policymakers, educators and experts around the world are rethinking their education systems.

During Education on Air a panel of education experts participated in a discussion aimed at understanding how to best adapt education systems to the skills needs of the future:

  • Ken Shelton, Educator, Trainer & Google Certified Teacher, USA 
  • Jaime Casap, Global Education Evangelist, Google, USA 
  • Jouni Kangasniemi, Special Adviser to the Ministry of Education & Culture, Finland 
  • Nicole, a secondary student from Isle of Portland Aldridge Community Academy, UK 
  • Zoe Tabary, Editor, Economist Intelligence Unit, UK 

The panel considered how to best help students learn and adopt the skills and attitudes that employers in the increasingly digital and networked economy require.

According to the EIUs research report, sponsored by Google for Education and presented by EIU editor Zoe Tabary during Education on Air, problem-solving, teamwork and communication are the most needed skills in the workplace.
                   This video provides a short summary of the report from the Economist Intelligence Unit.

But it seems that education systems have not yet responded to this demand; only a third of executives say they’re satisfied with the level of attainment of young people entering the workplace. Even more striking is that 51% of executives say a skills gap is hampering their organisations performance. Students and educators paint a similar picture.

Panelists echoed the EIU research by suggesting that education systems often lack the capacity to teach a wider range of skills—namely problem-solving, digital literacy, leadership and creativity—that would complement more conventional skills, such as numeracy and literacy. Time constraints, lack of flexibility and a reluctance to innovate with the curriculum are a few of the causes mentioned. For Jouni Kangasniemi, senior advisor to Finlands Ministry of Education and Culture, the key question was how to really embed these skills throughout the curriculum rather than just add them to the mix of skills and subjects.

Progress is being made, however, and panelists shared examples of how the education system is adapting to changing demands. Examples from the Finnish education system, presented by Mr Kangasniemi, suggest that learning results in this area improve when teachers have a certain degree of freedom and trust to adjust the curriculum to the learning styles of the students. Teaching becomes more personalised and student-focused, and supports learning, with questions exchanged collaboratively between teachers and students rather than teachers simply presenting answers and facts.

Technology also has a central role in skills development. According to the EIU research, 85% of teachers report that IT advances are changing the way they teach—but only 23% of 18-25-year-olds think their education system is very effective at making full use of the technologies now available. With the pace of technological change accelerating, education systems should respond by offering training and platforms for teachers that effectively use technology and better equip students for both today’s and tomorrow’s workplace.

Jaime Casap, global education specialist at Google, stressed the need to focus on teaching mindsets, rather than skills. "Skills can become obsolete—there is a finite timeline when they can be used or applied," Casap argues, whereas an inquisitive approach that seeks to solve problems will always be necessary, no matter what issues humanity will need to grapple with in the future. The question is how we can build a culture and environment—and education models—that prepare students to meet any challenge as future digital leaders.

Read the full report: “The skills agenda: Preparing students for the future.”


Read More..

Chrome Live How Chrome is shifting the device landscape

| 0 comments |


Today at Chrome Live, we showed how Chrome continues to make the way we work faster, simpler and more secure, while businesses like Netflix, Pinterest and Chico’s shared how Chrome for Work is bringing innovation to their workplaces.


We also announced new Chrome products and features that make it simpler to bring Chrome to work, including:

  • Chromebook integration with Box for more ways to bring your files to the cloud: Now, you can seamlessly access your Box documents from a Chromebook, just as you would access your local documents. This means that with your Chromebook, you’ll have access to even more applications, no matter where you are.
  • Bringing face-to-face meetings to larger rooms: Last year, we launched Chromebox for meetings so you can have face-to-face conversations with colleagues in remote offices and still feel like you’re in the same room. Today, we announced a new version of Chromebox for meetings that powers meeting rooms fitting up to twenty people. The hardware in the bundle includes a Chromebox powered by Dell, Asus, and HP, a pan tilt zoom camera, and more; just bring your own display. From huddle rooms to large conference rooms, you can now affordably bring video meetings to more office spaces.
  • Improvements to Chrome management for Chrome-dedicated devices: A few weeks ago, we announced over a dozen Chrome partners in the digital signage space. We’ve also improved ongoing reporting to monitor the health of your kiosks and signage at all times. You’ll get alerts from Chrome management if a screen goes down and can remotely reboot the device to get it back online without dispatching a technician. You can also get live updates about system usage and capture screen grabs to see exactly what viewers see.
  • Bringing Chrome management pricing flexibility to more places: We’re adding pricing flexibility to Chromebook management at a subscription fee of $50/year and announcing availability in seven new countries: Japan, Australia, New Zealand, Thailand, India, UK and France.

If you weren’t able to attend the live session, you can still watch the event on demand. Feel free to share your thoughts, impressions and questions using #chromelive15 on social media.

Read More..

How to Generate a kernel log after random reboot

| 0 comments |
Once in a while, a software bug in the kernel will cause a random reboot, so in order to help kernel developers to fix and troubleshoot the reboots, a kernel log need to be submitted to the developer for further analysis and hopefully lead to a bug fix.

Most Android kernels have "RAM Consoles" to save the necessary kernel logs immediately after reboot in the RAM.  The users can then retrieve this RAM log on a subsequent reboot to submit to kernel developers. Here is a quick tour on how to do that.


[ Using ADB ]
  1. adb shell
  2. su
  3. cat /proc/last_kmsg > /sdcard/last_kmsg.txt
  4. exit
  5. exit
  6. adb pull /sdcard/last_kmsg.txt
File last_kmsg.txt will be located in the same location as adb.exe executable.


[ Using android terminal app ]
  1. su
  2. cat /proc/last_kmsg > /sdcard/last_kmsg.txt
  3. exit
  4. exit
  5. adb pull /sdcard/last_kmsg.txt
File last_kmsg.txt will be located on your SD-card.


[ Using Root Explorer / ES Explorer with Root ]
  1. go to /proc folder
  2. copy last_kmsg to /sdcard/
  3. rename last_kmsg to last_kmsg.txt
File last_kmsg.txt will be located on your SD-card.

The best method to share the last_kmsg.txt content is to upload it to pastebin.com and send a link to the developer.

Source: faux123 (Google +)

Have any questions or comments? Feel free to share! Also, if you like this article, please use media sharing buttons (Twitter, G+, Facebook) below this post!
Read More..

How to check if the phone is connected to the Internet

| 0 comments |
to check whether your phone is connected to the Internet, use the following code:
ConnectivityManager con=(ConnectivityManager)getSystemService(Activity.CONNECTIVITY_SERVICE);
boolean wifi=con.getNetworkInfo(ConnectivityManager.TYPE_WIFI).isConnectedOrConnecting();
boolean internet=con.getNetworkInfo(ConnectivityManager.TYPE_MOBILE).isConnectedOrConnecting();

these lines check for internet connection whether it is through WiFi or Mobile Internet.

you need to add the following permission to the AndroidManifest.xml file
<uses-permission android_name="android.permission.ACCESS_NETWORK_STATE" />

Another method is what our freind Kevin mentioned in the comments, is to check if a certain website is reachable or not like this:
public static boolean isOnline() {
try {
InetAddress.getByName("google.ca").isReachable(3);
return true;
} catch (UnknownHostException e){
return false;
} catch (IOException e){
return false;
}
}

we check if a site is reachable within a certain timeout or not.
Read More..

How a culture of collaboration sparks new ideas Q A with PwC

| 0 comments |
Editors note: As we ramp up for Atmosphere15, we’re sharing a few sneak peeks from some of the disruptors joining us as speakers. Today, we speak with Deborah Bothun, US Entertainment, Media and Communications Leader for PwC. Register here for the June 2nd (in North and South America and Europe) and 3rd (in Asia Pacific) event, where Deborah and leaders from Pierre Herme Paris and Waitrose share insights on inspiring productive teams. 

Innovation’s a buzzword today that means a lot of different things to different companies. Whats one essential element of innovation for your team?

In my role at PwC, I have the pleasure of launching numerous primary research studies each year. Consumers, who view organizations with both the employee and consumer lens, tell us that innovation and collaboration are the two most influential attributes affecting employee and consumer experiences. Consumers also tell us that the differentiator is the actual vision of what your company can accomplish as a result of innovation and collaboration. And interestingly enough, CEOs around the world are telling us the exact same thing. This year, 68% of the CEOs we surveyed said that collaboration is one of the top three ways to create value in an organization.

Last October, PwC announced adoption of Google for Work for 45,000 employees in the U.S. and Australia. What was the process for adopting Google Apps across the company?

Our people solve complex problems as advisors to our clients, so we leveraged problem solving to launch Google Apps. As part of our launch plan, we developed a series of innovation workshops. where we tasked teams with solving real business challenges using the tools in the Apps suite. They were asked to create new ways to save time and add efficiency to current processes. And we discovered that better tools for collaboration did indeed help teams to be more creative and inspired. In fact, each workshop produced an average of 100-175 new ideas from the challenges.

How has using Google Apps affected the culture at PwC?

We all talk about collaboration, but it’s not easy to do. Everyone needs to get involved and leverage Google Apps to make the cultural shift towards collaboration. By giving our teams the tools to collaborate, we’re helping them to create and compete in news ways.

Join Deborah and leaders from Pierre Herme Paris and Waitrose in more discussion on collaboration and productive teams at Atmosphere, on June 2nd (in North and South America and Europe) and June 3rd (in Asia Pacific). Register here.
Read More..

How to Copy ROM zip file to the freshly wiped device

| 0 comments |

Have you ever been in a situation where you mistakenly (or not) wiped the content of the internal storage (including system partition and virtual SD card) on your phone or tablet and unfortunately it doesnt support external storage? Now you cant flash desired custom ROM because you removed it and the device cant be booted due to wiped system partition. Dont worry - its very easy to fix!

Here are the steps you need to follow to copy the correct rom.zip package to your internal storage:
  1. Download this mini-sdk package and extract it to c:mini-sdk
  2. Rename the custom ROM package you want to flash to "rom.zip" and copy it to c:mini-sdk
  3. Connect your device to the PC
  4. Boot your device in recovery mode
  5. Open a command prompt on the PC (cmd.exe), type and confirm each command with ENTER:
  6. cd /d c:mini-sdk
  7. adb shell
  8. mount /data (error might mean that /data partition is already mounted)
  9. on Android 4.2 and above: mkdir -p /data/media/0
  10. on Android 4.1.2 and below: mkdir -p /data/media
  11. exit
  12. on Android 4.2 and above: adb push rom.zip /data/media/0
  13. on Android 4.1.2 and below: adb push rom.zip /data/media
  14. Wait for a few minutes until the file is copied. It will looks like command shell is not responding, but that means its still copying. Wait patiently until youll see blinking cursor again.
  15. Depends on your custom recovery, use the navigation keys to flash the custom rom.zip package in a typical way you used to flash custom ROMs. It should be on your internal storage now. Done!
Have any questions or comments? Feel free to share! Also, if you like this article, please use media sharing buttons (Twitter, G+, Facebook) below this post!
Read More..

NoHacked How to avoid being the target of hackers

| 0 comments |

Originally posted by the Webmaster Central Blog.

If you publish anything online, one of your top priorities should be security. Getting hacked can negatively affect your online reputation and result in loss of critical and private data. Over the past year Google has noticed a 180% increase in the number of sites getting hacked. While we are working hard to combat this hacked trend, there are steps you can take to protect your content on the web.

This week, Google Webmasters has launched a second #NoHacked campaign. We’ll be focusing on how to protect your site from hacking and give you better insight into how some of these hacking campaigns work. You can follow along with #NoHacked on Twitter and Google+. We’ll also be wrapping up with a Google Hangout focused on security where you can ask our security experts questions.

We’re kicking off the campaign with some basic tips on how to keep your site safe on the web.

1. Strengthen your account security

Creating a password that’s difficult to guess or crack is essential to protecting your site. For example, your password might contain a mixture of letters, numbers, symbols, or be a passphrase. Password length is important. The longer your password, the harder it will be to guess. There are many resources on the web that can test how strong your password is. Testing a similar password to yours (never enter your actual password on other sites) can give you an idea of how strong your password is.

Also, it’s important to avoid reusing passwords across services. Attackers often try known username and password combinations obtained from leaked password lists or hacked services to compromise as many accounts as possible.

You should also turn on 2-Factor Authentication for accounts that offer this service. This can greatly increase your account’s security and protect you from a variety of account attacks. We’ll be talking more about the benefits of 2-Factor Authentication in two weeks.

2. Keep your site’s software updated

One of the most common ways for a hacker to compromise your site is through insecure software on your site. Be sure to periodically check your site for any outdated software, especially updates that patch security holes. If you use a web server like Apache, nginx or commercial web server software, make sure you keep your web server software patched. If you use a Content Management System (CMS) or any plug-ins or add-ons on your site, make sure to keep these tools updated with new releases. Also, sign up to the security announcement lists for your web server software and your CMS if you use one. Consider completely removing any add-ons or software that you dont need on your website -- aside from creating possible risks, they also might slow down the performance of your site.

3. Research how your hosting provider handles security issues

Your hosting provider’s policy for security and cleaning up hacked sites is in an important factor to consider when choosing a hosting provider. If you use a hosting provider, contact them to see if they offer on-demand support to clean up site-specific problems. You can also check online reviews to see if they have a track record of helping users with compromised sites clean up their hacked content.

If you control your own server or use Virtual Private Server (VPS) services, make sure that you’re prepared to handle any security issues that might arise. Server administration is very complex, and one of the core tasks of a server administrator is making sure your web server and content management software is patched and up to date. If you dont have a compelling reason to do your own server administration, you might find it well worth your while to see if your hosting provider offers a managed services option.

4. Use Google tools to stay informed of potential hacked content on your site

It’s important to have tools that can help you proactively monitor your site.The sooner you can find out about a compromise, the sooner you can work on fixing your site.

We recommend you sign up for Search Console if you haven’t already. Search Console is Google’s way of communicating with you about issues on your site including if we have detected hacked content. You can also set up Google Alerts on your site to notify you if there are any suspicious results for your site. For example, if you run a site selling pet accessories called www.example.com, you can set up an alert for [site:example.com cheap software] to alert you if any hacked content about cheap software suddenly starts appearing on your site. You can set up multiple alerts for your site for different spammy terms. If you’re unsure what spammy terms to use, you can use Google to search for common spammy terms.

We hope these tips will keep your site safe on the web. Be sure to follow our social campaigns and share any tips or tricks you might have about staying safe on the web with the #NoHacked hashtag.

If you have any additional questions, you can post in the Webmaster Help Forums where a community of webmasters can help answer your questions. You can also join our Hangout on Air about Security on August 26th.

Posted by Eric Kuan, Webmaster Relations Specialist and Yuan Niu, Webspam Analyst

Read More..

How to Add RAM Android Phone With Micro SD Card

| 0 comments |

How to Add RAM Android Phone With Micro SD Card
How to Add RAM Android Phone With Micro SD Card
Ok it was a very interesting title for Android phone users
REMEMBER! REMEMBER!
This is a great site I hahahah ..
all tested …
take it easy …
hahah ..
Could it be the added RAM android?????


Answer: MAY ONCE, in a language called in VIRTUALKAN

Android is the Operating System also Category LINUX
This has advantages SWAP

If you’ve heard in the language of its windows is Virtual Memory

Swap / Virtual Memory are the empty parts of something that will replace the work room aka RAM Random Access Memory.

Why I write this way?????? Because now a lot of gadgets android that has even a very small RAM Small

REMEMBER EVERY ARTICLE ON THIS SITE ARE TESTED GOOD

How to Add RAM Android Phone With Micro SD Card
How to Add RAM Android Phone With Micro SD Card
Ok Immediately!

Tools needed:
1. Surely the HP android itself
2. Laptop
3. Mini Tool Partition software on a computer <<<< can be found in Google search
4. I suggest a minimum of a micro SD 8GB with Class 10 Class <<< Remember not underneath

Step-by-Step:

Micro SD backups of the contents of his

1. Micro SD input to the computer to be detected
2. Open Mini Tool Partition
3. Click Right on Disk Micro SD which looks at Mini Tool Partition Delete >>>> YES >>>
4. Click Right On Disk Micro SD which looks at Mini Tool Partition into Unallocated already
5. Then select the CREATE

6. My question is What is the capacity of your SD Micro?????
To create a Virtual Ram because we had to sacrifice his capacity as needed
According to my experiments 300MB victims would be around 15-20 mb Virtual Ram

So if you are android Ram 200MB and 300MB capacities clicking sacrifice Micro SD Card then it became like my calculation is:

200 + 15 = 215MB RAM

Therefore I suggest to Have Micro SD Card More than 4 GB / minimal 8 GB with Class 10
Why do I say Class 10 >>> because RAM requires that EXTRA Speed ​​to run the application.

Once you Think We then further steps

7. NO we Pricing of Step 5. If you choose to forego 1 GB or 1024MB
Then after you choose create the data contents with the following

Create As: Primary
Drive Letter: (blank)
File System: Linux Swap
Cluster Size: Default

Size And Location: (drag to position the one you want according to the example above 1gb pull up volume)

8. Click OK and YES and wait a few moments

Click on the right after the partition just created and then click the Modify followed by click the Set Active

9. Do it again that way as above right click the drive that was unallocated and click Create
But the contents of the following settings:

Create As: Primary
Drive Letter: D
File System: FAT
Cluster Size: Default

Size And Location: (not change)

10. Then OK and YES

AS THEY APPLY TO ALL THEN CLICK RIGHT CORNER MINI SOFTWARE TOOL PARTITION and the klick YES WAIT A WHILE

11. Back to the Data Input Micro SD you have a backup that was in the
12. Micro SD input to HP Android all friends

13. After HP flame Wait for about 1-3 minutes each is to enhance

14. TARAAAA!!!!!!! I’ve tried AND SUCCESSFUL
CURRENT APPLICATIONS OPEN TO OPENING GAME
WHEN MY ORIGINAL ONLY 152mb RAM

ASK IF LESS CLEAR IN THE COMMENT field below

Note: Sometimes a little bit of lag if you suddenly decrease the speed of Micro SD! Therefore make sure you are actually using class 10
How to Add RAM Android Phone With Micro SD Card
Read More..