Install & Configure OpenVPN Server on Windows
How to install and configure OpenVPN server on Windows 10 You and your co-workers often work remotely. You want to build a vpn server on Windows operating system. In this video, I will show you how to install OpenVPN server on Windows ---------- server.ovpn : port...
Install & Configure OpenVPN Server on Windows
How to install and configure OpenVPN server on Windows 10
You and your co-workers often work remotely. You want to build a vpn server on Windows operating system. In this video, I will show you how to install OpenVPN server on Windows
———-
server.ovpn :
port 1194
proto udp
dev tun
ca ca.crt
Cloudflare Tunnel Easy Setup
Cloudflare Tunnels is an AWESOME service for home users and businesses alike. But what is it exactly? Cloudflare Tunnels is kind of like a VPN connection in that it’s a secure way to access resources on your internal private network from the outside world. [mgamazon...
Cloudflare Tunnel Easy Setup
Cloudflare Tunnels is an AWESOME service for home users and businesses alike. But what is it exactly? Cloudflare Tunnels is kind of like a VPN connection in that it’s a secure way to access resources on your internal private network from the outside world.
GitHub Copilot X: The AI-powered developer experience
At GitHub, our mission has always been to innovate ahead of the curve and give developers everything they need to be happier and more productive in a world powered by software. View original article
GitHub Copilot X: The AI-powered developer experience
At GitHub, our mission has always been to innovate ahead of the curve and give developers everything they need to be happier and more productive in a world powered by software.
Server-side WebAssembly prepares for takeoff in 2023
In the 18 months since Adobe's engineers first began to explore server-side WebAssembly, the company has deployed a set of proof-of-concept apps in its internal Kubernetes platform using wasmCloud. View original article
Motion Canvas is now Open Source!
=== Check out Motion Canvas === https://ift.tt/NzeRLG5 === Support the Channel === https://ift.tt/hp78kVY === Livestreams on the Second Channel === https://www.youtube.com/aarthificial2/about === Wishlist Astortion on Steam === https://ift.tt/ZvG0U6E [mgamazon...
View original article
Create stunning videos from text in minutes
Synthesia is an AI video generation platform. Thousands of companies use it to turn boring docs, PowerPoints or PDFs into engaging training, marketing or how-to videos. Trusted by 8,000+ companies of all sizes See how it works With Synthesia, anyone on your team can...
Microsoft Windows 3.10
Home of the original IBM PC emulator for browsers. View original article
The Best Free Backup for EVERY Operating System
Want a Universal Backup that works on EVERY operating system and is free + open source? Urbackup is the software you are looking for! Website Guide: https://ift.tt/mz8PTuq Support My Work...
Apache Guacamole™
Apache Guacamole is a clientless remote desktop gateway. It supports standard protocols like VNC, RDP, and SSH. We call it clientless because no plugins or client software are required.
Rustdesk – an Open Source, Self Hosted alternative to TeamViewer, AnyDesk, GoToAssist, and the like.
======== LINKS ======== Show NOtes https://ift.tt/gGprn3v RustDesk Main Site https://rustdesk.com RustDesk GitHub https://ift.tt/FPdywAu Donate to RustDesk https://ift.tt/qPh13kH Support my Channel and ongoing efforts View original...
Google annunced KataOS, an open source operating system for machine learning
To begin collaborating with others, we’ve open sourced several components for our secure operating system, called KataOS, on GitHub, as well as partnered with Antmicro on their Renode simulator and related frameworks.
MySQL replication: How to recover from “Event too small corruption” or “Slave SQL: Relay log read failure”
The basic principle is, just restart where the slave left off. The problem arises if a binary log, on the slave side, remains corrupt. The recovery is relatively simple, just follow the recipe: STOP SLAVE SHOW SLAVE STATUS Note down 'Relay_Master_Log_File' and...
SystemD quick cheat sheet
A small collection of Systemd commands, along with the Sysvinit counterparts. Sysvinit Command Systemd Command Notes service frobozz start systemctl start frobozz Used to start a service (not reboot persistent) service frobozz stop systemctl stop frobozz Used to stop...
NativeScript example, step by step, Windows 10
A tiny, 5 minute, tutorial on creating a new empty project using NativeScript + TypeScript, compiling it and running in Android. First of all, install NativeScript (NodeJS v4.6.0 x64)plus the latest NativeScript. Check if the installation is OK: tns...
tip: Volley comm library for android, available via Gradle
Previously, in order to use Volley, the only way was to add the "jar" file to the project - not anymore - official volley is now available, just change the app.gradle file: [mgamazon...
Converting multi-page PDF to PNG using ImageMagick
Quick tutorial on converting PDF files to PNG using ImageMagick in CentOS. Foreplay: install ImageMagick First, install ImageMagick using yum. As ImageMagick is not available, you need to activate the EPEL repository in your CentOS installation. wget...
Download Android Apps with Source Code
Available at f-droid is a directory of open source android apps (full with source code). A great learning resource for beginners.
Web font generator
At fontSquirrel. You upload your font and it generates every known format, CSS code and even embeds fonts inside CSS using base64 data.
Public Datasets
Available at Xiaming's Github, Awesome Public Datasets are (mostly) free. Subjects include Agriculture, Biology, Climate/Weather, Complex Networks, Computer Networks, Contextual Data, Data Challenges, Economics, Energy, Finance, Geology, GeoSpace/GIS, Government,...
Delphi optimization tools and patches
At Andy's Blog. Includes DelphiSpeedUp, IDEFixPack, VCLFixPath among others.
Composer with WordPress, how to
by SCOTT WALKINSHAW
Compile PHP 7 FPM + CLI from source, without touching the installed PHP 5.x
The following explains how to install PHP 7.0, from source, without uninstalling your current PHP. I used this in a development and continuous integration machine, so i can test both PHP 5.6 or PHP 7.x, ensuring our apps are php7 ready. As i am using Apache + Mod_php...
PHP 7.0 released
Official release at PHP.net
Optimize Eclipse: better speed, better memory usage
by Nicolas Bize.
VMWare player, fixing “virtual disk needs repair”
This one pops up from time to time, and VMWare Player has no tool to fix it. Worry no more, Christos Matskas found the solution.
Android’s RecyclerView, item clicks, how to
RecyclerView is a great class what you should consider over ListView for building list interfaces. It offers more flexibility and has built-in hooks that make implementing animations and custom layouts much easier compared to ListView. Unfortunately RecyclerView is...