Skip to content

Instantly share code, notes, and snippets.

View RazinTeqB's full-sized avatar
🎯
Trying to do better :)

Razin TeqB RazinTeqB

🎯
Trying to do better :)
  • TeQ Buddies InfoSoft Pvt Ltd
  • Ahmedabad
  • 18:03 (UTC +05:30)
View GitHub Profile
@RazinTeqB
RazinTeqB / isi_abroad.md
Last active February 3, 2025 05:02

ISI Abroad - International Studies Institute

ISI Abroad provides a hassle-free study program abroad making it very easy for students to apply for studies in Italy at either Florence or Perugia. The study process and registration are supervised by the administration, and the students are supported at all times by the faculty. The program is structured in a way that the procedure of enrollment is very smooth, from the time they enroll to the time they come back home, students will be concentrating on academic progress and getting used to a foreign culture knowing that they have the support of the team if they need anything.

1. Main Student Dashboard. (For Admin)

This is a centralized hub where administrators oversee the movement of each student. Through a tool to approve or disapprove steps, students can be transferred to stages according to one of these tools, along with regulating stud

@RazinTeqB
RazinTeqB / timezone-list.php
Last active October 31, 2024 11:39 — forked from blacksmoke26/timezone-list.php
List of timezones (PHP)
<?php
$listOfTimeZones = [
'Africa'=> [
'Africa/Algiers'=>'Algeria (+01:00)',
'Africa/Gaborone'=>'Botswana (+02:00)',
'Africa/Douala'=>'Cameroon (+01:00)',
'Africa/Bangui'=>'Central African Republic (+01:00)',
'Africa/Ndjamena'=>'Chad (+01:00)',
'Africa/Kinshasa'=>'Democratic Republic of the Congo (+01:00)',
@RazinTeqB
RazinTeqB / VZoom.vue
Last active July 7, 2023 10:16
Image Zoom on mouse over vue component
<template>
<div
v-show="!zoom || $device.isMobile"
class="pointer-events-none sm:pointer-events-auto absolute inset-x-0 top-4 z-10 mx-auto flex max-w-max cursor-pointer gap-3 rounded-full bg-dark/75 px-4 py-2 text-white"
role="button"
@click="zoom = !zoom"
>
<nuxt-img src="/images/icons/icon-search-white.svg" width="20" />
<span>Click to zoom</span>
</div>
# nginx revers proxy for nuxt front-end and fuelphp backend backup
events { }
http {
server {
#http redirect to ssl
listen 80 default_server;
server_name _;

Interview Questions

Set 1

PHP

  1. Name any five array functions.
  2. What are the types of arrays.
  3. What is extract() function?
    • Extracts the values from an array into variables
  4. Name any five string functions.
@RazinTeqB
RazinTeqB / .bashrc.sh
Last active February 3, 2025 05:06
Ubuntu Shortcuts (.bashrc)
# Git branch bash completion
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
# echo "Git completion loaded"
# # Add git completion to aliases
# # __git_complete g __git_main
# # __git_complete gc _git_checkout
# # __git_complete gm __git_merge
# __git_complete gpl _git_pull

Docker Some Useful Commands

2022-02-15

  • Check Docker occupied storage space

    docker system df

  • Reload system configuration

sudo systemctl daemon-reload