Skip to main content

Will there be a Valorant Netflix web series?

 Arcane which is Netflix show based on league of legends game which is developed by riot the same come which developed valorant, both the game fans and the normal audience loved the show. This show benefited both Netflix and riot so there is no reason why they will not collaborate again for a game like valorant which has a such a large amount of fan base already there .Even though there currently no news about the development of the show , but this would eventually happen. 


 Like many other character based game Valorant also releases some in every patch . Even though all we know about the Valorant world is the there is some kind of element named radianite which is extremely rare and powerful , you can compare it to titranium in marvel universe. And the other thing we kno is there are  two worlds or two earths which somehow got splited and in one world no radianite is left any more so they are going to another world or earth to steal it and that’s the basic plot of Valorant . Even through its been almost 3 years since the game has been released we haven’t got any in-depth information about any character, we basically don’t know anything about the characters. Riot is trying to make suspense and reveals even the small things very slowly.

But even with such a little information about the characters ,the basic plot is very interesting that players have started making  theories even with such less information and those theories are absolutely fabulous opening gates and hopes for a great web series. There is no thought that the story has a huge potential and riot knows it and have something in there sleeves and are just waiting for the right time to come .




Comments

Popular posts from this blog

Reducer Side Join

package my.org; import java.io.IOException; import org.apache.hadoop.fs.Path; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.io.LongWritable; import org.apache.hadoop.io.Text; import org.apache.hadoop.mapreduce.Job; import org.apache.hadoop.mapreduce.Mapper; import org.apache.hadoop.mapreduce.Reducer; import org.apache.hadoop.mapreduce.lib.input.MultipleInputs; import org.apache.hadoop.mapreduce.lib.input.TextInputFormat; import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat; public class redjoin1036 {     // -------------------- CUSTOMER MAPPER --------------------     public static class CustMapper extends Mapper<LongWritable, Text, Text, Text> {         public void map(LongWritable key, Text value, Context context)                 throws IOException, InterruptedException {             String[] line = value.toString().split(",");   ...

Map Reduce

 /*******************************************************************************************  * BIG DATA LAB – 9  * Name  : 21MIS1029  * Topic : MapReduce Programs – Join Operations & Aggregations  *******************************************************************************************/ /*******************************************************************************************  * (i) MAP SIDE JOIN  * ------------------------------------------------------------------------------------------  * Q1. Develop a Map Reduce Program to display the details of employees using two text files  *     (sample code is given) using Map Side Join.  *  * Input:  *   empdetails.txt → (emp_id, emp_name)  *   empdata.txt    → (emp_id, salary, dept_id)  *  * Output:  *   emp_id, salary, dept_id, emp_name  ****************************************************...

RDD commands

  Category Command Description / What It Does Example Creation sc.parallelize(data) Create RDD from a Python list rdd = sc.parallelize([1,2,3]) sc.textFile(path) Read text file (each line = 1 element) rdd = sc.textFile("data.txt") sc.wholeTextFiles(path) Read files as (filename, content) pairs rdd = sc.wholeTextFiles("folder/") Basic Transformations map(func) Apply function to each element rdd.map(lambda x: x*2) flatMap(func) Apply function & flatten result rdd.flatMap(lambda x: x.split(" ")) filter(func) Keep elements matching condition rdd.filter(lambda x: x>10) distinct() Remove duplicate elements rdd.distinct() union(rdd2) Combine two RDDs rdd1.union(rdd2) intersection(rdd2) Keep common elements rdd1.intersection(rdd2) subtract(rdd2) Elements in first RDD but not second rdd1.subtract(rdd2) cartesian(rdd2) All pairs between two RDDs rdd1.cartesian(rdd2) sample(withRepla...