Skip to content

Instantly share code, notes, and snippets.

View kisapas's full-sized avatar
💭
I may be slow to respond.

Kistapas kisapas

💭
I may be slow to respond.
View GitHub Profile
@DicoYoung
DicoYoung / NEUHIS_.classpath
Created December 23, 2019 04:17
the NeusoftHIS PLUS with DataStructure
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre1.8.0_221"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
@mshelll
mshelll / cloudSettings
Created December 13, 2019 07:32
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-12-13T07:32:41.335Z","extensionVersion":"v3.4.3"}
@shereekidson
shereekidson / PY0101EN-2.2_notebook_quizz_sets.ipynb
Created December 13, 2019 07:31
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mrjahanbin
mrjahanbin / Get Data Web Api
Created December 9, 2019 05:06
Get Data in Service By HttpClient &Token & Header & Parameters
public TokenVM GetToken()
{
HttpClient client = new HttpClient();
client.BaseAddress = new Uri("http://YourSite.com/token");
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
var response = client.PostAsync(client.BaseAddress, new StringContent("password=1&username=1&grant_type=password"));
var contents = response.Result.Content.ReadAsStringAsync().Result;
@trumpdiff
trumpdiff / 1444
Created December 9, 2019 05:02
Correction of trump tweet
RT @DanScavino: #ImpeachmentSHAM #SchiffShow
https://t.co/RlqXgqO49H
@JingtaoL
JingtaoL / ll.h
Created November 13, 2019 05:11
ll
#ifndef LL_H
#define LL_H
#include <iostream>
#include <vector>
namespace cs126linkedlist {
template<typename ElementType>
struct LinkedListNode {
ElementType data;
@AaronFeledy
AaronFeledy / .lando.yml
Last active February 5, 2021 10:45
Example .lando.yml with Platform.sh and Drupal 8 / Gatsby Monorepo
name: myapp
# Start with the Drupal 8 recipe
recipe: drupal8
# Configure the D8 recipe to match up closer to a vanilla platform.sh stack
config:
# Lando defaults to Apache. Switch to nginx to match Platform.sh.
via: nginx
# Set the webroot to match .platform.app.yaml.
@o0-o
o0-o / onboard_rhel.sh
Last active January 31, 2020 16:55
[Onboard CentOS or Fedora Server] Configure a CentOS or Fedora server with generally secure settings, including email alerts, no ipv6, firewall open to specified administrative subnet, antivirus, auditing, cockpit, netdata, aide and selinux.
#!/usr/bin/env bash
#
# We assume the system is installed with:
#
# 1. Minimal software
# 2. No root user login
# 3. The following partitions:
# /
# /boot
# /home
@imlutr
imlutr / Info.plist.xml
Created November 9, 2019 10:08
Info.plist.xml
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>${app.name}</string>
<key>CFBundleExecutable</key>
<string>${app.executable}</string>
@jofracerap
jofracerap / README.md
Created November 2, 2019 15:08 — forked from john-guerra/README.md
GeoJson map of Colombia

Geo Json map of Colombia

Based on the Map of Thailand by Master Krist Wongsuphasawat, a simple map of Colombia using GeoJSON and D3.js

As in Krist example:

  • Each province is color-coded by the length of its name in English.
  • Hover each province to see text effects.
  • New font is chosen randomly every time you change the province.