Pedoman ini di adopsi dari AngularJS Commit Convention.
Pesan commit harus mengikuti struktur seperti ini:
<type>(<optional scope>): <description> empty separator line <optional body> empty separator line
Pedoman ini di adopsi dari AngularJS Commit Convention.
Pesan commit harus mengikuti struktur seperti ini:
<type>(<optional scope>): <description> empty separator line <optional body> empty separator line
In this guide you can find how to resolve the following issues.
Feel free to ask any questions in the comments section below.
# https://stackoverflow.com/questions/71000120/colab-0-unimplemented-dnn-library-is-not-found | |
# [Solved] Colab: (0) UNIMPLEMENTED: DNN library is not found | |
# Answer: https://stackoverflow.com/a/72610419 | |
# Check libcudnn8 version | |
!apt-cache policy libcudnn8 | |
# Install latest version | |
!apt install --allow-change-held-packages libcudnn8=8.4.1.50-1+cuda11.6 |
ABRI | |
Aceh | |
Achenese | |
AD | |
Afganistan | |
Africa Selatan | |
Afrika | |
Agustus | |
Akpol | |
Akuarius |
// Ref: https://forum.arduino.cc/t/how-to-create-lookup-table/116161/19 | |
// Title: How to create lookup table | |
int[] tableLookup = { | |
140, 300, | |
151, 280, | |
162, 260, | |
184, 240, | |
211, 220, | |
250, 200, |
deb http://kambing.ui.ac.id/debian/ sid main contrib non-free
deb http://kambing.ui.ac.id/debian/ testing main contrib non-free
deb http://kambing.ui.ac.id/debian/ testing-updates main contrib non-free
deb http://kambing.ui.ac.id/debian-security/ testing/updates main main contrib non-free
-- Ref: https://stackoverflow.com/a/5109190/8271526 | |
SELECT | |
pg_terminate_backend(procpid) | |
FROM | |
pg_stat_activity | |
WHERE | |
-- don't kill my own connection! | |
procpid <> pg_backend_pid() | |
-- don't kill the connections to other databases |
// Ref: https://stackoverflow.com/a/25323966/8271526 | |
function dateRounding(interval, unit, date) { | |
const start = moment(date); | |
const remainder = interval - (start.get(unit) % interval); | |
const dateTime = moment(start).add(remainder, unit).format("DD.MM.YYYY, h:mm:ss a"); | |
return dateTime; | |
} |
import React from 'react'; | |
const AspectRatio = ({ children, className = "", ratio, style = {} }) => { | |
const r = ratio.split(":"); | |
const val = 100 / parseFloat(r[0]) * parseFloat(r[1]); | |
return ( | |
<div className={className} style={{ position: 'relative', width: "100%", paddingTop: `${val}%`, ...style }}> | |
<div style={{ position: 'absolute', top: 0, left: 0, height: "100%", width: "100%" }}>{children}</div> | |
</div> | |
) |