Skip to content

Instantly share code, notes, and snippets.

View hareendranmg's full-sized avatar
:electron:
"Simplicity is the ultimate sophistication." - Leonardo DaVinci

Hareendran MG hareendranmg

:electron:
"Simplicity is the ultimate sophistication." - Leonardo DaVinci
  • Trivandrum,Kerala,India
  • 12:46 (UTC +05:30)
View GitHub Profile
@hareendranmg
hareendranmg / index.html
Created March 14, 2020 06:01
Landing Page in Bootstrap 4
<div ng-app="bootstrpConf">
<div id="signup_form_modal" class="modal fade" aria-hidden="true" role="dialog" aria-labelledby="modal_label">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
<h4 class="modal-title" id="modal_label">Sign Up Today!</h4>
</div>
@hareendranmg
hareendranmg / Ajax_Jquery_Error_Function.txt
Created June 18, 2020 05:50
Ajax Jquery Error Function
error: function(jqXHR, exception) {
if (jqXHR.status === 0) {
alert('Not connect.\n Verify Network.');
} else if (jqXHR.status == 404) {
alert('Requested page not found. [404]');
} else if (jqXHR.status == 500) {
alert('Internal Server Error [500].');
} else if (exception === 'parsererror') {
alert('Requested JSON parse failed.');
} else if (exception === 'timeout') {
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue with the maintainers of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Pull Request Process

  1. Ensure any install or build dependencies are removed before the end of the layer when doing a build. Add only relevant files to commit and ignore the rest to keep the repo clean.
@hareendranmg
hareendranmg / create_cpp_project.py
Last active July 3, 2023 07:19
Basic CPP Project creation python script
#!/usr/bin/env python3
import sys
import os
def convert_to_pascal_case(name):
words = name.split('_')
capitalized_words = [word.capitalize() for word in words]
return ''.join(capitalized_words)
@hareendranmg
hareendranmg / custom_baudrate_hex_serial_sender.py
Created August 18, 2023 10:01
This script sends hexadecimal data to a serial port, records the response along with timestamps, and logs the interactions in "serial_log.txt". Useful for serial communication testing and tracking.
import serial
import sys
from datetime import datetime
def send_serial_request(port, baudrate, hex_value):
# Create a serial port object
ser = serial.Serial(port=port, baudrate=baudrate, timeout=1)
# Check if the port is open
# 22495555,0000,0000,0000,00007333,0000093D,0000,7334,08E3,00032665,000024F7,142B,0000,FFA0,FFC9,22495555,0010C90C,\n
import serial
import time
import os
port_name = "/dev/ttyUSB0"
baud_rate = 2000000
serial_port = serial.Serial(port_name, baud_rate,
@hareendranmg
hareendranmg / gist:d785ad2d6d2afa809b50f5642f0e6d6f
Created August 30, 2024 13:22
gtk3 dev issue flutter yocto
╭─ ~ ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── ✔ at 14:43:05 ─╮
╰─ ssh [email protected] ─╯
The authenticity of host '192.168.10.14 (192.168.10.14)' can't be established.
RSA key fingerprint is SHA256:V8Pl7/oTFzWs6wgKXYmRbSd2dhJozrIkUyrFad4k0xk.
This key is not known by any other names
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '192.168.10.14' (RSA) to the list of known hosts.
root@apalis-imx8-07307228:~#
root@apalis-imx8-07307228:~#
root@apalis-imx8-07307228:~#
@hareendranmg
hareendranmg / gist:f77b3ade076e382bc8c2bf275f890fde
Created August 31, 2024 09:37
fix yocto linux flutter gtk issue
root@apalis-imx8-07307228:~# ln -s /usr/lib/pkgconfig/egl.pc /usr/lib/pkgconfig/gl.pc
root@apalis-imx8-07307228:~# pkg-config --cflags --libs gtk+-3.0
-DLINUX -DWL_EGL_PLATFORM -DLINUX -DWL_EGL_PLATFORM -pthread -I/usr/include/gtk-3.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/gtk-3.0 -I/usr/include/gio-unix-2.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/fribidi -I/usr/include/harfbuzz -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0
root@apalis-imx8-07307228:~#
root@apalis-imx8-07307228:~# pkg-config --cflags --
@hareendranmg
hareendranmg / Program.cs
Created October 3, 2024 07:41
C# program to control unity game with arrow keys
using System;
using System.IO;
using System.IO.Pipes;
using System.Threading;
using System.Diagnostics;
class UnityController
{
private static Process unityProcess;
private static string unityExePath = @"C:\Users\TACHLOG-SW-4\Desktop\build\My project.exe";