- pilih tanggal kemudian pilih salah satu job yang ada di list bagian tengah
- detail pekerjaan akan muncul di bagian kanan layar
- untuk menugaskan pekerja ke job tersebut, gunakan tombol biru (assign employee)
- pekerja-pekerja ini yang akan mendapatkan reminder berupa notifikasi via aplikasi Telegram
- di dalam detail job bisa ditambahkan tugas-tugas kecil (tasks)
- gunakan input text di bagian bawah task, isi keterangan tugas kecil kemudian tekan Enter
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 CodePush from 'react-native-code-push'; | |
import {useStoreActions, useStoreState} from 'easy-peasy'; | |
import React, {useEffect, useState, useCallback} from 'react'; | |
import {showInfoToast} from '@ag/lib/toast'; | |
export default () => { | |
const [syncMessage, setMessage] = useState(''); | |
const [progress, setProgress] = useState(true); |
For faster connection speed and more flexibility.
- Start Xcode in command line by running this in commandline
/Applications/Xcode.app/Contents/MacOS/Xcode
- Start downloading of the simulator
- Cancel it. YES CANCEL IT!
- You will get a message like this:
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
// 'download-blob.js', inspired by this gist: | |
// 'dreamyguy/downloadFile.js' https://gist.github.com/dreamyguy/6b4ab77d2f118adb8a63c4a03fba349d | |
// I added some handler to make it works in Chrome, Safari, and Firefox on iOS | |
const downloadBlob = ( | |
result, | |
defaultFilename = 'content.dat', | |
mime = 'application/octet-stream' | |
) => { | |
if (window && result && result.data) { |
- 32.500 puzzle knob huruf besar
- 32.500 puzzle knob huruf kecil
- 32.000 puzzle knob hewan laut
- 29.900 puzzle knob angka
- 29.900 puzzle knob hijaiyah
- 120.000 kereta puzzle bentuk geometri
- 110.000 puzzle jalur kawat
- 38.000 balok puzzle gajah
If you use git on the command-line, you'll eventually find yourself wanting aliases for your most commonly-used commands. It's incredibly useful to be able to explore your repos with only a few keystrokes that eventually get hardcoded into muscle memory.
Some people don't add aliases because they don't want to have to adjust to not having them on a remote server. Personally, I find that having aliases doesn't mean I that forget the underlying commands, and aliases provide such a massive improvement to my workflow that it would be crazy not to have them.
The simplest way to add an alias for a specific git command is to use a standard bash alias.
# .bashrc
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
# | |
# CORS header support | |
# | |
# One way to use this is by placing it into a file called "cors_support" | |
# under your Nginx configuration directory and placing the following | |
# statement inside your **location** block(s): | |
# | |
# include cors_support; | |
# | |
# As of Nginx 1.7.5, add_header supports an "always" parameter which |
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
# Create your superuser | |
$ mongo | |
> use admin | |
> db.createUser({user:"someadmin",pwd:"secret", roles:[{role:"root",db:"admin"}]}) | |
> exit | |
# Alias for convenience (optional and at your own risk) | |
$ echo 'alias mongo="mongo --port 27017 -u someadmin -p secret --authenticationDatabase admin"' >> ~/.bash_profile | |
$ source ~/.bash_profile |
NewerOlder