Skip to content

Instantly share code, notes, and snippets.

View DeVoresyah's full-sized avatar
:octocat:
Available for Remote

DeVoresyah ArEst DeVoresyah

:octocat:
Available for Remote
View GitHub Profile
@DeVoresyah
DeVoresyah / bingung.ngapain
Created August 29, 2014 21:21
bingung.mau.ngapain
duh p4g1" g!ni 3n4kny@ ng4p4!n y4k >_<
@DeVoresyah
DeVoresyah / index.html
Created December 5, 2016 07:17
Help Paman
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Movies Is Flat - Blogger Template</title>
<!-- Bootstrap core CSS -->
@DeVoresyah
DeVoresyah / loop.js
Last active March 13, 2017 10:57
Looping didalam loop
function recordTodaysBalance() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var source = ss.getSheetByName("Sheet2");
var get_username = source.getRange("A2:A3");
var usernames = [
get_username.getCell(1, 1).getValue(),
get_username.getCell(2, 1).getValue()
];
@DeVoresyah
DeVoresyah / html
Created March 15, 2017 15:12
Whats wrong paman
<a href='javascript:void(0);' v-on:click='goRegister.redirect(checkSession("hashvirtual_ref"))'><strong>Member</strong> Register</a>
@DeVoresyah
DeVoresyah / index.html
Created March 19, 2017 01:37
Explore Vue: Split HTML Element
<div id="vueWrapper">
<div class="leftpanel">
<div class="media profile-left">
<a class="pull-left profile-thumb" href="profile.html">
<img alt="" class="img-circle" src="https://rawgit.com/DeVoresyah/chain/master/images/photos/default.jpg"/>
</a>
<div class="media-body">
<h4 class="media-heading">Lorem Ipsum</h4>
<small class="text-muted">Dolor Sit Amet</small>
</div>
@DeVoresyah
DeVoresyah / button.css
Created March 21, 2017 14:34
CSS Tombol Tongkol
/* CSS Button Style 2 by www.emberdunia.com */
.button2{float:left;list-style:none;text-align:center;width:95%;margin:10px;padding:2px;font-size:14px;clear:both}
.button2 ul{margin:0;padding:0}
.button2 li{display:inline;margin:5px;padding:0;list-style:none}
.button2 li a.download,.button2 li a.demo{position:relative;padding:14px 48px 14px 16px;background:#f39c12;display:block;color:#fff!important;font-weight:700;font-size:14px;text-align:left;text-transform:uppercase;letter-spacing:.2px;border-radius:3px;box-shadow:0 1px rgba(0,0,0,0.1);line-height:normal;transition:all .3s;max-width:170px;margin:auto;overflow:hidden}
.button2 li a.demo{background:#3498db}
.button2 li a.download:hover,.button2 li a.demo:hover{background:#666}
.button2 li a.download:active,.button2 li a.demo:active{cursor:pointer}
.button2 li a.download:after,.button2 li a.demo:after{content:'\F054';background:rgba(0,0,0,0.1);position:absolute;right:0;top:0;font-weight:normal;display:inline-block;margin:0 0 0 10px;color:#fff;padding:16px 24px
@DeVoresyah
DeVoresyah / main.js
Created March 25, 2017 11:51
Tolong Vue
/*!
* Main Javascript
*
* Contributing author: Rully Ardiansyah (@DeVoresyah)
*/
$(window).bind('scroll', function () {
if ($(window).scrollTop() > 50) {
$('#top-menu').addClass('navbar-inverse navbar-fixed-top');
$('#top-menu').removeClass('invisible-menu');
@DeVoresyah
DeVoresyah / index.html
Created April 18, 2017 06:38
Tanya Vue.js
<section>
<div class='mainwrapper'>
<left-panel v-bind:name='name' v-bind:username='username'/>
<div class='mainpanel'>
<div class='contentpanel'>
<div class='row'>
<div class='col-md-12'>
<div class='spot-title-container'><h4>Users List</h4></div>
</div>
@DeVoresyah
DeVoresyah / index.html
Created January 4, 2018 15:12
Memasang Google ReCaptcha di Halaman Web (Client-side)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Memasang Google ReCaptcha di Halaman Web (Client-side)</title>
<script src='https://www.google.com/recaptcha/api.js'></script>
</head>
<body>
@DeVoresyah
DeVoresyah / AppServiceProvider.php
Created June 5, 2018 22:01
Call to undefined method Illuminate\View\Compilers\BladeCompiler::component()
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Blade;
class AppServiceProvider extends ServiceProvider
{
/**