Linux versions of many Microsoft software products are supported and are available through the “Linux Software Repository for Microsoft Products” at https://packages.microsoft.com. Unfortunately, the BlobFuse installation via the apt package repository for Microsoft products is not available for Debian. It’s unclear why this significant omission occurred—leaving Debian out of the loop. Below are steps tailored… Continue reading
Posts in "dev"
How to Install .NET Core 3.1 Runtime and SDK On Debian 11
This tutorial explained how to install .net core on Debian 11 Linux system. Login to your debain system with sudo privileged account. Open a terminal, update the apt cache and install below required packages 1.Update Debian 11 ‘Bullseye’ 2.Enable Microsoft PPA First, you need to enable Microsoft packages repository on your Debian system. The Microsoft official team… Continue reading
How to Set IPv4 Address for Intranet
IPv4 is controlled standard where IANA is one defining address ranges and assigns IP numbers to user (companies). IANA defines 3 private ranges used only on Intranet or private use, not used on Internet. Ranges are called classes A, B and C and they are: Home routers usually come preprogrammed to 192.168.0.x or 192.168.1.x Reference
Git, ‘The Stupid Content Tracker’
Bagi kebanyakan orang, keberhasilan ‘mengubah dunia’ tidak terjadi dua kali. Berbeda dengan Linux Torvalds, tidak diragukan lagi setelah berhasil mengembangkan kernel dari tahun 1991, keberhasilan keduanya adalah mengembangkan git dari tahun 2005. The name “git” was given by Linus Torvalds when he wrote the veryfirst version. He described the tool as “the stupid content tracker”and… Continue reading
Technology Stack (Server) ‘Kompas TTS’
Kurang lebih enam (6) bulan ini beberapa rekan dari berbagai unit (Desain, Teknologi, Inovasi, Produksi Iklan, Marketing Communication dan juga partner kami, Radyalabs) berusaha mengembangkan atau sebut saja mem-porting permainan Teka-Teki Silang Kompas (Kompas TTS) dari format kertas koran menjadi aplikasi mobile di smartphone. Berawal dari Smartphone dengan sistem operasi Windows Phone (Thanks to Nokia… Continue reading
SAP BW: Logistics (LIS) Setup Tables for Full and Delta Extraction
Ok, we got a disaster in SAP BW NW 7 machine, part of the physical memory just suddenly break! Yeah! and The ‘fun’ part , the malfunction occures on heavy extraction of data from SAP R3 / IS-M Production Server. It break on pararel processing , although we can identify the malfunction Object, the team… Continue reading
Protect Apache with .HTACCESS files
If you’re using Apache web server, this is the first and basic step to protect your web application using .htaccess file. create and put the .htaccess file in root folder of your application and write the code;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# Protect the files that important and contain sensitive information such as database username and password <files my-database-files.php> Order allow,deny Deny from all </files> # Protect .htaccess files it self <files .htaccess> Order allow,deny Deny from all </files> # protect development folder and files <files my-dev-files.php> Order deny,allow Allow from xx.xx.xx.xx Deny from all </files> # Rules to disable directory browsing Options -Indexes |
Sublime Text Code Editor!
Right now, I’m using various developer tools to manage application code. Before this month, developer tools such as Visual Studio, SQL Server Management Studio, HeidiSQL and Notepad++ are the daily tools for developing application. Well, i think the application world is evolving in rapid ways, the horizon of an application development suddenly becoming more vast… Continue reading
Hostgator, can’t connect to WordPress
Dear Support, Q: Today all my wordpress (wp) installation (parent and add-on domain) (foo.com; foo1.org, foo3.or.id) can’t perform simple wp feature “add new plugin”. It shows this error message: An unexpected error occurred. Something may be wrong with WordPress.org or this server configuration. If you continue to have problems, please try the i try to… Continue reading
SQL Server 2012 : Manageability for Administrator
Beberapa bulan lalu, pada acara SQL Server Meeting di kantor Microsoft Indonesia, saya mangajukan diri untuk membuat salah satu bab ebook ‘What’s New di SQL Server 2012. Saya mendapat jatah membuat materi Manageablity for Administrator Saya sudah menyelesaikan materi tersebut pada bulan Februari 2012. Ketika memulai membuat materi , SQL Server 2012 masih pada tahap… Continue reading