Skip to content

Instantly share code, notes, and snippets.

View jinolacson's full-sized avatar
:octocat:
Programming....

leetz-kowd jinolacson

:octocat:
Programming....
View GitHub Profile
@jinolacson
jinolacson / read_test.py
Last active November 4, 2021 13:27
Built in file reader
#!/usr/bin/env python
#from the Doc https://docs.python.org/2/library/csv.html
# Run : python3 read_test.py
import csv
with open('sample.csv', newline='') as csvfile:
spamreader = csv.reader(csvfile, delimiter=' ', quotechar='|')
for row in spamreader:
print(', '.join(row))
@jinolacson
jinolacson / git-deployment.md
Created January 29, 2020 03:11 — forked from noelboss/git-deployment.md
Simple automated GIT Deployment using Hooks

Simple automated GIT Deployment using GIT Hooks

Here are the simple steps needed to create a deployment from your local GIT repository to a server based on this in-depth tutorial.

How it works

You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like deepl.io to act upon a Web-Hook that's triggered that service.

@jinolacson
jinolacson / BaseCaller.sol
Created November 11, 2019 01:40 — forked from critesjosh/BaseCaller.sol
Inter-contract execution in Solidity
pragma solidity ^0.5.0;
contract Base {
uint x;
constructor() public {
x = 10;
}
pragma solidity ^0.5.0;
contract Base {
uint public num;
address public sender;
function setNum(uint _num) public {
num = _num;
sender = msg.sender;
}
@jinolacson
jinolacson / CHANGELOG.md
Created August 9, 2019 06:07
Example changelog for akeen platform - for educational purpose only

Changelog

Version: 1.112.10

BUG

  • Fix a bug on BO[SuperAdmin] return candidates table. The super admin should be able to view the return candidates of users that were created by an admin account

@jinolacson
jinolacson / README.md
Last active February 20, 2020 06:49
Example README.md file of akeen project - for educational purpose only

Akeen

AkeeN is a start-up where the web is at the service of the internal professional mobility of all employees, at the lowest cost. AkeeN accompanies them through a journey, backed by a web platform, complete and structured in ten steps leading to a professional project, relying at each stage on practical exercises. The objective is to encourage employees' commitment by reconciling the evolutions and needs of the company with the individual skills and aspirations of each individual.

Getting Started


  1. Create your local copy by either downloading or cloning using git sudo git clone https://gitlab.com/wylog/akeen/akeen_mini.git

Prerequisites