Skip to content

Instantly share code, notes, and snippets.

View annibuliful's full-sized avatar
😥
stressful

jarupong pajakgo annibuliful

😥
stressful
View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
satisfaction_level,last_evaluation,number_project,average_montly_hours,time_spend_company,Work_accident,left,promotion_last_5years,sales,salary
0.38,0.53,2,157,3,0,1,0,sales,low
0.8,0.86,5,262,6,0,1,0,sales,medium
0.11,0.88,7,272,4,0,1,0,sales,medium
0.72,0.87,5,223,5,0,1,0,sales,low
0.37,0.52,2,159,3,0,1,0,sales,low
0.41,0.5,2,153,3,0,1,0,sales,low
0.1,0.77,6,247,4,0,1,0,sales,low
0.92,0.85,5,259,5,0,1,0,sales,low
0.89,1,5,224,5,0,1,0,sales,low
We can't make this file beautiful and searchable because it's too large.
satisfaction_level,last_evaluation,number_project,average_montly_hours,time_spend_company,Work_accident,left,promotion_last_5years,sales,salary
0.38,0.53,2,157,3,0,1,0,sales,low
0.8,0.86,5,262,6,0,1,0,sales,medium
0.11,0.88,7,272,4,0,1,0,sales,medium
0.72,0.87,5,223,5,0,1,0,sales,low
0.37,0.52,2,159,3,0,1,0,sales,low
0.41,0.5,2,153,3,0,1,0,sales,low
0.1,0.77,6,247,4,0,1,0,sales,low
0.92,0.85,5,259,5,0,1,0,sales,low
0.89,1,5,224,5,0,1,0,sales,low

What's new in Firebase.

1.5 M+ active every month

Cloud FireStore

  • In-console tules simulator
  • Data import and export
  • New Location Coming
const WebSocket = require("ws");
const http = require("http");
const express = require("express");
const app = express();
app.use(express.static("public"));
const bserver = http.createServer(app);
const webPort = 5000;
const arr = [1,2,3,4,5,6,7];
arr.forEach(function(element) {
console.log(element);
});
package java101;
class users {
public String name;
private String message;
private String password;
users(String name,String message,String password){
this.name = name;
this.setMessage(message);
import React from 'react'
import { StaticQuery, graphql } from 'gatsby'
export default (props) => {
const Query = graphql`
query {
introduction: markdownRemark(frontmatter: {title: {eq: ${props.query}}}) {
frontmatter {
title
}
class Observer {
constructor() {
// store of subscribers
this.observers = [];
}
subscribe(aFunction) {
this.observers.push(aFunction);
}
broadcast(data) {
public abstract class Observer {
protected Subject subject;
public abstract void update();
}
@annibuliful
annibuliful / demo.java
Created January 27, 2019 07:01
basic calculated grade software with only one If and Array
package array;
import java.util.Scanner;
public class demo {
@SuppressWarnings("resource")
public static void main(String[] args) {
gradeController grade = new gradeController();
Scanner input = new Scanner(System.in);