Web Services Development and Desktop Application

Our service available which to give the best service to our customers company for any categories development.

3Gen it-Dev

3Gen it-Dev is the community that in it, have been founded by several students from widyatama university at faculty of engineer major in informatics engineering.

The Magisters of Engineering

Have been graduated Huraa!

Teaches in the class widyatama

Teach by Mr.Logic

Cyber Eye Bandung

Cyber Eye Bandung is one of all community that founded by Adi Ahmad Mat outside campus, and have a goal to be technopreneurs in expanding knowledge and business in information technology!

Samsung Academy

Meet Up with Samsung Android Community Bandung

We are in Event of Programming Contest ACM 2011

This Photo taken when Event of Programming Competition ACM which implemented with online system from Widyatama University through Bina Nusantara University and some of top university in Asia to United States as the Promoter.

Informatics Research Development Lab

My Friends and as Senior was built and assembly a robots in ERD Lab.

The Committee of Advance.Inc Go to Campus Widyatama - Saung Android Bandung Workshop and Seminar

On this seminar we're discuss, to provide training about how to developing and costumizing mobile android app with eclipse development tools and also there is the introducing for the new product of Advance Android products (VANDROID)

Senin, 24 Juni 2019

Setting Visual Studio Code Highlighter - Penanda Open dan Closing Tag HTML

Hi sobat, pada kesempatan kali ini saya ingin membagikan informasi terkait aplikasi text code editor yang mulai banyak dikenal dan populer di lingkungan para pengembang aplikasi / software (programmer). Berikut ini aplikasi yang saya gunakan yaitu Visual Studio Code (Code Editor). Aplikasi ini sangat menarik, karena dengan kapasitasnya yang kecil dan ringan digunakan, visual studio code juga menawarkan banyak fitur library ekstension untuk kemudahan dan kenyamanan bekerja para coder :


Langkah - langlah untuk melakukan pengaturan diantaranya berikut ini:

1. Buka aplikasi visual studio code sobat coder
2. Pilih menu file => preferences => extension => Pada kotak pencarian di left side bar, ketik Highlight Matching Tag => install, setelah instalasi selesai kemudian lakukan pengaturan di file "settings.json"
3. Pilih menu file => preferences => extension => pilih highlight matching tag => pilih bagian "Beginning style", kemudian klik "Edit in settings.json"


Berikut isi script json pada file settings.json :
{
    "files.autoSaveDelay": 998,
    "update.mode": "manual",
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection":     "automaticallyOverrodeDefaultValue",
    "java.errors.incompleteClasspath.severity": "ignore",
    "php.validate.executablePath": "C:\\xampp\\php\\php.exe",
    "files.exclude": {
        "**/.classpath": true,
        "**/.project": true,
        "**/.settings": true,
        "**/.factorypath": true
    },
    "editor.wordWrap": "on",
    "window.zoomLevel": 0,
    "workbench.colorTheme": "Dracula Soft",
}

lalu ubahlah dengan menambahkan script json seperti berikut ini:

"highlight-matching-tag.styles": {
        "opening": {
         "name": {   
        "backgroundColor": "rgba(63, 191, 63, 0.20)",
        "underline": "yellow",
        "highlight": "rgba(255,255,0,0.2)"
        }    
      }
    },
        "editor.occurrencesHighlight": false



Hasilnya jadi seperti ini jika digabung:

{
"files.autoSaveDelay": 998,
"update.mode": "manual",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"java.errors.incompleteClasspath.severity": "ignore",
"php.validate.executablePath": "C:\\xampp\\php\\php.exe",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"editor.wordWrap": "on",
"window.zoomLevel": 0,
"workbench.colorTheme": "Dracula Soft",

"highlight-matching-tag.styles": {
"opening": {
"name": {
"backgroundColor": "rgba(63, 191, 63, 0.20)",
"underline": "yellow",
"highlight": "rgba(255,255,0,0.2)"
}
}
},
"editor.occurrencesHighlight": false

}


Result in code editor , Taraaa....
Please give  your feedback below, thank you !