Skip to content

Instantly share code, notes, and snippets.

View djedidiamine's full-sized avatar

djedidiamine djedidiamine

  • fgs-dz.com
  • alger
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<link href=" http://fonts.googleapis.com/css?family=Open+Sans:600" rel="stylesheet" type="text/css" />
@djedidiamine
djedidiamine / test
Last active January 10, 2017 08:34
script bash for testing host in network
#!/bin/bash
for i in 192.168.1.{1..10}
do
ping -c 1 -t 1 "$i" >/dev/null 2>&1 &&
echo "Ping Status of $i : Success" ||
echo "Ping Status of $i : Failed" done‎
@djedidiamine
djedidiamine / qcs.py
Created December 16, 2012 23:08
small script in python to a questionnaire
print "what is you name ?",
name = raw_input()
print "How old are you?",
age = raw_input()