This file contains 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
Homebrew build logs for osrf/simulation/gazebo9 on macOS 10.14 | |
Build date: 2018-10-24 21:09:04 |
This file contains 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
# Copy from https://stackoverflow.com/a/32964582/7595238 | |
#include <stdio.h> | |
typedef struct hello { | |
int (*someFunction)(); | |
} hello; | |
int foo() { | |
return 0; | |
} |
This file contains 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
1. Install Postgre from any repo or source | |
-> ... search in www ... | |
create a directory [ example home/.postgre ] | |
-> mkdir ~/.postgre | |
create database system | |
-> cd ~/.postgre && initdb /data | |
create database [ example appname_postgredb ] | |
-> createdb appname | |
start postgresql | |
-> pg_ctl -D ~/.postgre/data -l logfile start |
This file contains 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
# Find the directory which ruby searches openssl | |
ruby -ropenssl -e 'puts OpenSSL::X509::DEFAULT_CERT_FILE' | |
# Download cacert.pem to that directory | |
!! The file names must be same !! | |
https://curl.haxx.se/ca/cacert.pem | |
Example for linux: | |
ruby -ropenssl -e 'puts OpenSSL::X509::DEFAULT_CERT_FILE' | |
output: /etc/ssl/cert.pem |
This file contains 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
Kisi.java dosyası | |
package odev; | |
public class Kisi { | |
String isim; | |
public String getIsim(){ | |
return isim; | |
} |
NewerOlder