This file has been truncated, but you can view the full file.
This file contains 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
(globalThis.webpackChunksup_frontend = globalThis.webpackChunksup_frontend || []).push([[886], { | |
53121: (e,t,i)=>{ | |
i.d(t, { | |
v: ()=>g | |
}); | |
i(29767); | |
var s = i(39513); | |
const r = 1 | |
, n = 2; |
This file contains 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
# Konfigurasi reverse proxy | |
frontend webFrontEnd | |
bind *:80 | |
bind *:443 ssl crt myCert.pem | |
# Redirect HTTP ke HTTPS (Jika request tidak melalui HTTPS) | |
http-request redirect scheme https if !{ ssl_fc } | |
# Cek subdomain |
This file contains 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
openssl genpkey -algorithm RSA -out private_key.pem | |
openssl req -new -x509 -days 1825 -key private_key.pem -out certificate.pem -config .\self-signed-kneks.cnf |
This file contains 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
FROM php:7.4-fpm | |
RUN apt-get update | |
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \ | |
php -r "if (hash_file('sha384', 'composer-setup.php') === '55ce33d7678c5a611085589f1f3ddf8b3c52d662cd01d4ba75c0ee0459970c2200a51f492d557530c71c15d8dba01eae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \ | |
php composer-setup.php \ | |
php -r "unlink('composer-setup.php');" \ |
This file contains 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
<style> | |
.accordion { | |
background-color: #eee; | |
color: #444; | |
cursor: pointer; | |
padding: 18px; | |
width: 100%; | |
text-align: left; | |
border: none; |
This file contains 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
# Project Goals | |
Membangun aplikasi yang dapat digunakan untuk memudahkan dalam memberikan tugas dan mengelola tugas dari _Project Manager_ ke anggota. Serta memudahkan anggota untuk melihat tugas-tugas yang harus dikerjakan guna mencapai tujuan project pada kegiatan _Project Based Learning._ | |
# Project Scope | |
- Project ini digunakan sebagai penunjang kegiatan _Project Based Learning_ iTech Hackathon. | |
- Pada milestone [0.1.0](https://github.com/iTech-Hackathon/Task-Management/milestone/1) (Klik link for more info), project ini lebih memfokuskan pada **Software Feature** yang sempurna dengan tampilan yang sederhana. Kemudian, secara _incremental_ aplikasi dari project ini dikembang hingga menjadi lebih baik. | |
- Project yang akan dikembangkan merupakan aplikasi berbasis web yang responsif. | |
- Terdapat 2 role (atau hak akses) dalam aplikasi ini, yaitu: | |
- Project Manager, dengan hak akses berupa: | |
- Mengelola project (Create, Read, Update & Delete) |
This file contains 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
{ | |
"projects": [ | |
{ | |
"id": "20223-001", | |
"title": "Membuat Calculator", | |
"description_url": "https://raw.githubusercontent.com/iTech-Hackathon/Task-Management/main/docs/Specifications.md", | |
"tasks": [ | |
{ | |
"id": "001", | |
"title": "Membuat struktur HTML", |
This file contains 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
package com.example.activityintentchallenge; | |
import androidx.appcompat.app.AppCompatActivity; | |
import android.content.Intent; | |
import android.os.Bundle; | |
import android.util.Log; | |
import com.example.activityintentchallenge.databinding.ActivityMainBinding; |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical" | |
tools:context=".MainActivity"> | |
<TextView | |
android:id="@+id/article_heading" |
NewerOlder