Showing posts with label internet. Show all posts
Showing posts with label internet. Show all posts

Thursday, 30 January 2014

Why IT Job Search is Getting Harder

5 reasons why your IT 

job search is getting 

harder.

The IT job market is slowing down, use of contingency workers is picking up, and Congress has an unfinished fight ahead on the H-1B visa.
In sum, this is going to be an interesting year for IT employment, politically and on the job front.
In quick summary, here are five of the major IT hiring trends.
1. More electrical engineers do their own thing
IEEE-USA data shows that the number of electrical engineers declined by 35,000 last year, or about 10.5%.
What happened to them? This anecdote may give an idea of where electrical engineers are heading: Approximately 120,000 people attended a Maker Faire in the Bay Area last year, which draws many who are do-it-yourself (DIY) inclined.
An attendee study, commissioned by Maker Media, which runs the event, found that 31% of the attendees identified themselves as engineers. The five top areas of interest at the event were science, electronics, robotics, 3D printing and innovation.
Some engineers may have moved into management consulting, software engineering and other IT occupations. U.S. Labor Department data doesn't show where these workers may have ended up, if anywhere. But last year, government data reported that 15,000 electrical engineers were unemployed.
Employers, increasingly, are hiring workers on a contingent or contract basis, say IT labor analysts. IT research firm Computer Economics said the use of contingent workers is at its highest since 1998.
2. IT job growth slides
IT labor analysts agree that the pace of IT job creation began to slow late last summer. They don't agree on the number of jobs created in 2013, but that's because some use a broad set of labor occupations to track IT hiring, and others a more narrow set. But the hiring trend is clear.
TechServe Alliance, an industry group, said there were 197,000 IT jobs created in 2013. At the low end, Janco Associates puts this figure at 74,900. In the middle is Foote Partners, which said 128,500 jobs were added. Foote said that in the last five months of 2013, the pace of hiring declined by 60%.
The economy gets the blame for the slowdown in hiring. Victor Janulaitis, Janco's CEO, points to the declining labor participation rate, which fell last month to 62.8%, or 3.3 million fewer people in the labor force since 2007. This decline includes all occupations, but is nonetheless "causing many companies to consider whether they should expand IT staffs," said Janulaitis, in recent commentary about the hiring data.
3. Salaries flat for computer science majors
The average starting salary for humanities and social science majors who graduated in 2013 increased 2.9%, the National Association of Colleges and Employers recently reported.

Wednesday, 29 January 2014

How to publish an App to Android App Market


Publish the app created with App Inventor in the Android Market

Publish the app created with App Inventor in the Android Market

We succeded and the guide should be final.

What I'm about to describe is created to overcome the impossibility of publishing apps created with App Inventor in the Android Market

What you need:

  • 1.6 Java Development Kit and Runtime Environment 1.6 already installed on your PC
  • Android SDK already installed and running
  • Appinventor Extras
  • APKTool
  • Auto-Sign 6.5
  • .... A lot of Patience


1) Creating the key

This procedure is a one-off and we don't need to do those steps every time.

So, thanks to the JAVA SDK we will create a private key, which will be used for publishing our applications

From the Bin folder of the Java SDK we'll execute in a terminal:

codice:
keytool.exe -genkey -v -keystore my-release-key.keystore -alias aliasname -keyalg RSA -keysize 2048 -validity 10000
The Market requires that applications need to publish the private key has a duration subsequent to October 22, 2033, so we'll use a validity of 10000 days (over 27 years!).

2) Customize the Icon of the application

Download the APK file on a local folder on your computer.

We'll use AutoSigner for those steps: (thanks to Marcor Online info@marcoronline.tk for this part).
Open the apk file with 7zip.
Delete META-INF folder (which is the folder where the application contains the certificates, no longer valid after the change).
The images are generally stored in the folder res\drawable, and in particular the icon of the program is called ya.png. Extract all the images you want with your favorite software (we use 7zip).
Be careful not to change the size in pixels and not to change the name and extension.
Once you have completed the changes you go to put the files again into the apk (using 7zip) by simply dragging and overwriting the original.
Close 7zip and rename your program Launcher.apk.
Extract the contents of the Auto-Sign v0.65.exe and copy the Launcher.apk file inside the folderAuto-Sign\update\app.
Run the tool by the Auto-Sign v0.65.exe executable and iselect from the drop down menùLauncher.apk. (The name should been green. If not, you've made something wrong.)
Now click on Autosign and in a few seconds you'll get a confirmation message.
Inside the folder Auto-Sign\update\app will be a Launcher_signed.apk. You can delete the old file and keep only the signed one.

3) Edit the APK to be compatible with the Market

Decompile our apk

codice:
apktool -s pre-nomeapk.apk
in the just created folder called pre-nomeapk, go editing the AndroidManifest.xml file.

First we add the version of the application by adding the keyword "android: versionCode" and "android: versionName" in the keyword "package", just like this example:

codice:
<? xml version = "1.0" encoding = "UTF-8"?>
<manifest xmlns: android = "http://schemas.android.com/apk/res/android"
package = "appinventor.xyz.xyz"
android:versionCode = "1"
android:versionName = "1.0">
Specify the minimum version of Android is needed to run the application. Beware that the Market has a bug at the moment, and does not support applications compiled for Froyo android 2.2. Consider the following table:

codice:
API Level -> Android Platform Version
1 -> 1.0
2 -> 1.1
3 -> 1.5
4 -> 1.6
5 -> 2.0
6 -> 2.0.1
7 -> 2.1
8 -> 2.2
If your application needs Eclair we enter the following keyword:
codice:
<uses-sdk android:minSdkVersion="7" />
Finally fix the last things needed to make compatible the apk to the Market

Remove the android:icon keyworld on this line:

codice:
<activity android:label="123" android:icon="@drawable/ya" android:name=".Screen1">
and add it in this line:

codice:
<application android:label="XXXXX" android:debuggable="true">
Also on the line relative to the "application", remove the key "android_: debuggable"

In the end the AndroidManifest.xml will result like this:

codice:
<? xml version = "1.0" encoding = "UTF-8"?>
<manifest xmlns: android = "http://schemas.android.com/apk/res/android"
package = "appinventor.xyz.xyz"
android:versionCode = "1"
android:versionName = "1.0">
<uses-sdk android:minSdkVersion="3" />
......
<application android:label="XXXX" android:icon="@drawable/ya">
<activity android:label="123" android:name=".Screen1">
....
</activity>
</application>
</manifest>
Now compile the apk again:
codice:
apktool b pre-nomeapk
With 7zip open the apk and remove the file in the META-INF folder like:
codice:
ANDROIDK.SF
ANDROIDK.RSA
File allegati File allegati

Tuesday, 28 January 2014

A Short Summary of intel's announcements at CES

Intel-CEO-Brian-Krzanich-CES2014-635x475.jpg
Computer chip giant Intel unveiled a major new push Monday into wearables and connecting everyday devices as it seeks to leapfrog the competition in mobile computing.
Chief executive Brian Krzanich said Intel would produce on its own or with partners a range of products from a health monitor integrated into baby clothes to heart monitor in earbuds.
Speaking at the opening keynote of the massive Consumer Electronics Show in Las Vegas, Krzanich showed the company's new "personal assistant" dubbed Jarvis, which is Intel's answer to the voice-activated Google Now and Apple's Siri.
Intel will be producing a smartwatch with "geofencing" which allows families to get alerts if children or elderly parents leave a specific geographic area.
The new devices shown to the large CES crowd will all be available this year, Krzanich said, without offering details on pricing or specific partners for the products.
Krzanich said Intel is taking a new approach to wearable computing, seeking to address specific problems with the simplest technology.
He showed a turtle-shaped sensor on baby clothing which can send information to a smart coffee cup about an infant's breathing, temperature and position.
He said the earbuds would enable runners and athletes who already listen to music while exercising to get detailed health information in real time.
"We want to make everything smart. That's what Intel does," he said.
The chief executive who took the reins at Intel last year said the new technology all revolves around its new chip called Edison, which is said integrates a full-fledged computer in the size of a memory card.
He said Intel will be partnering with the luxury retailer Barneys New York, the Council of Fashion Designers of America and design house Opening Ceremony to explore and market smart wearable technology.
And Intel will offer $1.3 million in prizes for other developers who come up with new ideas for wearable computing, including a first prize of $500 million.
"This will allow creation and innovation to come to life" in wearables, he said.
To address questions about security, Intel will offer its McAfee mobile software free of charge.
"We believe this will allow this ecosystem to flourish."
Intel remains the world's biggest producer of chips for personal computers but has been lagging in the surging mobile marketplace of tablets and smartphones. The new initiative could allow the California firm to get a bigger slice of the mobile market's newest iterations.
Intel also said its new chips would allow for a "dual boot" that enables computer makers to include Microsoft Windows and Google Android on a single device, with users able to change with the switch of a button.
"There are times you want Windows, there are times you want Android," he said. "You don't have to make a choice, you can have both."
Intel also unveiled a new 3D camera called RealSense which can be integrated into tablets and enable users to produce and manipulate three-dimensional images.
This can for example allow a user to design a toy or other object and then send it to a 3D printer. Intel produced chocolate bars using the technology which were handed out to the attendees at CES.
Mooly Eden, senior vice president for perceptual computing, said Intel is moving to a more intuitive kind of computing.
"We'll make human-computer interaction natural, intuitive, immersive. We'll make it more human," Eden said.
"We finally removed the fiction from science fiction and made it real."
Intel will implement a new policy in 2014 ending the use of "conflict minerals," from the Democratic Republic of Congo, as part of an effort to reduce the money flowing from the technology sector to those committing atrocities, Krzanich said.
"We are inviting the entire industry to join us in this effort," he said. Stay in touch with the latest from CES 2014, via our CES page.

Source: NDTV

Monday, 27 January 2014

The Best Useful Windows 8.1 Tricks,Tips and Hacks

Windows 8.1 might look a lot like Windows 8, but scratch the surface and some subtle - and not-so-subtle - differences begin to appear.
If you're just getting started with Microsoft's newest operating system, these tips and tricks will turn you into an 8.1 wizard in no time at all - from booting straight to the desktop to creating system backups, there's plenty to explore in the latest release.

1. Boot to the desktop

Windows 8.1 tips, tricks and secrets
Windows 8.1 enables you to boot straight to the desktop
Microsoft has bowed to the pressure from desktop users and given us an option to skip the Start screen after logging in. Right-click on the taskbar, choose 'Properties', then switch to the Navigation tab. Tick the 'Go to the desktop…' option to load it first instead of the Start screen.

2. Find your apps

Windows 8.1 tips, tricks and secrets
This tiny arrow leads to all of your installed applications
The 8.1 edition of Windows pins fewer apps to the Start screen by default, and has moved the location of the full apps list - you can now find it by clicking on the down arrow in the lower left corner. Click or tap the drop-down menu by the Apps heading to change how the items are sorted.

3. Universal wallpaper

Windows 8.1 tips, tricks and secrets
You can set the same wallpaper for your desktop and Start screen
In Windows 8.1 you can set your Start screen wallpaper to the same image used for the desktop wallpaper, if it makes life without the Start menu a little easier for you. Open up the 'Personalise' link from the Settings charm on the Start screen and your current desktop backdrop will be one of the available thumbnails.

4. Quicker shutdown

Windows 8.1 tips, tricks and secrets
Access the shutdown and restart options from the Start button
Windows 8.1 retains the shortcut menu that appears when you right-click in the bottom left-hand corner of the desktop, but there are some new options. You can now shut the system down or log out of your account from here, rather than going through the Settings charm.

5. Configure Smart Search

Windows 8.1 tips, tricks and secrets
If you don't want Bing search results, you can disable them
By default Windows 8.1 will look through files on your PC, in your SkyDrive account and on the web when you type a query into the Search charm, but you can modify this behaviour. Open the Settings charm then choose 'Change PC settings > Search and apps > Search' to disable Bing integration.

6. App tiles

Windows 8.1 tips, tricks and secrets
There are now more options for the size of your live tiles
It's not exactly a headline feature, but Windows 8.1 gives you more control over the size of your app tiles on the Start screen. Right-click on a tile, choose 'Resize' from the menu at the bottom and there are four different options to pick from: Large, Wide, Medium and Small.

7. Lock screen slideshows

Windows 8.1 tips, tricks and secrets
If you can't choose one lock screen image, set up a slideshow
Having a static photo as your lock screen picture is so Windows 8. Join the Windows 8.1 revolution by configuring a slideshow of several images instead - on the Lock screen page under 'PC and Devices' in the Settings app there's a new Slide show entry, complete with a variety of configuration options.

8. Name app groups

Windows 8.1 tips, tricks and secrets
You can assign titles to your groups of live tiles
Each of your Start screen app tile groups can have its own heading now, if required. You could name one group 'Work' and one 'Play', to be completely unoriginal and dull, for example. Right-click on the Start screen and choose Customise to bring up the labels.

9. Display tweaks

Windows 8.1 tips, tricks and secrets
Display settings are now available from the Start screen
Your screen resolution configuration and other related settings can now be accessed straight from the Start screen without venturing to the desktop or the Control Panel. Choose 'Settings' from the Charms bar, then 'Change PC settings', and then 'Display'.

10. Disable hot corners

Windows 8.1 tips, tricks and secrets
You can disable the hot corners if you prefer life without them
In Windows 8 you needed a third-party tool or a registry hack to disable the 'hot corners' around the edges of your screen. In Windows 8.1, you can simply open up the Corners and Edges section of the 'PC and devices' settings page and turn off the corner navigation options.

11. IE11 Reading View

Windows 8.1 tips, tricks and secrets
IE11's Reading Mode is compatible with most websites
The brand-new Internet Explorer 11 comes bundled with Windows 8.1, and it has some neat new features (most of which have already been seen in other browsers, but still). One of these is the Reading View, which you can access by clicking the book icon on the right of the address bar.

12. App docking

Windows 8.1 tips, tricks and secrets
Apps can now be docked alongside each other
Windows 8 enables you dock Start screen apps to the side of the screen, and this functionality is enhanced in 8.1 - you can dock two Start screen apps and avoid the desktop altogether, and adjust the size of each pane, giving you much more flexibility over how your display looks.

13. Save to SkyDrive

Windows 8.1 tips, tricks and secrets
Save files to SkyDrive by default to keep backups in the cloud
Windows 8.1 goes even further with SkyDrive integration than Windows 8 did - you can have all of your applications save to your SkyDrive folder by default. Open up the Change PC Settings screen, choose SkyDrive and the relevant setting is on the Files tab.

14. Find your libraries

Windows 8.1 tips, tricks and secrets
If you miss the Libraries link you can bring it back
The libraries idea ushered in with Windows 7 helps you quickly locate all of your music, videos, documents and so on, but the Libraries link isn't shown in Windows 8.1 by default. To display it, open the View menu from the ribbon menu in File Explorer and choose 'Show Libraries' from the Navigation pane drop-down menu.

15. Sound the alarm

Windows 8.1 tips, tricks and secrets
Windows 8.1 comes with a brand new Alarms app
Windows 8.1 has a brand new Alarms app that you can access from the Start screen. You can configure multiple alarms and choose from a variety of ringtones to wake you up or act as a reminder for something.

16. Quick calculations

Windows 8.1 tips, tricks and secrets
The Calculator app is a new addition in Windows 8.1
Also new to the Windows 8.1 integrated apps scene is a basic calculator. Launch it from the Start screen and you can switch between Standard and Scientific modes. A handy unit conversion tool is included as well.

17. App updates

Windows 8.1 tips, tricks and secrets
Windows Store apps now update automatically in the background
Start screen apps now update automatically, which will come as a relief to Windows 8 users who are used to having to apply the latest upgrades manually. If you want you can turn off this feature — select Settings and then App updates from inside the Store app.

18. Create a system image backup

Windows 8.1 tips, tricks and secrets
System Image Backup is well hidden in Windows 8.1
The system image backup tool first seen in Windows 7 looks like it has vanished from the 8.1 release, but this isn't the case - it's just very well hidden. Launch the desktop Control Panel, head to the File History pane, and a System Image Backup link appears in the lower left-hand corner.

19. Edit your pictures

Windows 8.1 tips, tricks and secrets
The integrated Photos app has some new editing features
The Start screen Photos app has been given some basic editing tools in 8.1. Open up an image and you'll find autofix shortcuts, tools for adjusting colours and shades, and rotate and crop options.

20. Get more help

Windows 8.1 tips, tricks and secrets
The Help and Tips app can guide you around Windows 8.1
Working out all of the touchscreen, keyboard and mouse shortcuts for the new-look Windows isn't easy, so Microsoft has introduced a Help and Tips app to lend a hand. You can launch it from the Start screen and it also appears right after you've installed the new version of the OS - get the latest on Windows 8.1.

10 Useful Windows 8 Start Screen Hacks


10 Useful Windows 8 Start Screen Hacks

10 Windows 8 Start Screen Hacks
Windows is moving towards a more locked-down direction with Windows 8 and its Start screen and “Modern” app environment. There’s no denying this — you can’t even set a custom Start screen background without installing a third-party utility. Luckily, Windows hasn’t completely shed its legacy of customizability, yet. There are many different hacks you can perform with the Start screen, although most of them should have been included with Windows 8 itself.
Microsoft has always had urges to restrict users from customizing Windows, even in the past. That’s why, although a desktop-theme engine was introduced in Windows XP, you still can’tinstall custom Windows desktop themes without bypassing the check that only allows Microsoft-approved themes.

Create Custom Tiles

Windows 8 includes nice-looking icons for Modern apps from the Windows Store, but what about all your desktop applications or other things you pin, like websites and folders? Their default tiles don’t look very good and there’s no included way to set a nice-looking tile image. Desktop programs can’t even include their own nice-looking tiles.
If you want to create your own custom tile images for desktop applications, use OblyTile.
oblytile custom tiles   10 Windows 8 Start Screen Hacks

Change the Start Screen’s Color Scheme

Microsoft offers a variety of themes for the Start screen, but you can only choose from among a few different colors. If you want to set a custom color scheme, you’ll need to use a third-party utility to change your Start screen’s colors. Stardock’s Decor8 does this very well, although it’s a paid application. Windows 8 Start Screen Customizer can do the same, although it’s in beta and may not be as stable as Decor8.

Add a Custom Background Image

The Start screen included with Windows 8 allows you to choose your own background image, but you can only select from among the few background images Steven Sinofsky thought were acceptable.
Windows 8.1 will allow you to set a custom background image, even sharing the same background image as your desktop wallpaper. For now, you’ll have to use a third-party utility to set a custom background image. Both of the above tools — Stardock’s Decor8 and Windows 8 Start Screen Customizer — will also allow you to set a custom background image.
stardock decor8   10 Windows 8 Start Screen Hacks

Pin Folders and Websites

The Start screen isn’t just for apps. You can pin almost anything to your Start screen, from folders to website shortcuts.
  • Folders: Right-click any folder in the File Explorer window and select Pin to Start to pin it to your Start screen.
  • Website Shortcuts: Open Modern Internet Explorer and click the pin-shaped Pin to Start button. If you’re using the desktop version of Internet Explorer, click the gear icon and select Add site to Start Screen
pin a folder to your start screen   10 Windows 8 Start Screen Hacks

Pin Any File

You’ll need a third-party tool to pin any arbitrary file to your Start screen. Try using something like Start Screen Pinner, which will allow you to create Start menu shortcuts directly to files.

Add Shut Down Shortcuts

The Shut Down and Restart options are fairly hidden on Windows 8, but you can create your own Shut Down and Restart buttons and place them directly on your Start screen for easy access. To do this, you’ll just be creating custom Windows shortcuts that use the shutdown command built into Windows. Consult our list of ways to shut down Windows 8 for instructions on creating these shortcuts.
windows 8 shutdown shortcuts   10 Windows 8 Start Screen Hacks

Rearrange The Start Screen and Customize Animations

You can tweak a variety of things about the start screen, from displaying the login animation every time you open the Start screen to the position of your profile image. You can tweak the start screen hidden options using manual registry hacks or with a utility like the free Start Screen Animations Tweaker.
muo w8 startscrn tweaker   10 Windows 8 Start Screen Hacks

Skip the Start Screen at Login

Windows 8.1 will allow you to skip the start screen and log in directly to the desktop without installing any third-party software. Until then, you can use a third-party program to do this. Most Start menu replacement for Windows 8 — from the free ClassicShell to the paid Start8 and others — include a feature that allows you to log directly into your desktop.
Start8 even offers a mode that allows you to use a Start screen-like Start menu panel that pops up in a smaller window on your desktop.
start81   10 Windows 8 Start Screen Hacks

Move the Start Screen Onto the Desktop

The Start screen is in its own special world by default — Start screen and desktop dare not mix. With ImmersiveTaille, you can display your Start screen on your desktop, either from the sides of the screen or in a window on your desktop.
muo w8startswitch immersive window   10 Windows 8 Start Screen Hacks

Run Modern Apps in Desktop Windows

This isn’t technically a Start screen hack, but it’s certainly similar. Modern apps normally run in a full-screen environment and pretend the desktop doesn’t exist. If you want to run these new Modern apps on the traditional Windows desktop, try Stardock’s ModernMix. It lets you run Modern apps in desktop windows, complete with taskbar icons and multiple Modern apps on screen at the same time.
modernmix windows 8 apps on desktop   10 Windows 8 Start Screen Hacks


Do you know any other useful Windows 8 hacks? Leave a comment and share your favorites!
UA-55000532-1