Play media file with gstream and sdl2
I did not manage to find any tutorial for so I m
This tutorial is based on appsink example from gstreamer documentation:https://gstreamer.freedesktop
Weeklinks 2018#9
The 2018 Guide to Building Secure PHP Softwarehttps://paragonie.com/blog/2017/12/2018-guide-building-secure-php-software
Transifex: platform to translate open source sotware
Installing Gila CMS on Nginx
i hope this guide will help you install Gila CMS on a local server with LEMP environment
On Linux Solus I installed Nginx 1.13.7 and MariaDB 10.1.29
my html folder of nginx server was on /usr/share/nginx/html
there I dowloaded tha last version of gila cms (1.5.0)
Passing array in a function
An array in c is like a pointer to data and passes in a function easy
int myarray[10];
void myfunction(int[10]);
int main() {
myfunction(myarray);
}
void function myfunction(int parray[10]) {
...
}
With sizeof() you can get the
How do you fade edges in Gimp
You have an image and want to create transparent background but have a fuzzy border.
Just to be sure that the image uses alpha channel, right click on the image Layer->Transparency->Add Alpha Channel
On top menu of Gimp select Windows->Toolbox
Cocos2d-x in Ubuntu 16.04
So i was trying to install and setup the cocos2d game engine in Ubuntu 16.04 so I can get started on a c++ project.
I followed the documentation http://cocos2d-x.org/docs/installation/Linux/index.html
Every
How to connect to Ubuntu server with SSH
SSH, or Secure Shell, is a protocol used to securely log onto remote systems. It is the most common way to access remote Linux and Unix-like servers.
Install SSH server on your Ubuntu server
First must install SSH server to Ubuntu
Setup your first Symfony application
Use of composer is recomended. e.g.
composer create-project symfony/framework-standard-edition my_project_name
But you can go for a manual(simplier) installation:
First
CSS Grid - Flexbox Videos
CSS Grid Layout Crash Coursehttps://www.youtube.com/watch?v=jV8B24rSN5o
Incredibly Easy Layouts with CSS Grid