Most voted "prisma" questions
This tag should be used for questions about the Prisma programming language. Prisma is an interpreted programming language that can be used with command sets in English.
Learn more…10 questions
Sort by count of
-
12
votes2
answers670
viewsWhat is it, Prism?
What kind of Prism is that? Is it eating? Or programming? I’ve never heard of it. Tag: prism I don’t want to know everything, but basic information about what this is.…
-
9
votes1
answer219
viewsHow to read a file in Prism?
I was trying to read a file in Prisma but I can’t find the correct function: local arquivo = 'arquivo.txt' imprima(arquivo) On the moon, it would be something like local file = 'file.txt';…
prismaasked 7 years, 4 months ago Rafael Lemos 551 -
2
votes1
answer104
viewsError in Reload, ts-Node-dev and Prismaclient
Good afternoon my friends, all in peace? I’m having to migrate a small API to Prisma by removing Typeorm. Well, so far I have been able to install and run smoothly, MAS (normal, kkkk). I noticed…
-
1
votes2
answers151
viewsHow to convert a string to hexadecimal?
I want to convert a string to hexadecimal: cadeia = "blablabla"
prismaasked 7 years, 4 months ago Rafael Lemos 551 -
1
votes1
answer137
viewsPrisma - How to convert integer to binary?
I need a function in the Prism language that converts an integer to its binary form. For example, to convert 255 for 11111111. I have to create a formula just like…
prismaasked 7 years, 1 month ago Rafael Lemos 551 -
1
votes0
answers78
viewsHow to calculate Mbps?
I’m picking up information from the interface of an internet modem: Txbytes, Rxbytes, Uptime He gives me a json input: Entrada=([[ { "uptime":"15423", "txbytes":"1147089", "rxbytes":"23124634" } ]])…
-
0
votes1
answer500
viewsHow to convert a table to json?
The table looks like this: tab = { semana={"seg","ter","qua"}, mês={"jan","fev","mar"}, modelo={ casaco={"pele","couro"} } } I need the output to be in json format for javascript to interpret.…
prismaasked 7 years, 4 months ago Rafael Lemos 551 -
0
votes1
answer65
viewsPrisma - How to handle semicolon files "csv"?
The title of the question refers to csv because it is widely used and has the same logic but my server produces the following output: ifname | username | calling-sid | ip | type | comp | state |…
prismaasked 7 years, 1 month ago Rafael Lemos 551 -
0
votes1
answer187
viewsHow to declare "strings" accented strings?
Lua is written in C logo shares the American Standard Code for Information Exchange "ASCII" Accepts matrix key declaration with accent: rafael = {} rafael["é"]="eu" print(rafael["é"]) --saída: eu…
-
0
votes1
answer80
viewsMutation to create a relationship record
Ambience: Prisma GraphQL GraphQL Yoga NodeJS PostGresql I’m trying to make a mutation register a person and an address for that person. However Person and Address are separate tables, and I’m not…