View patch.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use App\Models\Voter; | |
use Illuminate\Http\Request; | |
class VoterController extends Controller | |
{ | |
/** |
View accepted letter notice gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="alert alert-info font-weight-bold"> | |
<p>To secure your place, kindly pay full fees by 31 May 2020.</p> | |
<p>How to download acceptance letter</p> | |
<ul> | |
<li>Create your elearning account at <a href="https://elearning.msu.ac.zw/login/create_account" target="_blank">https://elearning.msu.ac.zw/login/create_account</a></li> | |
<li>Login to your new elearning account</li> | |
<li>On your elearning dashboard click the "Download Acceptance Letter" button to dowload your acceptance letter</li> | |
</ul> | |
</div> |
View .htaccess
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#301 Redirects for .htaccess | |
#Redirect a single page: | |
Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
#Redirect an entire site: | |
Redirect 301 / http://www.domain.com/ | |
#Redirect an entire site to a sub folder | |
Redirect 301 / http://www.domain.com/subfolder/ |
View wp_get_children.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$id = the_ID(); | |
while ( have_posts() ) : the_post(); | |
$gp_args = array( | |
'post_type' => 'page', | |
'post_parent' => $id, | |
'order' => 'ASC', | |
'orderby' => 'menu_order', | |
'posts_per_page' => -1 | |
); |
View pointer.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(int argc, char * argv[]){ | |
int ages[]={12,56,23,34,51}; | |
char *name[]={"blessing","tawanda","prosper","simba","titi"}; | |
int count=sizeof(ages)/sizeof(int); | |
int i=0; |
View forloop.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# include <stdio.h> | |
int main(int argc, char * argv[]){ | |
int i=0; | |
// go through each string in argv | |
// why am I skipping argv[0]? | |
for(i = 1; i < argc; i++) { | |
printf("arg %d: %s\n", i, argv[i]); |
View arrays.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <stdio.h> | |
int main(int argc, char * argv[]){ | |
int areas[]={10,67,7,90,89}; | |
printf("the size of ints id %ld",sizeof(int)); | |
printf("the first character of array is %d",areas[0]); | |
return 0; | |
}; |
View files.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#read file | |
# calculate trajetory | |
# @author: Mashoko Blessing | |
# @ http://www.facebook.com/blessing.mashcom | |
# @mashcom digimedia http://www.hookd-up.com | |
import os | |
def isFileAvailable(myfile): | |
if(os.path.isfile(myfile)): |
View factorial.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# calculate factorial | |
# @author: Mashoko Blessing | |
# @http://www.facebook.com/blessing.mashcom | |
# @mashcom digimedia http://www.hookd-up.com | |
#email: bmashcom@hotmail.com | |
def factorial(x): | |
if(x==0): | |
return 1 | |
else: |
View trajectory.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# calculate trajetory | |
# @author: Mashoko Blessing | |
# @ http://www.facebook.com/blessing.mashcom | |
# @mashcom digimedia http://www.hookd-up.com | |
from math import sin,cos,pi | |
def calculateTraf(angle, velocity ): | |
#defining gravity |