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
| Terjemahan pidato Mark Zuckerberg pendiri/pemilik Facebook di hadapan pengagumnya di China, semoga bermanfaat. | |
| Menjawab pertanyaan mengapa saya memperisteri seorang wanita berparas tidak cantik? | |
| Saya, Mark Zuckerberg dari Facebook, saya adalah orang yang diberitakan sebagai seorang anak muda kaya raya yang tidak punya | |
| berita gossip, seseorang yang sangat mencintai istri, dan si Mark yang mempunyai tampang baby face. Hari ini saya ingin menggunakan | |
| waktu beberapa menit untuk ngobrol dengan teman-teman di China, istilah kalian Curhat. | |
| Sama halnya pada awal tahun ini saya pidato di Beijing Qing Hua University, saya berusaha semaksimal mungkin menggunakan | |
| bahasa Mandarin, namun karena keterbatasan kemampuan bahasa Mandarin saya, saya mohon maaf bila ada yang kurang berkenan dan | |
| berusaha berbicara sebaik mungkin. | |
| Kemarin dulu saya baru menjadi seorang ayah, teman-teman seluruh dunia menyampaikan ucapan selamat kepada saya dan kami sekeluarga, |
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
| { | |
| "bold_folder_labels": true, | |
| "caret_style": "smooth", | |
| "color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
| "drag_text": true, | |
| "font_face": "Fira Code", | |
| "font_options": | |
| [ | |
| "directwrite", | |
| "gray_antialias", |
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
| # oh-my-zsh Bureau Theme | |
| ### NVM | |
| ZSH_THEME_NVM_PROMPT_PREFIX="%B⬡%b " | |
| ZSH_THEME_NVM_PROMPT_SUFFIX="" | |
| ### Git [±master ▾●] | |
| ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[green]%}⊶%{$reset_color%} " |
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
| FROM anak10thn/tinycore-nodejs | |
| # set environment | |
| ENV APP=/opt/maoo | |
| # Create app directory | |
| RUN mkdir -p $APP | |
| WORKDIR $APP | |
| # Install app dependencies | |
| COPY package.json $APP |
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
| gluster volume set <volume_name> auth.allow 192.168.7.* | |
| gluster volume set <volume_name> nfs.disable off | |
| gluster volume set <volume_name> nfs.addr-namelookup off | |
| gluster volume set <volume_name> nfs.export-volumes on | |
| gluster volume set <volume_name> nfs.rpc-auth-allow 192.168.7.* |
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
| version: '2' | |
| services: | |
| redis: | |
| image: redis:alpine | |
| restart: always | |
| volumes: | |
| - redis:/data | |
| mysql: | |
| image: mysql:5.7 | |
| restart: always |
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
| input { | |
| jdbc { | |
| jdbc_driver_library => "/home/idiot/Backup/EL/mysql-connector-java-5.1.43/mysql-connector-java-5.1.43-bin.jar" | |
| jdbc_driver_class => "com.mysql.jdbc.Driver" | |
| jdbc_connection_string => "jdbc:mysql://localhost:3306/ijak" | |
| jdbc_user => "root" | |
| jdbc_password => "idiot" | |
| schedule => "* * * * *" |
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
| { | |
| "workbench.iconTheme": "eq-material-theme-icons", | |
| "atomKeymap.promptV3Features": true, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.formatOnPaste": true, | |
| "workbench.colorTheme": "Material Theme", | |
| "editor.fontFamily": "'Fira Code Retina', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
| "editor.tabCompletion": true, | |
| "editor.lineHeight": 27, | |
| "editor.minimap.enabled": false, |
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
| Section "ServerLayout" | |
| Identifier "layout" | |
| Screen 0 "nvidia" | |
| Inactive "intel" | |
| EndSection | |
| Section "Device" | |
| Identifier "intel" | |
| Driver "modesetting" | |
| BusID "PCI:0:2: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
| # Typical setup to include TensorFlow. | |
| import tensorflow as tf | |
| # Make a queue of file names including all the JPEG images files in the relative | |
| # image directory. | |
| filename_queue = tf.train.string_input_producer( | |
| tf.train.match_filenames_once("./images/*.jpg")) | |
| # Read an entire image file which is required since they're JPEGs, if the images | |
| # are too large they could be split in advance to smaller files or use the Fixed |
OlderNewer