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
I contributed to the ZKOPRU Trusted Setup Multi-Party Ceremony. | |
The following are my contribution signatures: | |
Circuit: zk_transaction_3_2 | |
Contributor # 169 | |
Hash: f2260a32 c15791c6 7377ae57 d26f770e | |
dacda533 bd5bc7b6 499885e5 231d03e7 | |
c2792d6e bfca1721 f678fda8 6a339264 | |
30435eb3 864c4195 27b6945e e64d03ce | |
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
sudo psql -h localhost -U postgres -d symplcms -f ~/symplcms.sql |
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
whereis java | |
# java: /usr/bin/java /usr/share/java /usr/share/man/man1/java.1.gz | |
ls -l /usr/bin/java | |
# lrwxrwxrwx 1 root root 22 Jan 7 06:53 /usr/bin/java -> /etc/alternatives/java | |
ls -l /etc/alternatives/java | |
# /etc/alternatives/java -> /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java |
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
// Write directly on console, don't put on js code | |
svg.on('mousemove', function () { | |
x = d3.mouse(this)[0]; | |
y = d3.mouse(this)[1]; | |
}); |
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
cd /Users/viatick/Library/Android/sdk/platform-tools/ | |
./adb connect 192.0.23.40 |
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
<ion-view> | |
<ion-content class="slide-in-both-ways" scroll="false"> | |
<!-- Have to put data-tap-disable="true" --> | |
<div class="g-map-holder" data-tap-disabled="true"> | |
<div id="gMapContent" data-tap-disabled="true"></div> | |
</div> | |
</ion-content> | |
</ion-view> |
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 corresponding Build Tools version on the list | |
android list sdk -a | |
# Install the right version | |
android update sdk -a -u -t 8 |
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
#Replace 'symplcms' with the database'name | |
createdb --template=template0 --locale=en_US.UTF-8 --encoding=UTF8 -U postgres symplcms |
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
sudo cp /etc/apache2/conf.d/phppgadmin /etc/apache2/conf-enabled/phppgadmin.conf | |
sudo /etc/init.d/apache2 restart |
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
.lightbox-nav > .btn-group > .btn:nth-child(2) { | |
visibility: hidden; | |
width: 0; | |
padding: 0; | |
margin: -1px; | |
} |