Once you create a dapp its important the dapp gets exposure. Here is a list of 20 places you can submit your Dapp.
The following websites showcases dapps ( decentralized applications ).
| Name | URL | Platform |
|---|
| pragma solidity ^0.4.16; | |
| contract Token { | |
| bytes32 public standard; | |
| bytes32 public name; | |
| bytes32 public symbol; | |
| uint256 public totalSupply; | |
| uint8 public decimals; | |
| bool public allowTransactions; | |
| mapping (address => uint256) public balanceOf; |
| # create assets folder in the current project | |
| $ mkdir android/app/src/main/assets | |
| # create bundle script | |
| $ react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/ | |
| # execute command to run android to create debug apk | |
| $ react-native run-android | |
| # Or change to android folder |
| pragma solidity ^0.4.18; | |
| /** Simple contract to store Ether */ | |
| contract Vault | |
| { | |
| address owner; | |
| uint balance; | |
| // Modifier for authenticating owner | |
| modifier ownerOnly(address _owner) { |
| const Web3 = require('web3') | |
| const Tx = require('ethereumjs-tx').Transaction | |
| // connect to Infura node | |
| const web3 = new Web3(new Web3.providers.HttpProvider('https://mainnet.infura.io/INFURA_KEY')) | |
| // the address that will send the test transaction | |
| const addressFrom = '0x1889EF49cDBaad420EB4D6f04066CA4093088Bbd' | |
| const privateKey = new Buffer('PRIVATE_KEY', 'hex') |
| Shortcuts | |
| - shift+cmd+d -> create same line below | |
| - shift+cmd+f -> open search in project | |
| - cmd+d -> select full word | |
| - cmd+d + shift-cmd-g -> search word in file | |
| - shift+cmd+enter -> new line before | |
| - cmd+enter -> new line after | |
| - cmd+arrow -> go the end | |
| - ctrl-tab -> go back to the recent file |
Firstly I want to thank the QICI team for their extensive list of demos. If you want to know how to do something you will most probably find a example there.
This list is more of projects I found scattered on github, self promotion, etc. If you want something added please let me know!
note atm most projects is just prototypes, toys or just someone checking the env and sharing their knowledge.
ℹ️ There is a newer alternative project that does similar things and more, check it out at https://github.com/stevenilsen123/mac-keyboard-behavior-in-windows
Make Windows PC's shortcut act like macOS (Mac OS X) (using AutoHotkey (ahk) script)
With this AutoHotKey script, you can use most macOS style shortcuts (eg, cmd+c, cmd+v, ...) on Windows with a standard PC keyboard.
Find the Discord channel in which you would like to send commits and other updates
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!