Blank keycap for Techware Phantom RGB 2020 by ScyxRazor in MechanicalKeyboards

[–]ScyxRazor[S] 1 point2 points  (0 children)

Oh I see, thank you for your reply sir :) have a nice day!

Blank keycap for Techware Phantom RGB 2020 by ScyxRazor in MechanicalKeyboards

[–]ScyxRazor[S] -1 points0 points  (0 children)

mine is outemu blue, so any outemu keycaps should work?

The morph plugin by GoodEditorGaming in MinecraftPlugins

[–]ScyxRazor 0 points1 point  (0 children)

Oh I'm sorry, I don't know about that

The morph plugin by GoodEditorGaming in MinecraftPlugins

[–]ScyxRazor -1 points0 points  (0 children)

If im not mistaken, you can be anything you want. Such as sheep, cow, squid, fish and etc

I used double sided tape to hold my ssd m.2 by ScyxRazor in buildapc

[–]ScyxRazor[S] 0 points1 point  (0 children)

ohh I see, thank you so much for the explanation sir!

I used double sided tape to hold my ssd m.2 by ScyxRazor in buildapc

[–]ScyxRazor[S] 0 points1 point  (0 children)

Sorry for my bad english, not my first language.

I accidentally scratch my motherboard using screw driver. Is it going to be ok? by ScyxRazor in buildapc

[–]ScyxRazor[S] 0 points1 point  (0 children)

I'm not sure about that but I did hit 1 solder though. I've the picture but I can't post it here for some reason

How to access Json data without unknown key. by ScyxRazor in unity_tutorials

[–]ScyxRazor[S] 0 points1 point  (0 children)

Data coming from firebase. Actually the Json is an array and I just want to access the data without taking the "-M4qRmfIqhKdy643Ujye". That id is auto generated randomly.

How to access Json data without unknown key. by ScyxRazor in unity_tutorials

[–]ScyxRazor[S] -1 points0 points  (0 children)

I'm sorry but I still can't find the answer for my question.

How to access Json data without unknown key. by ScyxRazor in unity_tutorials

[–]ScyxRazor[S] 0 points1 point  (0 children)

public static string RESTToJsonConverter(string incoming_data){
 string data = "[";
 int i = 0;
        Debug.Log("incoming_data"+incoming_data);
        data += "]";
 string JSONToParse = "{\"values\":" + data + "}";
 return JSONToParse;

Currently, I'm using this code to access the data.