This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//ubah mp3 menjadi nama ekstensi file yang ingin diubah | |
get-childitem *.mp3 | foreach { rename-item $_ $_.Name.Replace("namaprefix", "") } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
... | |
<svgicon icon="plus-box"></svgicon> | |
... | |
lorem ipsum lalala | |
... | |
</template |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
... | |
... | |
</template> | |
<script> | |
//... | |
import './compiled-icons'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//... | |
import VueSVGIcon from 'vue-svgicon' | |
//.. | |
Vue.use(VueSVGIcon) | |
//... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
//... | |
"scripts": { | |
//... | |
"generate-icons": "vsvg -s ./svg-icons -t ./src/compiled-icons" | |
} | |
//... | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ npm install vue-svgicon --save-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Program Lesson1_Program1; | |
Begin | |
Write('Hello World. Prepare to learn PASCAL!!'); | |
Readln; | |
End. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<title>HTML Tutorial</title> | |
<body> | |
<h1>This is a heading</h1> | |
<p>This is a paragraph.</p> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ujiboolean1 { | |
public static void main(String[] args) { | |
// TODO Auto-generated method stub | |
boolean a, b; | |
//perrnyataan benar | |
a = true; | |
System.out.println("nilai a = " + a); | |
if (a) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class faktornya { | |
public static void main(String[] args) { | |
Scanner a = new Scanner(System. in ); | |
System.out.println("Masukkan angka"); | |
int nilai = a.nextInt(); | |
System.out.println("Faktor-faktornya:"); | |
int tambah = 0; | |
for (int z = 0; z <= nilai; z++) { |