Search found 730 matches

by bobbyjones
Wed Jun 12, 2019 2:23 pm
Forum: Support and Development
Topic: [SOLVED] enet cannot create any server
Replies: 14
Views: 13489

Re: enet cannot create any server

Your ip address and port combo is causing host_create to fail. If you use 127.0.0.1:8888 as the ip port combo it will work
by bobbyjones
Wed May 29, 2019 7:47 am
Forum: Support and Development
Topic: Code improvement (First time Lua-enet)
Replies: 7
Views: 7476

Re: Code improvement (First time Lua-enet)

Do not know if you know this but you can run love in such a way that does not initialize the window for the server.
by bobbyjones
Wed May 22, 2019 5:47 pm
Forum: General
Topic: app sigining error. can someone help me with this error
Replies: 1
Views: 3548

Re: app sigining error. can someone help me with this error

did you create a keystore?

Edit: if on android these instructions should help.
https://developer.android.com/studio/pu ... pp-signing
by bobbyjones
Mon May 20, 2019 6:35 pm
Forum: Games and Creations
Topic: My Computer Vision Homework.
Replies: 4
Views: 5634

Re: My Computer Vision Homework.

I think Rowan might be classified as a research university. not sure. It is a normal American University. It has multiple colleges and a ton of degree programs. I am doing a BS in CS currently. But I am planning to expand by getting a BS in math. As well as a master in both CS and math and potential...
by bobbyjones
Mon May 20, 2019 3:14 pm
Forum: Support and Development
Topic: enet broadcast behaviour
Replies: 1
Views: 2567

Re: enet broadcast behaviour

It sends the data to all connected peers. For the client that is generally just the server. For the server its all of the connected peers. Actually, it does not send the data. It just queues it to be sent. The data is actually sent when host:service or host:flush is called. Are you doing both of tho...
by bobbyjones
Mon May 20, 2019 7:08 am
Forum: General
Topic: 11.0 bugs
Replies: 47
Views: 66296

Re: 11.0 bugs

Hey, I think I've found strange bug or I'm missing something. Anyway the simple line below does not work if love.filesystem.getInfo("Religion", "directory") == nil then love.filesystem.createDirectory("Religion") end It simply refuses to create a folder. The solutions ...
by bobbyjones
Sun May 19, 2019 4:41 am
Forum: Games and Creations
Topic: My Computer Vision Homework.
Replies: 4
Views: 5634

Re: My Computer Vision Homework.

Just realized HW3 does nothing lol. I was printing to console but the console was not enabled. In sublime the console is always open. I go to Rowan University.
by bobbyjones
Sun May 19, 2019 4:33 am
Forum: Libraries and Tools
Topic: Lua Neural Network
Replies: 5
Views: 7831

Re: Lua Neural Network

Hi! I wrote this code using your Network but it doesn't work. What am I missing? local NeuralNetwork = require("lnn") math.randomseed(os.time()) local nn = NeuralNetwork.create(2, 1, 2, 2, 0.3) local training_data = { { inputs = {0, 1}, target = {1} }, { inputs = {1, 1}, target = {0} }, {...
by bobbyjones
Fri May 17, 2019 6:45 pm
Forum: Support and Development
Topic: Android language
Replies: 6
Views: 5953

Re: Android language

Do LANG and LC_ALL work on android? I read that it does not work. I believe the only way to access the Locale and language is through JNI.
by bobbyjones
Fri May 17, 2019 4:28 am
Forum: Support and Development
Topic: Send stuff via lan [solved]
Replies: 2
Views: 3182

Re: Send stuff via lan

https://coronalabs.com/blog/2014/09/23/ ... th-udptcp/

That tutorial was written for CoronaSDK but the library it uses, Luasocket, is available in Love. You should be able to get inspiration from the tutorial.