Skip to content

Instantly share code, notes, and snippets.

View sylhare's full-sized avatar
💻
On the go

Sylhare sylhare

💻
On the go
View GitHub Profile
@sylhare
sylhare / example.py
Created June 22, 2020 15:18
type-on-strap-gist
#!/usr/bin/env python3
""" https://wiki.python.org/moin/SimplePrograms """
from time import localtime
activities = {8: 'Sleeping', 9: 'Commuting',
17: 'Working', 18: 'Commuting',
20: 'Eating', 22: 'Resting' }
time_now = localtime()
hour = time_now.tm_hour
@sylhare
sylhare / unittest_example.py
Created May 6, 2020 13:55
Python unittest for beginners
#!/usr/bin/env python3
"""
Simple example of using tests
You would normally have your code in another file in another folder
And your test in a folder named "test".
Here an example of what the folder directory would look like:
package
- math
@sylhare
sylhare / curl.md
Created June 8, 2018 13:42 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@sylhare
sylhare / AI-cfns.py
Last active February 23, 2018 19:11
AI Chainer fast neural style
https://github.com/yusuketomoto/chainer-fast-neuralstyle
https://medium.com/element-ai-research-lab/stabilizing-neural-style-transfer-for-video-62675e203e42?lipi=urn%3Ali%3Apage%3Ad_flagship3_feed%3B%2Fi1%2BFDQ2S4mFUrkbZOoRFQ%3D%3D
# This loss component captures the difference between the content of our source image and the content of our stylized image
L_feat = lambda_f * F.mean_squared_error(Variable(feature[2].data), feature_hat[2])
# Establish a variable to hold our style-losses
L_style = Variable(xp.zeros((), dtype=np.float32))
/**
* Converts an RGB color value to HSL. Conversion formula
* adapted from http://en.wikipedia.org/wiki/HSL_color_space.
* Assumes r, g, and b are contained in the set [0, 255] and
* returns h, s, and l in the set [0, 1].
*
* @param Number r The red color value
* @param Number g The green color value
* @param Number b The blue color value
* @return Array The HSL representation

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@sylhare
sylhare / graph.adoc
Created November 21, 2017 15:42
graph gist
CREATE (neo:Database {name:'Neo4j'})
CREATE (neo)-[:SUPPORTS]->(:Language {name:'Cypher'})
@sylhare
sylhare / got.md
Last active November 15, 2017 16:28
Neo4j Game of throne