This file contains hidden or 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
| <div class="wrapper" id="app"> | |
| <div class="player"> | |
| <div class="player__top"> | |
| <div class="player-cover"> | |
| <transition-group :name="transitionName"> | |
| <div class="player-cover__item" v-if="$index === currentTrackIndex" :style="{ backgroundImage: `url(${track.cover})` }" v-for="(track, $index) in tracks" :key="$index"></div> | |
| </transition-group> | |
| </div> | |
| <div class="player-controls"> | |
| <div class="player-controls__item -favorite" :class="{ active : currentTrack.favorited }" @click="favorite"> |
This file contains hidden or 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 pacman -S rabbitmq | |
| sudo systemctl enable --now rabbitmq | |
| sudo rabbitmq-plugins enable rabbitmq_mqtt | |
| sudo rabbitmq-plugins enable rabbitmq_management | |
| sudo rabbitmqctl add_user admin1 admin1 | |
| sudo rabbitmqctl set_permissions -p / admin1 ".*" ".*" ".*" | |
| sudo rabbitmqctl set_user_tags admin1 management administrator |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <link rel="stylesheet" href="muhammed.css"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Muhammed Bayat</title> |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| import hashlib | |
| import sys | |
| import time | |
| # Using: ./hash.py hashcode | |
| # For example: ./hash.py 9743a66f914cc249efca164485a19c5c | |
| def timing(f): |
This file contains hidden or 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
| package com.example.butonhareket; | |
| import android.os.CountDownTimer; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.os.Bundle; | |
| import android.view.View; | |
| import android.widget.Button; | |
| import android.widget.TextView; | |
| public class MainActivity extends AppCompatActivity { |
NewerOlder