Skip to content

Instantly share code, notes, and snippets.

View imammubin's full-sized avatar

Imam Mubin imammubin

View GitHub Profile
@imammubin
imammubin / remove auto google software update on mac .txt
Created February 3, 2024 15:04
remove auto google software update on mac
sudo rm -rf ~/Library/google/GoogleSoftwareUpdate
cd ~/library/launchagents
sudo rm -rf com.google.GoogleUpdater.wake.plist
sudo rm -rf com.google.keystone.xpcservice.plist
#![allow(unused_imports, non_snake_case)]
use actix_web::{get, web, App, HttpResponse, HttpRequest, HttpServer, Responder};
use std::sync::{Mutex};
#[derive(Clone,Debug)]
pub struct WebLoad{
pub count: i32
}
#[actix_web::main]
#![allow(unused_imports, non_snake_case)]
use actix_web::{
HttpServer, HttpResponse, App, Responder,
web, get, guard
};
#[actix_web::main]
async fn main()-> std::io::Result<()>{
HttpServer::new(||{
FROM ubuntu:18.04
# Identify the maintainer of an image
LABEL maintainer="imammubin.net@gmail.com"
# Update the image to the latest packages
RUN apt-get update && apt-get upgrade -y
## preesed tzdata, update package index, upgrade packages and install needed software
RUN echo "tzdata tzdata/Areas select Asia" > /tmp/preseed.txt; \
# source-docker-ubuntu1804-apache2-php73-composer-for-laravel7
FROM ubuntu:18.04
# Identify the maintainer of an image
LABEL maintainer="imammubin.net@gmail.com"
# Update the image to the latest packages
RUN apt-get update && apt-get upgrade -y
version: '3'
services:
# Database
db:
container_name: database
image: mysql:5.7
volumes:
- ./db_data:/var/lib/mysql
import VueChartJS from 'vue-chartjs'
import ChartJSDatalabels from 'chartjs-plugin-datalabels'
import Chart from 'chart.js'
Chart.defaults.MyLine = Chart.defaults.line;
Chart.controllers.MyLine = Chart.controllers.line.extend({
draw: function(ease) {
Chart.controllers.line.prototype.draw.call(this, ease);
# on public/index.php add
error_reporting(E_ALL);
ini_set("display_errors", 1);
sudo apt-get install php-intl
sudo /etc/init.d/apache2 restart
MYSQL 5.7
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'rootpasswd' ;
use mysql;
update user set host='%' where host='localhost'
### UBUNTU ERROR
#### REMOVE NODE
##### https://github.com/yarnpkg/yarn/issues/6914
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
apt-get install -y nodejs
yarn add expo-cli -g
yarn expo init MyProjectName
https://medium.com/@saurabh.friday/install-watchman-on-ubuntu-18-04-ba23c56eb23a
https://stackoverflow.com/questions/31939729/regenerate-makefiles-sh-generates-libtoolize-linking-error-when-compiling-irstlm