This file contains 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
6:21 | |
sebagai capres ya, tapi tidak ada juga itu, yang misalnya kita mendengar paling tidak media kritik | |
6:29 | |
dari masyarakat Jawa Tengah, hey pak Ganjar koq sibuk ke DKI, Jawa Tengah masih ada berbagai persoalan, gitu Itu | |
6:35 | |
nggak, kita nggak mendengar juga itu pak Rizal, bagaimana pak Rizal menurut Pak Rizal, Indra, Indra, Indra kan paham | |
6:41 | |
sosiologi, kalau di Jawa Tengah, terutama Jawa Tengah, Solo, Jogja Selatan, itu pun apa | |
6:50 | |
kesulitannya, masalahnya, mereka mayoritas kan nerimo, nganggep ini, ya |
This file contains 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
main() { | |
void nextStory(int userChoice) { | |
int _storyNumber = 4; | |
_storyNumber = { | |
0: {1: 2, 2: 1}, | |
1: {1: 2, 2: 3}, | |
2: {1: 5, 2: 4}, | |
3: {1: 0, 2: 0}, | |
4: {1: 0, 2: 0}, |
This file contains 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 add-apt-repository ppa:yannubuntu/boot-repair | |
sudo apt-get update | |
sudo apt-get install boot-repair | |
boot-repair |
This file contains 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 main | |
import ( | |
"golang.org/x/tour/wc" | |
"strings" | |
) | |
func WordCount(s string) map[string]int { | |
wordsMap := make(map[string]int) | |
This file contains 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
<?php | |
namespace App\Providers; | |
use Illuminate\Support\ServiceProvider; | |
class BladeExtendServiceProvider extends ServiceProvider | |
{ | |
/** | |
* Bootstrap the application services. |
This file contains 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
<?php | |
/** | |
* Copyright 2008-2009 Konrad Rudolph | |
* All rights reserved. | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
This file contains 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
<?php | |
function adminer_object() { | |
// required to run any plugin | |
include_once "./plugins/plugin.php"; | |
// autoloader | |
foreach (glob("plugins/*.php") as $filename) { | |
include_once "./$filename"; | |
} | |
This file contains 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
/*! | |
* Bootstrap v3.3.1 (http://getbootstrap.com) | |
* Copyright 2011-2014 Twitter, Inc. | |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | |
*/ | |
.btn-default, | |
.btn-primary, | |
.btn-success, | |
.btn-info, |
This file contains 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
// Write your code below! | |
for(var i=0;i<3;i++){console.log("Subhanallah")} | |
var i=3; | |
while(i--){console.log("Alhamdulillah")} | |
var i=2; | |
do{console.log("La ilaha illallah")}while(i--) |
This file contains 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
var userChoice; | |
var getUserChoice = function(){ | |
var userChoice = prompt("Choose rock, paper, scissors!"); | |
if((userChoice != null) && !(userChoice==="rock" || userChoice==="paper" || userChoice==="scissors" )) {getUserChoice();} | |
return userChoice; | |
}; | |
userChoice = getUserChoice(); | |
if(userChoice === null) console.log("Cancel play the game"); |
NewerOlder