News Ticker

Latest Posts

Download MyWi 8 for Apple iOS 8.3 Jailbreak

- Tuesday, June 30 No Comments


Download MyWi 8 for Apple iOS 8.3 Jailbreak-newvijay
Yo Guys, Well known jailbreak tweak MyWi 8 has just been updated to support the newly jailbreakable firmware iOS 8.3 on all iPhones and cellular iPads. Now up to version 8.03.02, it is still one of the most popular Cydia packages around.

Download MyWi 8 for Apple iOS 8.3 Jailbreak-newvijay

While iOS now supports tethering of data connections with its ‘Personal Hotspot’ feature, what sets MyWi apart from the native offering in iOS is its ability to enable WiFi-to-WiFi tethering. This is called WiFi Sharing and it allows you to rebroadcast the WiFi signal to which your iOS device is connected to. This is super useful to use in hotels or places where you can pay once for WiFi and rebroadcast the same signal using WiFi Sharing feature to your friends and family. MyWi also gives you ability to create 5GHz hotspots, something that Apple’s native offering doesn’t.

The good news here is that if you have already paid for MyWi 6, 7 or earlier versions of MyWi 8, the upgrade to the latest version for iOS 8.3 is totally free, though if you’re looking to start fresh, it will set you back a good $19.99. Pricey I know but if features like WiFi Sharing is important to you, then it’s probably worth getting. Intelliborn, the developers behind MyWi, are also offering a free three-day trial to all users so that they can experience the tweak first-hand before making the decision to purchase it.

MyWi 8 is availlable in Cydia

Whats new in PHP 7 Features, Changes, Performance etc

- Friday, June 26 No Comments






The PHP development team announces the immediate availability of PHP 7.0.0 Alpha 2. This is the second pre-release of the new PHP 7 major series. All users of PHP are encouraged to test this version carefully, and report any bugs and incompatibilities in the bug tracking system.

NOTE: THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!

Alpha 2 introduces the new Throwable interface and changes to the Exception hierarchy and about 25 bug fixes reported since the first alpha.

PHP 7.0.0 comes with new version of the Zend Engine with features such as (incomplete list):

Features:

  •     Improved performance: PHP 7 is up to twice as fast as PHP 5.6
  •     Consistent 64-bit support
  •     Many fatal errors are now Exceptions
  •     Removal of old and unsupported SAPIs and extensions
  •     The null coalescing operator (??)
  •     Combined comparison Operator (<=>)
  •     Return Type Declarations
  •     Scalar Type Declarations
  •     Anonymous Classes
  •     Combined Comparison Operator
  •     Null Coalesce Operator
  •     Scalar Type Declarations
  •     Return Type Declarations
  •     Anonymous Classes
  •     Unicode Codepoint Escape Syntax
  •     Closure call() Method
  •     Filtered unserialize()
  •     IntlChar Class
  •     Expectations
  •     Group use Declarations
  •     Generator Return Expressions
  •     Generator Delegation
  •     Integer Division with intdiv()
  •     session_start() Options
  •     preg_replace_callback_array() Function

Changes:
  •     Loosening Reserved Word Restrictions
  •     Uniform Variable Syntax
  •     Exceptions in the Engine
  •     Throwable Interface
  •     Integer Semantics
  •     JSON Extension Replaced with JSOND
  •     ZPP Failure on Overflow
  •     Fixes to foreach()'s Behaviour
  •     Changes to list()'s Behaviour
  •     Fixes to Custom Session Handler Return Values
  •     Deprecation of PHP 4-Style Constructors
  •     Removal of date.timezone Warning
  •     Removal of Alternative PHP Tags
  •     Removal of Multiple Default Blocks in Switch Statements
  •     Removal of Dead Server APIs
  •     Removal of Hex Support in Numerical Strings
  •     Removal of Deprecated Functionality
  •     Reclassification and Removal of E_STRICT Notices
  •     Deprecation of Salt Option for password_hash()
Performance:


Unarguably the greatest part about PHP 7 is the incredible performance boosts it provides to applications. This is a result of refactoring the Zend Engine to use more compact data structures and less heap allocations/deallocations.

The performance gains on real world applications will vary, though many applications seem to receive a ~100% performance boost - with lower memory consumption too!

The refactored codebase provides further opportunities for future optimisations as well (such as JIT compilation). So it looks like future PHP versions will continue to see performance enhancements too.

How to get User Location in JavaScript / jQuery PHP Website

- Monday, June 22 No Comments
How to get User Location in JavaScript / jQuery PHP Website-newvijay

Solution : 1




The HTML5 geolocation API will get you the user's latitude and longitude (assuming they opt in). If you need to get info such as the city, country, or postal code, you'll need to use a reverse-geocoding web service. There are plenty of those out there:

    Google
    Bing
    etc

So take your pick... just make sure to look at the terms & conditions and be sure you won't be in violation once the site goes live.

You should be able to find code samples by googling around a bit, it's a fairly common use case. The steps will be:

    Get the user's lat/lng with your existing code.
    Make an AJAX (JSONP) call to request the reverse-geocode (use your Geocode provider to figure out what URL to use. eg, for Google it is like this).

    Parse the JSON response to extract the info you need (country, city).




Solution : 2


Try this code using the hostip.info service:

$country=file_get_contents('http://api.hostip.info/get_html.php?ip=');
echo $country;

// Reformat the data returned (Keep only country and country abbr.)
$only_country=explode (" ", $country);

echo "Country : ".$only_country[1]." ".substr($only_country[2],0,4);


Solution : 3

MaxMind GeoIP is a good service. They also have a free city-level lookup service.

How to Parse Cloud Code relational query syntax

- Sunday, June 21 No Comments
How to Parse Cloud Code relational query syntax newvijay






 Question:
I have a cloud function on Parse. When it's called it retrieves a PFObject then adds a relation between that object and the user. This part works fine (Seen towards the end of the function). I'm having trouble getting the query that selects the PFObject to ignore those that the user is already related to

I'm sure i'm just not understanding how the relation query syntax works.



Parse.Cloud.define("NextMedia", function (request, response) {

    var LikeRequest = Parse.Object.extend("LikeRequest");
    var query = new Parse.Query(LikeRequest);

    query.equalTo("completed", false);
    console.log("user: " + Parse.User.current().id);

    query.notEqualTo("user", Parse.User.current());

    // Also only fetch if never been sent before
    // HERE SHOULD USE THE BELOW RELATIONSHIP
    var innerQuery = new Parse.Query(Parse.User);
    innerQuery.exists(Parse.User);
    query.matchesQuery("sentTo", innerQuery);

    query.ascending("createdAt");

    query.first({

        success: function (object) {
            // Successfully retrieved the object.
            console.log("Got 1 object: " + object.get('mediaId'));

            // Record that the user has been sent it
            var user = Parse.User.current();
            var relation = object.relation("sentTo"); // RELATION ADDED HERE

            relation.add(user);
            object.save();

            response.success(object);
        },
        error: function (error) {
            console.log("Error: " + error.code + " " + error.message);

            response.error("Error getting next mediaId");
        }
    });
});




Answer:

I think Kerem has it partially correct but notContained in is not dynamic enough for your case. You need to construct the query from the relation and then use doesNotMatchKeyInQuery to exclude those objects from your outer query.

This stretch:

// Also only fetch if never been sent before
// HERE SHOULD USE THE BELOW RELATIONSHIP
var innerQuery = new Parse.Query(Parse.User);
innerQuery.exists(Parse.User);
query.matchesQuery("sentTo", innerQuery);
Could be changed to:

// Also only fetch if never been sent before
query.notContainedIn("sentTo",[Parse.User.current()])


what about Query Constraints?

If you want to retrieve objects that do not match any of several values you can use notContainedIn

  // Finds objects from anyone who is neither Jonathan, Dario, nor Shawn
query.notContainedIn("playerName",
                     ["Jonathan Walsh", "Dario Wunsch", "Shawn Simon"]);

Download Laptop WiFi Hotspot Software free for Windows

- Friday, June 19 No Comments
Hello Guys,

I have made simple WiFi Hotspot application for windows xp, vista ,7 & 8x. By using this software you will able to share your wifi connection to others.

Hotspot Info:
Hotspot Name: Sony_Vaio
Password : 12345678



I will look forward on it's new version if users are demanding for more functionality .