Visit https://MYCHANNEL.slack.com/admin/invites and run
const emails = []
Array.from($('.email')).forEach(invite => emails.push(invite.innerText))
copy(emails)| import { ref } from 'vue'; | |
| const useCounterUp = (initialVaue = 0) => { | |
| const counter = ref(initialVaue); | |
| const increment = () => counter.value += 1; | |
| return { counter, increment }; | |
| }; | |
| const useCounterDown = (initialVaue = 0) => { | |
| const counter = ref(initialVaue); |
| let docs, toCopy | |
| docs = Array.from($('.hp-list-item-doc')) | |
| toCopy = '' | |
| docs.forEach(doc => { | |
| // let name = doc.querySelector('.hp-list-item-title').firstChild.innerText | |
| toCopy += ` | |
| ` + doc.href |
Visit https://MYCHANNEL.slack.com/admin/invites and run
const emails = []
Array.from($('.email')).forEach(invite => emails.push(invite.innerText))
copy(emails)| <template> | |
| <div> | |
| <button @click="increment">Increment</button> | |
| </div> | |
| </template> | |
| <script> | |
| import { mapActions } from 'vuex' | |
| export default{ | |
| methods: { |
| { | |
| "USD": { | |
| "symbol": "$", | |
| "name": "US Dollar", | |
| "symbol_native": "$", | |
| "decimal_digits": 2, | |
| "rounding": 0, | |
| "code": "USD", | |
| "name_plural": "US dollars" | |
| }, |
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$posts = Post::paginate(20);| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| { | |
| "current_page": 1, | |
| "last_page": 3, | |
| "next_page_url": "/animals2.json", | |
| "prev_page_url": null, | |
| "data": [ | |
| { | |
| "id": 1, | |
| "name": "Crocodile" | |
| }, |
| { | |
| "nested" : { | |
| "current_page": 1, | |
| "last_page": 3, | |
| "next_page_url": "/responses/dummy2.json", | |
| "prev_page_url": null, | |
| "data": [ | |
| { | |
| "id": 1, | |
| "plot": "Anakin, you’re breaking my heart! And you’re going down a path I cannot follow!", |