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 matplotlib.pyplot as plt | |
| def draw_gantt(gantt_data, title): | |
| fig, ax = plt.subplots() | |
| for i, (name, start, end) in enumerate(gantt_data): | |
| ax.barh(y=0, width=end-start, left=start) | |
| ax.text(start + (end-start)/2, 0, name, | |
| ha='center', va='center', color='white', fontsize=10) |
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
| // Anggota Kelompok | |
| // - Arie Akbarull Ridho (242410103025) | |
| // - Zein Khamami R.A (242410103061) | |
| // - Wildan Ahmad D (242410103081) | |
| using System; | |
| namespace AplikasiMenggambar | |
| { | |
| public class Canvas | |
| { |
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
| alias hematin="sudo /home/arie/wondershaper/wondershaper -a wlp2s0 -d 900 -u 900" | |
| alias gajadihemat="sudo /home/arie/wondershaper/wondershaper -a wlp2s0 -c" |
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 turtle | |
| import random | |
| turtle = turtle.Turtle() | |
| turtle.speed(0) | |
| turtle.penup() | |
| vertices = [(-240, -190), (0, 280), (240, -190)] | |
| for vertex in vertices: | |
| turtle.goto(vertex) |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>APCB</title> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; |
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
| // Override key bindings by placing them into your key bindings file. | |
| [ | |
| { "key": "escape escape", "command": "workbench.action.exitZenMode", | |
| "when": "inZenMode" }, | |
| { "key": "shift+escape", "command": "closeReferenceSearch", | |
| "when": "inReferenceSearchEditor && !config.editor.stablePeek" }, | |
| { "key": "escape", "command": "closeReferenceSearch", | |
| "when": "inReferenceSearchEditor && !config.editor.stablePeek" }, | |
| { "key": "escape", "command": "editor.closeTestPeek", | |
| "when": "testing.isInPeek && !config.editor.stablePeek || testing.isPeekVisible && !config.editor.stablePeek" }, |
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
| dibawah ini untuk masuk ke container | |
| docker container exec -i -t namacontainer /bin/bash |
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
| Gunakan %0A untuk membuat enter/bikin line baru di wa | |
| Contoh : | |
| https://wa.me/628123456789?text=Nama:%20Arie%20Akbarull%20Ridho%0ANama%20Barang:%20Hosting%20Unlimited%0AMetode%20Pembayaran:%20Dana%0ATotal%20Harga:%20400.000 |
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
| if (typeof window !== 'undefined') { | |
| const loader = document.getElementById('globalLoader'); | |
| if (loader) | |
| loader.style.display = 'none'; | |
| } |
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
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact" | |
| }, | |
| "emmet.triggerExpansionOnTab": true |