Skip to content

Instantly share code, notes, and snippets.

View Tlazypanda's full-sized avatar

Sneha Mishra Tlazypanda

View GitHub Profile
Install Aptos CLI:
https://aptos.dev/tools/aptos-cli/install-cli/automated-install
Run command `aptos`
Setup new Aptos Move Project
aptos move init --name debug
Create our own profile
aptos init --network devnet
console.clear();
require("dotenv").config();
const {
AccountId,
PrivateKey,
Client,
TokenCreateTransaction,
TokenType,
TokenSupplyType,
TokenMintTransaction,
@Tlazypanda
Tlazypanda / gist:4f944065c0bfa9c9a084a099ef3cf30c
Created April 11, 2020 18:00
#app/views/questions/_index.html.erb
<form id="questions_searchform" role="search" autocomplete="off" action="/post">
<div class="input-group">
<input tabindex="1" id="questions_searchform_input" type="text" name="title" aria-label="Ask your question" class="<%= "disabled " if !current_user %>form-control search-query typeahead" qryType="questions" placeholder="type your question">
@Tlazypanda
Tlazypanda / gist:10c34d3b4796c7c9a856c0659011f313
Created April 11, 2020 17:58
#app/views/questions/_index.html.erb
<form id="questions_searchform" role="search" autocomplete="off"
action="/post">
<div class="input-group">
<input tabindex="1" id="questions_searchform_input" type="text" name="title" class="
<%= "disabled " if !current_user %>form-control search-query typeahead"
qryType="questions" placeholder="type your question">
<label class="questions_searchform_label"
for="questions_searchform_input">Ask question</label>
@Tlazypanda
Tlazypanda / gist:f70f0a54a702e74a30e742db8025019b
Created April 11, 2020 17:22
#app/views/notes/_card.html.erb
<div class="card">
<% if node.main_image %>
<a class="card-img-top img" style="overflow: hidden; height:10em;"
<% if @widget %>target="_blank"<% end %> href="<%= node.path %>">
<img src="<%= node.main_image.path(:default) alt="xyz" %>"
style="width:100%;"/>
</a>