Showing posts with label to. Show all posts
Showing posts with label to. Show all posts

Thursday, April 6, 2017

PIC OF THE DAY someone plz explain this to me LOOOL AAUAPAPARAZIi AGAIN

PIC OF THE DAY someone plz explain this to me LOOOL AAUAPAPARAZIi AGAIN


Lol well what can I say

WARNING: Watchout people, paparazzi walks around campus with a camera don't be the next

Available link for download

Read more »

Sunday, April 2, 2017

People deserve to know Vice President Pun

People deserve to know Vice President Pun


Kathmandu, Jan 18: Vice-President Nanda Bahadur Pun has said the State is obliged to provide information to the public. And informed citizenry is civilized citizenry, he added.
Addressing a programme organized by the National Information Commission to release its significant orders
and verdicts on information disclosure, he said corruption-free society can be imagined when the citizens get the information of their and public importance from the public agencies.
According to him, information is the enlightenment and peoples access to information help curb untoward activities.
Similarly, Chairman of the Legislature-Parliament Development Committee, Rabindra Adhikari, said right to information was imperative to empower citizen. It is the responsibility of the State to disclose information from time to time.
Right to information is the human rights, so information of public importance must not be hidden, said Chief Information Commissioner Krishna Hari Baskota.
Similarly, Information Commissioners Kiran Pokhrel and Yeshoda Timilsina said information was essential to hold any agency and leadership transparent and accountable.
The current leadership of the Commission has so far issued 2,229 orders asking various public agencies to provide information to those seeking it. RSS
------ 

Available link for download

Read more »

Friday, March 31, 2017

Penetrate Pro Android App How To Decode WEP WPA WiFi keys

Penetrate Pro Android App How To Decode WEP WPA WiFi keys


penetrate-pr0-android-wifi-hack-app - picateshackz.com

Penetrate pro is an android app developed by Biogo Ferreira for hackers. It is an excellent app for decoding WEP/WPA WiFi keys.
The latest version of Penetrate pro ( 2.11.1) supports the following routers:
  • Routers based on Thomson: Thomson, Infinitum, BBox, DMax, Orange, SpeedTouch, BigPond, O2Wireless, Otenet.
  • DLink
  • Eircom
  • Pirelli Discus
  • Verizon FiOS (only some routers)
  • Fastweb (Pirelli & Telsey)
  • Jazztel_XXXX and WLAN_XXXX
  • Tecom
  • Infostrada
  • SkyV1

Requirements?

The latest version requires Android 1.5 or higher.

How To Use It

Here is a quick guide to use Penetrate pro like a pro:
1. First, download Penetrate pro apk [MediaFire Link]
2. Then install it on your android device.
3.  Open it, you will see a window like this:

penetrate-pr0-android-wifi-hack-app - picateshackz.com

If it says “Reversible: 0 found”, you have to change the target.
Reversing the Thomson routers requires a dictionary file or you can use 3G for it.
Once you got a reversible router, you can tap on it to get the WiFi Keys (Don’t forget to enable “Get keys from the web” by going to the settings):

penetrate-pr0-android-wifi-hack-app - picateshackz.com

You can copy the keys just by simply tapping on them.
Penetrate pro also has a “Manual Search” option that allows users to find keys for a particular router which is not in the main list.

Also Read:

  • Unlock Android Pattern or Password Lock Without Resetting Device
  • Hack Facebook Account In Same Wi-Fi Network Using Faceniff Android App
  • Mac Address Spoofing In Android Device - Complete Guide

How To Use Manual Search Option

1. First, select the “Manual search” option from the menu.

penetrate-pr0-android-wifi-hack-app - picateshackz.com

2. Select the router:

penetrate-pr0-android-wifi-hack-app - picateshackz.com

3. Enter the numbers at the end of the network name. Then tap on “search”.

penetrate-pr0-android-wifi-hack-app - picateshackz.com

4. It will display the key(s):

penetrate-pr0-android-wifi-hack-app - picateshackz.com

Of course, Penetrate Pro is not a sophisticate tool like Aircrack android, but it is clearly a useful tool for penetration testers.

Available link for download

Read more »

Passing Functions To Functions In C C Java

Passing Functions To Functions In C C Java


Before I start the article, I admit I used the word "Function" a little loosely in the title. Functions are available in C++, but in C# and Java it would be more appropriate to call them methods of a class because of the Object Oriented approach followed by these languages.

There are a lot of situations where we write modules such that other developers have the flexibility to fine-tune them to meet their requirements. Assume we are writing a module (function/method) wherein a function/method will be called in the middle of its execution but we don’t know the implementation of this function/method nor its actual name. Wouldnt it nice if we could just leave the implementation of the function/method to the developer who will be using the module?

This is exactly what I target in this blog-post. The article will give a quick overview of how to pass a function (actually a reference to a function) to another function in C++; how to create and use delegates in C#; and finally how to simulate a similar effect in Java which has neither pointers nor delegates.

To help the readers understand the concept better, I will be taking a simple example here. In the example, there is an addition module which takes three arguments - two integers and a function/method which is the display routine. Its not a real-world example as I could have just returned the sum back.

An apt real-world example for this approach would a customized sort routine which takes a function/method which can be used as a comparator for the sort. I will leave it to the users to think of more complex situations where such an approach will be beneficial.

Function Pointers in C++

A Function Pointer is a pointer in C/C++ which points to a function. When dereferenced, a function pointer will result in the execution of the function it points to. A function pointer is defined as -

return_type (*function_name)(argument_list)

An important point that is to be noticed here is that the signature of the function to which the pointer can point to has to be declared in the declaration of the pointer. Once that is done, it can be assigned to any function which follows that signature.

Here is an example C++ program which uses function pointers -

Function pointers play a very important in Callback layered architectures. For example, function pointers can be used to register a function with an event handler.

Delegates in C#

A delegate is a type that references to a method. When a method is assigned to a delegate, the delegate behaves exactly like the method. A delegate in C# is defined as -

access_modfier delegate return_type delegate_name(argument_list)

Similar to Function Pointers in C/C++, the method signature has to be specified in the definition of the delegate. But unlike function pointers, delegates are type safe. This is because since Function Pointers are basically pointers, even an improper assignment will not raise any error until it’s too late. On the other hand delegates are associated with the signature specified and any wrong assignment will lead to a compilation error.

Another important feature of delegates is that delegates can be chained together. That is, multiple functions can be executed when the delegate is called. This is done through + and - operations on delegates. Here is how the syntax looks -

delegate_name reference_name;
reference_name = method1_name;
reference_name += method2_name;

Now when reference_name is called, both method1_name and method2_name are executed one after another.

Delegates also allow methods to be passed to other methods using lambda expressions, which can be written in the method call itself. Go through the following example which shows how to use delegates for method passing and how lambda expressions are useful -

Delegates are very useful in event handling, for defining callback methods like a customized sort, etc.

Simulation Using Interfaces in Java

Ok, now coming to the fun part. How can I get the same effect in Java which has neither Function Pointers nor Delegates?

The approach which have discussed above can be simulated in Java using single method Interfaces. The single method interface can be implemented and the class can become an argument of the method. The concrete class passed to the method is used to call the one and only method of the interface.

However, there are three major drawbacks in this -

  • Every developer using the method is forced to create a class implementing the interface
  • The name of the function is fixed, the implementation will change but not its name
  • We are not passing the method anymore but instead passing an object which has the required method

Similar to C#, the interface implementation can be done in-line to the method call using anonymous classes.

Here is a Java program which achieves the same result as the above two examples -

As we know, C# was heavily influenced by Java. So, almost everything that we can do in Java can be done in C#. The interface technique discussed for Java can also be applied in C#, but I guess it’s more easy to use Delegates for such a requirement than creating Interfaces.


Available link for download

Read more »

Wednesday, March 29, 2017

Partnering to Get Younger

Partnering to Get Younger


Many firms struggle at times with an aging customer base.  We have seen firms such as Harley Davidson and Talbots face this challenge in recent years.   Neiman Marcus provides another example of a firm that has had difficulty attracting younger shoppers.  According to Fortune, the average age of a Neiman Marcus shopper is 51 years old.  What is Neiman Marcus doing to attract younger shoppers?  They have come up with an interesting and creative strategy.  They are partnering with Rent the Runway, a firm whose focus is millennials.  Their average age is 29 years old.   Rent the Runway will open small boutiques in select Neiman Marcus stores.   Rent the Renway appears to seek access to shoppers who want the touch and feel available in a physical location - something that their online business model does not provide.   

Mutually beneficial partnerships, such as this one, might be an effective strategy for firms who face an aging customer demographic.  Whats the risk?  Certainly, one worry is cannibalization.  Will they take sales away from one another?  A more interesting question, though, is whether those young consumers, the millennials, will convert to purchasers at Neiman Marcus.  Can these folks afford the premium-priced goods at Neiman Marcus?  A key strategic risk emerges if Neiman Marcus begins to offer lower-priced goods to cater to these young shoppers. That move might compromise their premium, differentiated competitive positioning and their reputation for high quality.   Moreover, what if they cause a decline in satisfaction among their core customers by carrying more of the types of clothes that attract millennial shoppers?  Older women may not like the fashions that millennials seek.  Getting younger is a challenging proposition for any firm; its not as simple as it may seem.  

Available link for download

Read more »

Phytoremediation Using Plants to Cleanse the Earth

Phytoremediation Using Plants to Cleanse the Earth


Phytoremediation1,2 may be defined as the treatment of environmental problems by using plants in situ to avoid the need to excavate the contaminated material for disposal elsewhere. It can be applied to the amelioration of contaminated soils, water, or air, using plants that can contain, degrade, or eliminate metals, pesticides, solvents, explosives, crude oil and its derivatives (refined fuels), and related contaminating materials. Phytoremediation has been used successfully for the restoration of abandoned metal-mine workings, and cleaning up sites where polychlorinated biphenyls have been dumped during manufacture, and for the mitigation of on-going coal mine discharges. Phytoremediation uses the natural ability of particular plants (“hyperaccumulators”, described below) to bioaccumulate, degrade, or otherwise reduce the environmental impact of contaminants in soils, water, or air. Those contaminants that have been successfully mitigated in phytoremediation projects worldwide are metals, pesticides, solvents, explosives, and crude oil and its derivatives, and the technology has become increasingly popular and has been employed at sites with soils contaminated with lead, uranium, and arsenic. A major disadvantage of phytoremediation is that it takes a relatively long time to achieve, because the process rests upon the ability of a plant to thrive in an environment that is not normally ideal for plants.

Advantages and limitations of phytoremediation.
  • Advantages:
    • The cost of phytoremediation are lower than those of traditional processes, both in situ and ex situ.
    • The plants can be easily monitored.
    • There is the possibility of the recovery and re-use of valuable metals (by companies specializing in “phyto-mining”).
    • It is potentially the least harmful method because it uses naturally occurring organisms and preserves the environment in a more natural state.
    • Trees may be used in phytoremediation, since they grow on land of marginal quality, have long life-spans and a high flood tolerance. Willows and poplars are most commonly used, and can grow 6-8 feet (ca 2 metres) per year. For deep contamination, hybrid poplars with roots extending 30 feet deep have been used, which penetrate microscopically sized pores in the soil matrix and each tree can cycle 100 L of water per day, functioning almost as a solar powered and self-contained pump and treatment system.
    • Phytoscreening is possible, in which plants may be used as biosensors for particular types of contaminants, thus giving a signal of underlying contaminant plumes, e.g. trichloroethene has been detected in the trunks of trees.
    • Genetic engineering may confer improvements to phytoremediation, e.g. genes encoding a nitroreductase from a bacterium, when inserted into tobacco, increased the resistance of the plant to the toxic effects of TNT and the uptake of the material. Plants may be genetically modified to grow in soils even when the pollution levels in the soil are lethal for non-treated plants, and to absorb a greater concentration of the contaminant.
  • Limitations:
    • Phytoremediation is limited to the surface area and depth occupied by the plant roots.
    • Slow growth and low biomass require a long-term commitment.
    • Using plants, it is not possible to prevent entirely the leaching of contaminants into the groundwater (without the complete removal of the contaminated ground, which in itself does not resolve the problem of contamination).
    • The survival of the plants is affected by the toxicity of the contaminated land and the general condition of the soil.
    • Bio-accumulation of contaminants, especially metals, into plants which then pass into the food chain, from primary level consumers upwards, or that the safe disposal of the affected plant material is required, i.e. if the plants might be eaten by animals.
    • The procedure is slow.
Hyperaccumulators and biotic interactions. 
If a plant is able to concentrate a particular contaminant, to a given minimum concentration (> 1000 mg/kg of dry weight for nickel, copper, cobalt, chromiumor lead; or > 10,000 mg/kg for zinc or manganese), it is categorized as a hyperaccumulator. This capacity for accumulation is a result of genetic adaptation over many generations in hostile environments. Metal hyperaccumulation can affect various different factors, such as protection, interferences between different species of plants, mutualism (e.g. mycorrhizae, pollen and seed dispersal), commensalism, and biofilm.

Different possible phytoremediation methods.
Various processes that are mediated by plants or algae might be used to address environmental problems:
  • Phytoextraction — uptake and concentration of substances from the environment into the plant biomass.
  • Phytostabilization — reducing the mobility of substances in the environment, for example, by limiting the leaching of substances from the soil.
  • Phytotransformation — chemical modification of environmental substances as a direct result of plant metabolism, often resulting in their inactivation, degradation (phytodegradation), or immobilization (phytostabilization).
  • Phytostimulation — enhancement of soil microbial activity for the degradation of contaminants, typically by organisms that associate with roots. This process is also known as rhizosphere degradation. Phytostimulation can also involve aquatic plants supporting active populations of microbial degraders, as in the stimulation of atrazine degradation by hornwort.
  • Phytovolatilization — removal of substances from soil or water with release into the air, sometimes as a result of phytotransformation to more volatile and/or less polluting substances.
  • Rhizofiltration — filtering water through a mass of roots to remove toxic substances or excess nutrients. The pollutants remain absorbed in or adsorbed to the roots. 
Phytoextraction.
In phytoextraction (or phytoaccumulation) plants or algae are used to extract contaminants from soils, sediments or water into harvestable plant biomass (those organisms that take larger-than-normal amounts of contaminants from the soil are called hyperaccumulators). Phytoextraction has been used more often for extracting heavy metals than for organic contaminants. The plants absorb contaminants through the root system which they then contain in the root biomass and/or move them into the stems and/or leaves. A living plant may continue to absorb contaminants until it is harvested. After harvest, a lower level of the contaminant will remain in the soil, so the growth/harvest cycle must usually be repeated through several crops to achieve a significant cleanup. The process can be repeated to affect further decontamination. There are two forms of phytoextraction:
  • Natural hyper-accumulation, where plants take up the contaminants in soil unassisted.
  • Induced (assisted) hyper-accumulation, in which a conditioning fluid containing a chelator or another agent is added to soil to increase metal solubility or mobilization so that the plants can absorb them more easily. In many cases natural hyperaccumulators are metallophyte plants that can tolerate and incorporate high levels of toxic metals.

Examples of phytoextraction:
  • Arsenic, using the Sunflower (Helianthus annuus), or the Chinese Brake fern (Pteris vittata), a hyperaccumulator. Chinese Brake fern stores arsenic in its leaves.
  • Cadmium, using willow (Salix viminalis): willow has a significant potential as a phytoextractor of cadmium (Cd), zinc (Zn), and copper (Cu), as willow has some specific characteristics like high transport capacity of heavy metals from root to shoot and huge amount of biomass production; can be used also for production of bioenergy in the biomass energy power plant.
  • Cadmium and zinc, using Alpine pennycress (Thlaspi caerulescens), a hyperaccumulator of these metals at levels that would be toxic to many plants, although its growth appears to be inhibited by copper.
  • Lead, using Indian Mustard (Brassica juncea), Ragweed (Ambrosia artemisiifolia), Hemp Dogbane (Apocynum cannabinum), or Poplar trees, which sequester lead in their biomass.
  • Salt-tolerant (moderately halophytic) barley and/or sugar beets are commonly used for the extraction of sodium chloride (common salt) to reclaim fields that were previously flooded by sea water.
  • 137Cs and 90Sr contaminating a pond were removed using sunflowers, following the 1986 Chernobyl accident.
  • Mercury, selenium and organic pollutants including polychlorinated biphenyls (PCBs) have been removed from soils by transgenic plants containing genes for bacterial enzymes.
  • Recovery of phosphate from wastewaters by algae.
Phytostabilization.
In phytostabilization the intention is to stabilize, or contain the pollutant over the long-term. There may be a number of contributing factors to this, e.g. the reduction of wind (soil) erosion by the body of the plant, but the roots of the plant can resist water (soil) erosion, immobilize the pollutants by adsorption or accumulation, and provide a zone around the roots where the pollutant can be deposited in an immobilized form. In contrast with phytoextraction, phytostabilization aims mainly to sequester pollutants in soil around the roots but not in the plant tissues. Hence the pollutants are increasingly less bioavailable, such that exposure to livestock, wildlife, and humans is reduced. Mine tailings may be stabilized by growing a vegetative cap.


Phytotransformation. 
 Some plants, e.g. cannas, are able to detoxify organic pollutants - pesticides, explosives, solvents, industrial chemicals, and other xenobioticsubstances  - by metabolising them. The metabolic functions of microorganisms living in association with plant roots may also metabolize these substances, as present in soil or water. Due to the complex and recalcitrant nature of many of these compounds, they cannot be broken down entirely (mineralised) to basic molecules (H2O, CO2, etc.) by plants and hence the term phytotransformation represents molecular alterations rather than the complete decomposition of the compound. Phytotransformation may be viewed1as a "Green Liver" because plants behave analogously to the human liver in processing these xenobioticcompounds, introducing polar groups such as –OH to them. This is known as Phase I metabolism, similar to the way that the human liver increases the polarity of drugs and foreign compounds. In plants, it is enzymes such as nitroreductases which carry out these transformations, whereas in the human liver it is enzymes such as the Cytochrome P450s that perform the task. Phase II metabolism in the second step in phytotransformation, in which the polarity of the xenobiotic molecule is increased by combination with plant biomolecules such as glucose and amino-acids. This is called “conjugation”, and is once more similar to processes such as glucoronidation (addition of glucose) and glutathione addition reactions, catalysed by appropriate enzymes. The effect of the two metabolic steps may serve to detoxify the xenobiotic and aid its mobilization via aqueous channels. In Phase III metabolism, the xenobiotic becomes sequestered, by incorporation in a complex “lignin-type” structure, where it is kept apart from the normal functioning of the plant. The phytotransformation of trinitrotoluene (TNT) has been well studied, and a detailed mechanism proposed for it.

Phytostimulation and rhizoremediation. 
This term identifies the process where compounds released from plant roots enhance microbial activity in the rhizosphere, which is the narrow region of soil around the roots of plants, and associated soil microorganisms. Soil which is not part of the rhizosphere is known as bulk soil. In rhizoremediation, microorganisms degrade soil contaminants in the rhizosphere. It is usual that those soil pollutants which are remediated by this method are highly hydrophobic xenobiotics, and are hence unable to enter the plant. Rather than the plant being a main protagonist in this process, it creates a haven in which microorganisms in the rhizosphere are able to perform the degradation.The plant acts as a solar-powered pump, which draws in both water and the xenobiotic agent, simultaneously producing substrates (e.g. root exudates and root turnover) that assist the growth of the microbes which act as pollutant degrading agents. Microbialactivity is stimulated in the rhizosphere through a number of different routes: (i) exudates, e.g. sugars, carbohydrates, amino acids, acetates, and enzymes, nourish indigenous microbe populations; (ii) root systems bring oxygen into the rhizosphere, meaning that aerobic transformations are supported; (3) the available organic carbon is enhanced through the growth of fine-root biomass; (4) mycorrhizae fungi, which are an essential component of the rhizosphere, provide unique enzymatic pathways lending the capacity to degrade pollutant molecules that would not be degraded by bacteria alone; and (5) the presence of plants (and their roots) creates a domain for microbial populations, which are activated in the rhizosphere. There have been five enzyme systems identified in soils: (i) dehalogenase (which acts in dechlorination reactions of chlorinated hydrocarbons); (ii) nitroreductase (essential for the initial step of nitroaromatic degradation); (iii) peroxidase (a critical catalyst for oxidation reactions); (iv) laccase (able to begin the decomposition of otherwise robust aromatic ring structures); (v) nitrilase (another key factor in oxidation processes). The method is limited in that when there are high concentrations of pollutants present, the plants may be overwhelmed and die. The successful use of phytostimulation has been demonstrated in the remediation of chlorinated solvents from groundwater, petroleum hydrocarbons from soil and groundwater and PAHs from soil. 

Phytovolatilization.
Probably, this is the most controversial of the phytoremediation technologies, since it involves the release of contaminants either directly, or in a metabolically modified form, into the atmosphere. Phytovolatilization3 has been used principally for the removal of Hg2+ ions which are transformed into less toxic elemental mercury4. Tritium (3H), a radioactive isotope of hydrogen with a half-life of about 12 years, decaying to helium, has also been removed by phytovolatilization5. A good deal more research is necessary before this strategy becomes mainstream, since there are various negative features to be addressed. For example, mercury that is released into the atmosphere from plants is likely to be recycled by precipitation and thus returned the ecosystem, and the method is restricted both to sites where the concentration of contaminants is toward the low side, and where the contamination is no deeper than the roots of the plants being used. 

Rhizofiltration. 
Rhizofiltration6 involves filtering contaminated water through a mass of roots for the extraction of contaminants, or excess nutrients, e.g. phosphorus. The contaminated water can either be collected from a waste site and taken to where plants are being hydroponically cultivated, or the plants may be planted in the area directly. In both cases, the roots draw up the water and its associated contaminants. This process is very similar to phytoextraction in that the contaminants become sequestered in the form of harvestable plant biomass. Then new plants are grown and harvested until a satisfactory degree of decontamination is achieved. It is the concentration and precipitation of heavy metals that is sought principally. While noting these similarities, the fundamental difference between the two approaches is that rhizofiltration is used in aquatic environments, while phytoextraction is applied to the decontamination of soils. There are limitations to rhizofiltration. As usual in phytoremediation methods, any contaminant that is below the rooting depth will not be extracted, and if the level of contamination is too high the plants will not grow. Depending on the type of plant and contaminant, the process may need to be continued over a protracted period, before regulatory levels are achieved. It is generally true that many different kinds of contaminants will be present – in some cases a mixture of organics and heavy metals – and thus the use of

Available link for download

Read more »

Tuesday, March 28, 2017

People pay tributes to Prithvi Narayan on Prithvi Jayanti

People pay tributes to Prithvi Narayan on Prithvi Jayanti


KATHMANDU: People across the nation today are celebrating the 295th Prithvi Jayanti, commemorating the birth of late King Prithvi Narayan Shah, also known as the unifier of modern Nepal. As a memorial to the Father of the Nation, a rally with placards and banners has been organised in the Capital. The mass has gathered around Shah’s statue situated at the main gate of Singha Durbar to offer floral tribute to the late King.

The Rastriya Prajatantra Party (RPP) has announced to host a reception at Bhrikutimandap on the occasion this afternoon.
Even after requests made by people from different walks of life, including senior leaders of major political parties, the government has not declared a public holiday today.
Prithvi Jayanti or the National Unity Day is observed every year on Poush 27 of the Nepali calendar.
“Nepal is a garden of four castes and 36 sub-castes” as propounded by the late King about the diversity of people and culture in the country still stands true in the present time.
He is said to have advocated for inclusive Nepal and respected culture of various communities.
THTNEPAL

Available link for download

Read more »

Monday, March 27, 2017

Pakistani Hackers give payback and warning to India

Pakistani Hackers give payback and warning to India




Well a days ago some indian,s of team indian Cyber devil hacked some Pakistani websites . The total mess up was created when they started abusing . then Pakistani hackers named "Sniper haxXx" , " Dark hex" , hacked some sites as a warning for them.

Websites hacked were

http://www.talentindia.co.in/
 http://nutechofficesystem.in/
http://www.maxsurge.in/

http://www.dbscommunities.com/

http://balliacity.com/

http://www.shakuntalamholidays.com/

http://www.dilipbuildcon.co.in

http://123online.co.in/
  
http://createmytravel.co.in/livehelp/livehelp.php?cslhVISITOR=1&department=1

http://www.hmeducationcentre.edu.in/

http://dsync.co.in/

http://www.hmeducationcentre.edu.in/




Message : these are just a trailer to give you a Warning if you gays 
again come back to our servers then there will be a huge destrocution 
on your web. we all are one and you cant  smell that even whats coking in our mind so stay away from our servers

regards :- Pak Cyber Mafia 

Available link for download

Read more »

Sunday, March 26, 2017

Pawan Kalyan Meets Chiranjeevi Ram Charan To Team up With Krish For SPY Thriller

Pawan Kalyan Meets Chiranjeevi Ram Charan To Team up With Krish For SPY Thriller


More Tollywood News


Ram Charan To Team up With Krish For SPY Thriller

Chiranjeevi Book Launch By Ram Charan | Chiranjeevitham 150

Ram Charan BREAKS Jr NTR Records | Dhruva | Janatha Garage

Fan Surprising Gift To Ram Charan || Khaisi No 150

You Might Also Like:

@??????,???? ?????? ?????????? ?????? | ???? ?????? ? ?? ??? ?????? | ???????? 151 ???? ????????
@???? ?? ??????? ???? : ??????? ??? ?????? ?????? | ???? ??? ????? ??????? ???? ????,??????? ,?? ???? ?? | ?????? ????????? ??????? ?????? 
@???? ?????????? 100 ?????? ???? ?????? | ?????? ??????? ??????? ?????? | ??????? ?????? ?? ???? ????
@???? ?? ???? ??????? ?????? ???????|???? ???? ???? | ????? ???? ??????? ????????????? | ?????? ???? ????????
@???? ???150 ,????? ?????? ???????? ????? ???? ??????????
@???? ?????????? 6 ???????? 100 ?????? | ???? ???? ???????? ????? | ?? ?? ??? ???? ?????? ????
@???? ????? ?????????? ????? ???? ???? ?????? | ???? ?? ????? ????? ????????? | ???? ???????? ?????? ?????? ????
@?????? ??? 104 FM ???? ???? ???? ???????
@???? ??????? ?? ????? ????? | ????? ?? ???? ??????? ?????????
@???????? ?????? ?? ?????????? ?????? | ???????? ?????? ?? ????? ?????? | ???????? ??????????? ??????? ?????

More

Pawan Kalyan Meets Chiranjeevi | Ram Charan To Team up With Krish For SPY Thriller

Pawan Kalyan Meets Chiranjeevi | Ram Charan To Team up With Krish For SPY Thriller

Available link for download

Read more »

Saturday, March 25, 2017

Panvel Farmhouse To Witness Salman Khan’s Birthday Bash

Panvel Farmhouse To Witness Salman Khan’s Birthday Bash


Sultan actor Salman Khan announced that he’s gonna celebrate his birthday in their farmhouse in Panvel and CRB Tech Reviews bring you more about the birthday party.

Salman Khan’s Birthday


It is expected that SRK, Ajay Devgan, Suniel Shetty would be among pioneer guests to embrace the occasion. If anyone wondering about Salman Khan’s age, the Sultan actor will turn 51 on December 27 and his bodyguard Shera shares all the inside details about the big bash.

Bollywood’s yet most eligible bachelor Salman Khan will gain one more year of wisdom and he’s gonna share his 51st birthday with family and close friends at his Panvel farmhouse. The celebrations are to begin tonight and will continue into the wee hours of the morning tomorrow, as Salman will enjoy turning a year older.

Talking to a leading tabloid, Shera, Salman’s most trusted bodyguard said, it is that time of the year when we get together and sing, dance have the party. It’s his Malik’s birthday and that is the reason enough for all to celebrate.

The arrangements have all began at Panvel farmhouse which will wear a festive look for this entire week till the New Year eve. While talking about security for the place, Shera said that they are putting special security arrangements in the place. It will be a big bash as lots of Malik’s close friends are expected to attend. The entry will strictly be based on invites and no outsider will be permitted.

Vey much like last year this time also, one can expect a crowd of A-listed celebs attending Salman’s birthday bash. On the list are Salman’s close buddies including Shah Rukh Khan, Ajay Devgan, Suniel Shetty and others. Shera said that it would be an intimate affair with only family and close industry friends being present at the celebration.

Contemplating his own 20-year long association with Salman, Shera said that it has been a great journey. He has been guarding Malik for 20 years and will do that for the rest of his life. This year was a great one for Malik with Sultan as a big hit and hope that 2017 will bestow even bigger success for him.

The over excited, Shera revealed that he has planned to give his malik a surprise gift but can’t speak more about it. He said that last year, I gifted Sallu a bike.

While Shera will be partying and supervising security at Panvel tonight, his son Tiger is abroad in the USA pursuing higher degrees. Shera said that he misses his son but have plans to launch him soon. He has already assisted filmmakers while he was in India before finishing with his words.

Hope you liked it!

Keep looking into this space of CRB Tech Reviews for more updates about Salman Khan’s upcoming movies and other Bollywood updates.

Available link for download

Read more »

Thursday, March 23, 2017

Photos from press conference and delivery of petition to free Albert Woodfox at Louisiana State Capitol Oct 21

Photos from press conference and delivery of petition to free Albert Woodfox at Louisiana State Capitol Oct 21


MEDIA COVERAGE:  Times-Picayune  II  The Advocate  II  The Republic / AP  II  KBOO Radio interviews Robert H King

Robert H King speaks outside LA State Capitol
(View more photos below)

Click on image above to read the statement of support from LA State Rep. Patricia Smith

Congressman Cedric Richmonds statement for October 21:

“I am firm in my resolve to continue the fight to address the horrors of long term solitary confinement in a meaningful way. The plight of the Angola 3 has shined a disinfecting light on this terrible, unconstitutional practice of indefinite solitary confinement without meaningful due process reviews. This past summer, I joined the prominent Ranking Members of the Full House Judiciary Committee and relevant subcommittee Ranking Members in asking the Department of Justice to examine the practice in its use in Louisiana jails. We are continuing to monitor the situation and promise all of you assembled today that the sacrifices of the Angola 3 will not be in vain. We will continue to fight to ensure that prisoners are dealt with in a manner that is consistent with the constitution and I am currently exploring transformative legislation on this very topic. I look forward to partnering with you all to ensure that this story is told and will use my position on the House Judiciary Committee to make certain that we serve the interests of justice. Thank you all for your hard work on this issue and please know that my office stands as a resource to those fighting for justice.”



Louisiana State Capitol
Victory Wallace, Hermans sister



Calendars mark over 41 years in solitary



Robert H King, released in 2001.

Jasmine Heiss of Amnesty Intl.
Michael Mable, Albert Woodfoxs brother
Former A3 investigator Billie Mizell reads a message from Teenie Rogers, the widow of slain prison guard Brent Miller: “Each time I look at the evidence in this case, I remember there is no proof that the men charged with Brent’s death are the ones who actually killed him. It’s easy to get caught up in vengeance and anger, but when I look at the facts, they just do not add up.”

Malik Rahim, early A3 supporter and former Panther


Rev. Dr. Patricia Bates
Petitions delivered.

Available link for download

Read more »

Saturday, March 18, 2017

Photos Touching moment Pope Francis halted his weekly general audience to kiss and hold a disfigured man

Photos Touching moment Pope Francis halted his weekly general audience to kiss and hold a disfigured man








Pope Francis concluded Wednesdays general audience in St Peters Square in Rome by kissing a man covered in growths and joining him in prayer.Photos of the pontiff embracing the severely disfigured man have gone viral online, with commenters praising the pope for his compassion and kindness.In Italian press, the pope has drawn comparisons to his illustrious namesake, St Francis of Assisi - a revered 13th century holy figure, who according to legend kissed a leper he had encountered on a road after receiving a message from God. More pics after cut

Images of Pope Francis comforting the ailing worshiper were taken at the end of the general audience Wednesday, when a man covered in neuronal tumors approached the leader of the Catholic Church asking for a blessing. 
The man reportedly suffers from a rare and painful disease called neurofibromatosis, which causes growths, impaired vision and in some cases cancer
Patients suffering from the ailment, which is genetic and not contagious - are often shunned by society because of their appearance.Pope Francis has been widely praised for his common touch and accessibility. 









Available link for download

Read more »

Friday, March 17, 2017

Pho to Lab PRO Photo Editor! v2 0 311 APK Download

Pho to Lab PRO Photo Editor! v2 0 311 APK Download





Requirement: Varies with device


Description:
Enhance your photos with over 640 beautiful frames, effects, filters or montages! Photo Lab PRO is an easy, quick and fun photo editor. You don’t need to be a Photoshop ninja to make any photo funny and any portrait beautiful. Just pick a filter, frame or montage to use, then choose which image to process, and that’s it! Photo Lab PRO will do all the hard work to let you sit back, relax and get all the honor.
Please note that Photo Lab is an Internet-based application. It helps us keep your devices memory free from tons of resources required to create high-quality artworks of your photos.

Photo Lab PRO has something to amend virtually any picture. It’s up to you which of photo editor superpowers to choose:
- photo montages to get your portrait on a vintage postcard or a birthday cake
- photo frames to surround a picture with fantastic landscapes, lifelike scenes or cute cartoon characters
- face in hole effects to become Iron Man, Darth Vader or Mona Lisa
- photo collages to stitch together dozens and hundreds of pictures
- photo filters to add a happy or a nostalgic mood to pictures
- magazine covers to make you an icon of Playboy or Vogue or put you on the cover of GQ
- text editor to add messages and create greeting cards
- other photo effects such as headwear, celebrity collages, monsters and more!

Some of tools to process your photos which are exclusive to the PRO version include:
- stylized photo effects to make your pictures look like a vintage card or retro film
- artistic filters to turn your photos into elegant drawings or paintings
- human-to-animal montages to give your face to a lion, cat or koala
- background effects to change surrounding of your photo into a dreamlike scenery.

The PRO version is also free of ads and watermarks and processed your photos much faster.

After you process an image with the Photo Lab photo editor you can share the result via Facebook, Twitter, Instagram and other social networks you love. Or you can upload resulting pictures to our servers to get short links and send them as personal messages or emails.

New photo frames and photo filters are added with each update. If you didnt find a particular photo montage or collage, contact the team and you might see it in the next version of Photo Lab PRO. We love hearing from our users and we aim to make Photo Lab PRO the best photo editor on Google Play!

Photo Lab PRO will change your life forever!*
__________
*Photo Lab PRO may or may not change your life but youre totally going to love it!

WHATS NEW IN THIS VERSION

Time to update your Photo Lab!

- We know how much you enjoy our Phone in Hands template, so we are sure youre going to love the new Tablet in Hands effect from ‘New Reality‘.

- Feel like the Martian with our new "Martian Space Helmet" template from the "Face Montages" group.

- Check out our new faerie Smoky Cloud effect from Amazing Frames‘ category and instantly turn your photos into illusions.

- Minor bug fixes.



DOWNLOAD LINKS:
Google Play Store: click here

Direct Download
download apk



Available link for download

Read more »