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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Text; | |
using System.Windows.Forms; | |
using Syncfusion.Windows.Forms.Diagram; | |
using System.Drawing.Imaging; | |
using Syncfusion.Windows.Forms.Tools; |
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
case @obat | |
when "sering sakit" | |
"puasa sunnah" | |
when "wajah terlihat murung tidak bercahaya" | |
"shalat malam tahajud" | |
when "hati sempit" | |
"baca Al-Quran dan maknanya" | |
when "tidak bahagia" | |
"shalat diawal waktu" |
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
$ wget \ | |
--recursive \ | |
--no-clobber \ | |
--page-requisites \ | |
--html-extension \ | |
--convert-links \ | |
--domains website.org \ | |
--no-parent \ | |
www.website.org/tutorials/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
var crypto = require("crypto"); | |
function encrypt(key, str) { | |
var hmac = crypto.createHmac("sha512", key); | |
var signed = hmac.update(new Buffer(str, 'utf-8')).digest("base64"); | |
return signed | |
} |
$ LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1 FAKETIME="+900d" [Apps Location/Name]
Note: preload value is the location of libfaketime it could be different on each system.. /usr/local/lib as example
find [Dir to seek fo] --name= [Could use wildcard] find ./ --name= "libfaketime.so.1"
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
let data = {price: 5, quantity: 2} | |
let total, salePrice, discountedTotal | |
let target = null | |
class Dep { | |
constructor() { | |
this.subscriber = [] | |
} |
See how a minor change to your commit message style can make a difference. Examples
<type>(<optional scope>): <subject>
While the following structure is not an absolute requirement or enforced by the tools, it is a recommendation based on what the JavaScript and in particular Node community at large have been following by convention.
Beyond a suggested structure, no tooling recommendations, or sub-module structure is outlined here.
lib/
is intended for code that can run as-issrc/
is intended for code that needs to be manipulated before it can be used