Skip to content

Instantly share code, notes, and snippets.

View amimaro's full-sized avatar

Amir Zahlan amimaro

View GitHub Profile
@amimaro
amimaro / SetupGHPProjects.md
Last active March 16, 2018 13:04
Setup GitHub Pages Projects
@amimaro
amimaro / MSSQL Queries
Last active March 16, 2018 12:54
Some MSSQL Queries
Some MSSQL Queries
@amimaro
amimaro / RegexExpressions
Last active January 1, 2022 10:39
Regex Expressions
Some Regex Expressions
@amimaro
amimaro / README-Template.md
Created January 3, 2018 11:56 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@amimaro
amimaro / some_packs_i_use.sh
Created January 25, 2018 22:37
Gist created with repy.io
#!/bin/bash
# _ __ ___ _ __ _ _ _ ___
# | '__/ _ \ '_ \| | | | | |/ _ \
# | | | __/ |_) | |_| |_| | (_) |
# |_| \___| .__/ \__, (_)_|\___/
# | | __/ /
# |_| |___/
# Script generated with repy.io
# Created at: January 25th 2018, 7:37:09 pm
@amimaro
amimaro / BulmaToggleModal
Last active October 11, 2022 13:06
Toggle Bulma Modal with Angular 5
Toggle Bulma Modal with Angular 5
@amimaro
amimaro / UnityChangeTexture
Last active March 16, 2018 12:43
Unity Scripts to Change GameObject Texture OnSomething
Version 5.6
* Pressed
Changes GameObject texture when clicked/pressed. OnMouseUp the texture returns to it's original state.
* Toggle
Changes GameObject texture when clicked/pressed and saves it state. The texture only change when pressed again.
@amimaro
amimaro / UnityDelay.cs
Created March 16, 2018 14:19
Unity Delay Function
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DelayTest : MonoBehaviour
{
bool display = false;
void Start ()
@amimaro
amimaro / UnityHttpRequest.cs
Last active February 5, 2020 08:50
Unity Http Request Example
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Networking;
public class UnityRequest : MonoBehaviour
{
bool display = false;
private GUIStyle guiStyle = new GUIStyle ();
public string uri = "http://localhost:8080";
@amimaro
amimaro / UnityReadWriteFile.cs
Last active March 19, 2018 12:33
Read and Write files with Unity
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.Text;
using System.IO;
public class UnityReadWriteFile : MonoBehaviour
{
void Start ()