Grup obrol kami didedikasikan untuk memberikan pengalaman berbagi antar anggota komunitas yang bebas pelecehan untuk semua orang, terlepas dari jenis kelamin, identitas dan ekspresi gender, usia, orientasi seksual, kecacatan, penampilan fisik, ukuran tubuh, ras, etnisitas, agama (atau kekurangannya), pandangan politik atau pilihan teknologi. Kami tidak mentolerir pelecehan terhadap anggota lain di dalam komunitas dalam bentuk apapun. Anggota yang melanggar kode etik ini dapat dikenai sanksi atau diusir dari komunitas atas kebijakan/kesepakatan bersama.
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
| 151.101.129.140 i.redditmedia.com | |
| 151.101.193.140 e.reddit.com | |
| 172.217.17.142 www.google-analytics.com | |
| 52.27.43.236 www.reddithelp.com | |
| 151.101.65.140 g.redditmedia.com | |
| 2.19.61.155 www.bloomberg.com | |
| 151.101.1.140 a.thumbs.redditmedia.com | |
| 151.101.129.140 redditgifts.com | |
| 151.101.60.193 imgur.com | |
| 104.244.46.7 pbs.twimg.com |
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
| if (rv == CKR_ARGUMENTS_BAD) { | |
| std::cout << "err 1\n"; | |
| } else if (rv == CKR_ATTRIBUTE_READ_ONLY) { | |
| std::cout << "err 2\n"; | |
| } else if (rv == CKR_ATTRIBUTE_TYPE_INVALID) { | |
| std::cout << "err 3\n"; | |
| } else if (rv == CKR_ATTRIBUTE_VALUE_INVALID) { | |
| std::cout << "err 4\n"; | |
| } else if (rv == CKR_CRYPTOKI_NOT_INITIALIZED) { | |
| std::cout << "err 5\n"; |
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
| // Usage : use Node 8.x, pipe the output to empty csv file. | |
| var fs = require('fs'); | |
| var async = require('async'); | |
| var byline = require('byline'); | |
| var stringSimilarity = require('string-similarity'); | |
| var sqlite3 = require('sqlite3').verbose(); | |
| var db = new sqlite3.Database('data.db'); | |
| var stream = fs.createReadStream('A2914.csv'); | |
| db.serialize(function() { |
You may found this link on the top result of Google search, http://pete.akeo.ie/2010/12/that-darn-libtoolize-acconfigmacrodirm4.html. It still confusing, adding .gitattributes doesnt seem fix it, but it does if we do in this sequences :
- Create a dir and enter it
git init- Create the .gitattributes file as told above
git remote add origin repoaddressgit fetch origingit checkout origin/masterautoreconf -fi- Done!
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
| # Theme with full path names and hostname | |
| # Handy if you work on different servers all the time; | |
| #PROMPT='%{$fg[cyan]%}%n%{$reset_color%}@%{$fg[yellow]%}%M:%{$fg[green]%}%/%{$reset_color%} $(git_prompt_info) %(!.#.$) ' | |
| PROMPT='%{$fg[green]%}%n%{$reset_color%}@%{$fg[green]%}%M:%{$fg[green]%}%c%{$reset_color%}$(git_prompt_info) %(!.#.$) ' | |
| ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[cyan]%}git:(" | |
| ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$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
| const char *certFile = "C:/mutual/cert.pem"; | |
| const char *keyFile = "C:/mutual/key.pem"; | |
| const char *cacertsFile = "C:/mutual/ca.pem"; | |
| CURL *curl; | |
| CURLcode res; | |
| curl_global_init(CURL_GLOBAL_DEFAULT); | |
| curl = curl_easy_init(); | |
| if(curl) { | |
| curl_easy_setopt(curl, CURLOPT_VERBOSE, 2L); |
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
| LATEST=$(git ls-remote https://gitlab.com/KodeKreatif/erpiko.git | grep master) | |
| if [ -z "$LATEST" ]; then | |
| exit 1 | |
| fi | |
| LATEST=$(echo $LATEST | cut -d' ' -f1) | |
| URL="https://gitlab.com/KodeKreatif/erpiko/commit/$LATEST/pipelines" | |
| PIPELINE_ID=$(curl $URL | grep passed | grep external | cut -d/ -f5) | |
| if [ -z "$PIPELINE_ID" ]; then | |
| exit 1 | |
| fi |