Posts by Toniotti • 97 points
13 posts
-
0
votes0
answers23
viewsQ: GNU/Open Cobol closing file after Exit
I use Netexpress in my work and I’m looking to develop some programs at home to practice, as the Netexpress license is paid for, I opted for GNU/Open Cobol. The problem I am having is that after…
-
3
votes1
answer54
viewsQ: Implement only direct methods from an interface
Let’s say I have the interface Vehicle: public interface Vehicle { void moveForward(); void moveBackward(); void moveLeft(); void moveRight(); } And the interface LandVehicle: public interface…
-
0
votes1
answer105
viewsQ: Clear memory unused object
I have a set that contains millions of Strings and uses a lot of memory, the problem is that after I use it inside a foreach the memory used is not released, resulting in some executions of the…
-
1
votes1
answer435
viewsQ: How to make character jump while walking?
I am creating a game in Javascript. This is my first contact with the language and also the development of games. Going straight to the question, I can walk and jump in the game, but when I’m…
-
0
votes1
answer324
viewsQ: ffmpeg-php does not work
I am trying to generate a thumbnail with ffmpeg-php, but no command of it works, always gives an error saying that the class was not found, example: Fatal error: Class 'ffmpeg_movie' not found.…
-
0
votes0
answers47
viewsQ: MKV without HTML5 subtitle
I am creating a website where will contain mkv videos with subtitles but the subtitles of the video do not appear, the video runs normally with audio but subtitles do not appear. From what I saw…
-
0
votes1
answer1135
viewsQ: Simple gallery with javascript
I wanted to make a simple gallery, just to pass images that are inside a folder, but would be several folders, with a number of different images so it would have to be automatic. My code is like…
-
2
votes1
answer762
viewsQ: Generate thumbnail video in php
I wanted to take the thumbnail of a video after the video was uploaded on the site, I already searched a lot and only what I think is about ffmpeg and the "tutorials" basically tell you the commands…
-
0
votes3
answers4049
viewsQ: Pass variable to another php file
I’m making a system where the user uploads a video and automatically already a page is created on the site with the video. I was able to upload and create the page, but I use an iframe to put the…
-
0
votes1
answer113
viewsQ: View database data from
I want to display several data on a page but it appears only one, when instead of appearing the image of each register for example it appears only that of a which is the latest record ever made.…
-
0
votes0
answers193
viewsQ: PHP page generator
I wanted to do more or less like Youtube, where you fill out the form and then you create a page with your video (my site will also contain videos), I’ve done the uploading part but I have no idea…
-
1
votes0
answers23
viewsQ: Wamp Server Forbidden error
I’m trying to put a site online (a basic site only for testing), but when I enter by my ip followed by port 8080, since port 80 usually gives problem, I get the message "Forbidden, you don’t have…
-
1
votes0
answers67
viewsQ: Lists in HTML5
I’m making a video site and wanted to put a page with several videos next to each other, I tried to do creating div by div was right in my resolution but for other resolutions the content passes the…