Skip to content

Instantly share code, notes, and snippets.

# USAGE:
# Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# cinst -y boxstarter
# BOXSTARTERSHELL
# Install-BoxstarterPackage -PackageName https://raw url of this file
#---- TEMPORARY ---
Disable-UAC
@mura303
mura303 / scrapboxtext.py
Created January 4, 2021 11:43
scrapboxのExportJSONをテキスト化
import json
j = json.load(open("hoge.json","r"))
for page in j['pages']:
for line in page['lines']:
print(line)
print("---")

ジマンパワー

自慢や自己満足感はWebに必須

多くの趣味は##### 自己満足したい気持ちや##### 自慢したい気持ちが原動力となって成立しているように思われます。山に登るのが楽しい理由はいろいろあるでしょうが、美しい景色を見られる喜びに加え、苦労して登りきったことに自己満足したり、大変な山に登ったという自慢話ができるのも理由のひとつでしょう。
写真を趣味にしている人は沢山いますが、自分が撮った美しい写真を見て自己満足できることや、それを他人に見せて自慢できるということが大きな動機になっています。このように、自己満足したいという気持ちと他人に自慢したいという気持ちが満たされるような趣味は流行しやすいといえるでしょう。
Image
薬師岳に登ったのを自慢してるところ

他人に認めてもらいたいという自己承認欲求は人間の大きな欲求のひとつです。自己満足と自慢の両方が満たされない場合は片方だけでもかまいません。自己満足が難しい分野の趣味の場合、他人に自慢することによって楽しみを増やすことができます。ピアノ華道のような稽古ごとでは「発

#include <asio.hpp>
#include "include/stun/msg.h"
using asio::ip::udp;
class UDPClient
{
public:
UDPClient(
asio::io_service& io_service,
#!ruby
inputnum = gets.to_i
inputnum.times do |case_id|
(s, k_str) = gets.split
k = k_str.to_i
count = 0
// http://community.topcoder.com/stat?c=problem_statement&pm=11889
#include <iostream>
#include <cstring>
using namespace std;
// |aaa|b|c|d|e|
int doit( const char* str )
{
// http://community.topcoder.com/stat?c=problem_statement&pm=11889
#include <iostream>
#include <cstring>
using namespace std;
// |aaa|b|c|d|e|
int doit( const char* str )
{
#!ruby
# http://community.topcoder.com/stat?c=problem_statement&pm=11907
#
def doit( str )
citynum = str.count("C")
villagenum = str.count("V")
max = [citynum, villagenum].max
min = [citynum, villagenum].min
#!ruby
# http://community.topcoder.com/stat?c=problem_statement&pm=12048
#
def get_winner( events )
last_solved_index = {}
number_of_solved = Hash.new(0)
events.each_index do |i|
#include <iostream>
using namespace std;
struct Animal
{
int feet;
int bill;
int tail;
};