Skip to content

Instantly share code, notes, and snippets.

View logbasex's full-sized avatar
🎯
Focusing

logbasex logbasex

🎯
Focusing
View GitHub Profile
@logbasex
logbasex / java-check-style.xml
Last active January 11, 2024 13:32
java-check-style.xml
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
"https://checkstyle.org/dtds/configuration_1_3.dtd">
<!--
Checkstyle configuration that checks the Google coding conventions from Google Java Style
that can be found at https://google.github.io/styleguide/javaguide.html
Checkstyle is very configurable. Be sure to read the documentation at
@logbasex
logbasex / thanks-for-reading-ascii
Last active February 20, 2023 12:53
thanks for reading ascii
____________________
< Thanks for reading >
--------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| |
#include<iostream>
using namespace std;
int main() {
int n;
cin >> n;
int arr[n];
int sortedArr[n];
for(int i = 0; i < n; i++) {
@logbasex
logbasex / gist:631f00c7b6d7b83280babf3afa84385c
Created February 6, 2021 23:21 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@logbasex
logbasex / mysql-docker.sh
Created October 26, 2020 12:33 — forked from spalladino/mysql-docker.sh
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE

FWIW: I'm not the author of the content presented here (which is an outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

What's an Effective Engineer?

XSSFRow pre = sheet.createRow(0);
XSSFCell titleCell = pre.createCell(0);
titleCell.setCellType(CellType.STRING);
titleCell.setCellValue("Sent Email Detailed Statistics");
XSSFFont font = workbook.createFont();
font.setFontHeightInPoints((short) 25);
XSSFCellStyle titleStyle = workbook.createCellStyle();
XSSFColor grey = new XSSFColor(new java.awt.Color(255,195,1));
titleStyle.setFillBackgroundColor(grey);
@logbasex
logbasex / setup-mysql.sh
Created June 13, 2020 19:48 — forked from sheikhwaqas/setup-mysql.sh
Install MySQL Server on Ubuntu (Non-Interactive Installation)
# Download and Install the Latest Updates for the OS
apt-get update && apt-get upgrade -y
# Set the Server Timezone to CST
echo "America/Chicago" > /etc/timezone
dpkg-reconfigure -f noninteractive tzdata
# Enable Ubuntu Firewall and allow SSH & MySQL Ports
ufw enable
ufw allow 22
public static int getLargerNumber(int a, int b) {
int c = a - b;
//get sign bit's value
int k = (c >> 31) & 0x1;
return a - k * c;
}
public static void main(String[] args) {
//--------------------------------